12265 lines
1.3 MiB
Plaintext
12265 lines
1.3 MiB
Plaintext
<!DOCTYPE html>
|
||
<html>
|
||
<head><meta charset="utf-8" />
|
||
<title>Sentiment Analysis with Logistic Regression</title><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
|
||
|
||
<style type="text/css">
|
||
/*!
|
||
*
|
||
* Twitter Bootstrap
|
||
*
|
||
*/
|
||
/*!
|
||
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
||
* Copyright 2011-2016 Twitter, Inc.
|
||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||
*/
|
||
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
||
html {
|
||
font-family: sans-serif;
|
||
-ms-text-size-adjust: 100%;
|
||
-webkit-text-size-adjust: 100%;
|
||
}
|
||
body {
|
||
margin: 0;
|
||
}
|
||
article,
|
||
aside,
|
||
details,
|
||
figcaption,
|
||
figure,
|
||
footer,
|
||
header,
|
||
hgroup,
|
||
main,
|
||
menu,
|
||
nav,
|
||
section,
|
||
summary {
|
||
display: block;
|
||
}
|
||
audio,
|
||
canvas,
|
||
progress,
|
||
video {
|
||
display: inline-block;
|
||
vertical-align: baseline;
|
||
}
|
||
audio:not([controls]) {
|
||
display: none;
|
||
height: 0;
|
||
}
|
||
[hidden],
|
||
template {
|
||
display: none;
|
||
}
|
||
a {
|
||
background-color: transparent;
|
||
}
|
||
a:active,
|
||
a:hover {
|
||
outline: 0;
|
||
}
|
||
abbr[title] {
|
||
border-bottom: 1px dotted;
|
||
}
|
||
b,
|
||
strong {
|
||
font-weight: bold;
|
||
}
|
||
dfn {
|
||
font-style: italic;
|
||
}
|
||
h1 {
|
||
font-size: 2em;
|
||
margin: 0.67em 0;
|
||
}
|
||
mark {
|
||
background: #ff0;
|
||
color: #000;
|
||
}
|
||
small {
|
||
font-size: 80%;
|
||
}
|
||
sub,
|
||
sup {
|
||
font-size: 75%;
|
||
line-height: 0;
|
||
position: relative;
|
||
vertical-align: baseline;
|
||
}
|
||
sup {
|
||
top: -0.5em;
|
||
}
|
||
sub {
|
||
bottom: -0.25em;
|
||
}
|
||
img {
|
||
border: 0;
|
||
}
|
||
svg:not(:root) {
|
||
overflow: hidden;
|
||
}
|
||
figure {
|
||
margin: 1em 40px;
|
||
}
|
||
hr {
|
||
box-sizing: content-box;
|
||
height: 0;
|
||
}
|
||
pre {
|
||
overflow: auto;
|
||
}
|
||
code,
|
||
kbd,
|
||
pre,
|
||
samp {
|
||
font-family: monospace, monospace;
|
||
font-size: 1em;
|
||
}
|
||
button,
|
||
input,
|
||
optgroup,
|
||
select,
|
||
textarea {
|
||
color: inherit;
|
||
font: inherit;
|
||
margin: 0;
|
||
}
|
||
button {
|
||
overflow: visible;
|
||
}
|
||
button,
|
||
select {
|
||
text-transform: none;
|
||
}
|
||
button,
|
||
html input[type="button"],
|
||
input[type="reset"],
|
||
input[type="submit"] {
|
||
-webkit-appearance: button;
|
||
cursor: pointer;
|
||
}
|
||
button[disabled],
|
||
html input[disabled] {
|
||
cursor: default;
|
||
}
|
||
button::-moz-focus-inner,
|
||
input::-moz-focus-inner {
|
||
border: 0;
|
||
padding: 0;
|
||
}
|
||
input {
|
||
line-height: normal;
|
||
}
|
||
input[type="checkbox"],
|
||
input[type="radio"] {
|
||
box-sizing: border-box;
|
||
padding: 0;
|
||
}
|
||
input[type="number"]::-webkit-inner-spin-button,
|
||
input[type="number"]::-webkit-outer-spin-button {
|
||
height: auto;
|
||
}
|
||
input[type="search"] {
|
||
-webkit-appearance: textfield;
|
||
box-sizing: content-box;
|
||
}
|
||
input[type="search"]::-webkit-search-cancel-button,
|
||
input[type="search"]::-webkit-search-decoration {
|
||
-webkit-appearance: none;
|
||
}
|
||
fieldset {
|
||
border: 1px solid #c0c0c0;
|
||
margin: 0 2px;
|
||
padding: 0.35em 0.625em 0.75em;
|
||
}
|
||
legend {
|
||
border: 0;
|
||
padding: 0;
|
||
}
|
||
textarea {
|
||
overflow: auto;
|
||
}
|
||
optgroup {
|
||
font-weight: bold;
|
||
}
|
||
table {
|
||
border-collapse: collapse;
|
||
border-spacing: 0;
|
||
}
|
||
td,
|
||
th {
|
||
padding: 0;
|
||
}
|
||
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
|
||
@media print {
|
||
*,
|
||
*:before,
|
||
*:after {
|
||
background: transparent !important;
|
||
color: #000 !important;
|
||
box-shadow: none !important;
|
||
text-shadow: none !important;
|
||
}
|
||
a,
|
||
a:visited {
|
||
text-decoration: underline;
|
||
}
|
||
a[href]:after {
|
||
content: " (" attr(href) ")";
|
||
}
|
||
abbr[title]:after {
|
||
content: " (" attr(title) ")";
|
||
}
|
||
a[href^="#"]:after,
|
||
a[href^="javascript:"]:after {
|
||
content: "";
|
||
}
|
||
pre,
|
||
blockquote {
|
||
border: 1px solid #999;
|
||
page-break-inside: avoid;
|
||
}
|
||
thead {
|
||
display: table-header-group;
|
||
}
|
||
tr,
|
||
img {
|
||
page-break-inside: avoid;
|
||
}
|
||
img {
|
||
max-width: 100% !important;
|
||
}
|
||
p,
|
||
h2,
|
||
h3 {
|
||
orphans: 3;
|
||
widows: 3;
|
||
}
|
||
h2,
|
||
h3 {
|
||
page-break-after: avoid;
|
||
}
|
||
.navbar {
|
||
display: none;
|
||
}
|
||
.btn > .caret,
|
||
.dropup > .btn > .caret {
|
||
border-top-color: #000 !important;
|
||
}
|
||
.label {
|
||
border: 1px solid #000;
|
||
}
|
||
.table {
|
||
border-collapse: collapse !important;
|
||
}
|
||
.table td,
|
||
.table th {
|
||
background-color: #fff !important;
|
||
}
|
||
.table-bordered th,
|
||
.table-bordered td {
|
||
border: 1px solid #ddd !important;
|
||
}
|
||
}
|
||
@font-face {
|
||
font-family: 'Glyphicons Halflings';
|
||
src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot');
|
||
src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
||
}
|
||
.glyphicon {
|
||
position: relative;
|
||
top: 1px;
|
||
display: inline-block;
|
||
font-family: 'Glyphicons Halflings';
|
||
font-style: normal;
|
||
font-weight: normal;
|
||
line-height: 1;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
}
|
||
.glyphicon-asterisk:before {
|
||
content: "\002a";
|
||
}
|
||
.glyphicon-plus:before {
|
||
content: "\002b";
|
||
}
|
||
.glyphicon-euro:before,
|
||
.glyphicon-eur:before {
|
||
content: "\20ac";
|
||
}
|
||
.glyphicon-minus:before {
|
||
content: "\2212";
|
||
}
|
||
.glyphicon-cloud:before {
|
||
content: "\2601";
|
||
}
|
||
.glyphicon-envelope:before {
|
||
content: "\2709";
|
||
}
|
||
.glyphicon-pencil:before {
|
||
content: "\270f";
|
||
}
|
||
.glyphicon-glass:before {
|
||
content: "\e001";
|
||
}
|
||
.glyphicon-music:before {
|
||
content: "\e002";
|
||
}
|
||
.glyphicon-search:before {
|
||
content: "\e003";
|
||
}
|
||
.glyphicon-heart:before {
|
||
content: "\e005";
|
||
}
|
||
.glyphicon-star:before {
|
||
content: "\e006";
|
||
}
|
||
.glyphicon-star-empty:before {
|
||
content: "\e007";
|
||
}
|
||
.glyphicon-user:before {
|
||
content: "\e008";
|
||
}
|
||
.glyphicon-film:before {
|
||
content: "\e009";
|
||
}
|
||
.glyphicon-th-large:before {
|
||
content: "\e010";
|
||
}
|
||
.glyphicon-th:before {
|
||
content: "\e011";
|
||
}
|
||
.glyphicon-th-list:before {
|
||
content: "\e012";
|
||
}
|
||
.glyphicon-ok:before {
|
||
content: "\e013";
|
||
}
|
||
.glyphicon-remove:before {
|
||
content: "\e014";
|
||
}
|
||
.glyphicon-zoom-in:before {
|
||
content: "\e015";
|
||
}
|
||
.glyphicon-zoom-out:before {
|
||
content: "\e016";
|
||
}
|
||
.glyphicon-off:before {
|
||
content: "\e017";
|
||
}
|
||
.glyphicon-signal:before {
|
||
content: "\e018";
|
||
}
|
||
.glyphicon-cog:before {
|
||
content: "\e019";
|
||
}
|
||
.glyphicon-trash:before {
|
||
content: "\e020";
|
||
}
|
||
.glyphicon-home:before {
|
||
content: "\e021";
|
||
}
|
||
.glyphicon-file:before {
|
||
content: "\e022";
|
||
}
|
||
.glyphicon-time:before {
|
||
content: "\e023";
|
||
}
|
||
.glyphicon-road:before {
|
||
content: "\e024";
|
||
}
|
||
.glyphicon-download-alt:before {
|
||
content: "\e025";
|
||
}
|
||
.glyphicon-download:before {
|
||
content: "\e026";
|
||
}
|
||
.glyphicon-upload:before {
|
||
content: "\e027";
|
||
}
|
||
.glyphicon-inbox:before {
|
||
content: "\e028";
|
||
}
|
||
.glyphicon-play-circle:before {
|
||
content: "\e029";
|
||
}
|
||
.glyphicon-repeat:before {
|
||
content: "\e030";
|
||
}
|
||
.glyphicon-refresh:before {
|
||
content: "\e031";
|
||
}
|
||
.glyphicon-list-alt:before {
|
||
content: "\e032";
|
||
}
|
||
.glyphicon-lock:before {
|
||
content: "\e033";
|
||
}
|
||
.glyphicon-flag:before {
|
||
content: "\e034";
|
||
}
|
||
.glyphicon-headphones:before {
|
||
content: "\e035";
|
||
}
|
||
.glyphicon-volume-off:before {
|
||
content: "\e036";
|
||
}
|
||
.glyphicon-volume-down:before {
|
||
content: "\e037";
|
||
}
|
||
.glyphicon-volume-up:before {
|
||
content: "\e038";
|
||
}
|
||
.glyphicon-qrcode:before {
|
||
content: "\e039";
|
||
}
|
||
.glyphicon-barcode:before {
|
||
content: "\e040";
|
||
}
|
||
.glyphicon-tag:before {
|
||
content: "\e041";
|
||
}
|
||
.glyphicon-tags:before {
|
||
content: "\e042";
|
||
}
|
||
.glyphicon-book:before {
|
||
content: "\e043";
|
||
}
|
||
.glyphicon-bookmark:before {
|
||
content: "\e044";
|
||
}
|
||
.glyphicon-print:before {
|
||
content: "\e045";
|
||
}
|
||
.glyphicon-camera:before {
|
||
content: "\e046";
|
||
}
|
||
.glyphicon-font:before {
|
||
content: "\e047";
|
||
}
|
||
.glyphicon-bold:before {
|
||
content: "\e048";
|
||
}
|
||
.glyphicon-italic:before {
|
||
content: "\e049";
|
||
}
|
||
.glyphicon-text-height:before {
|
||
content: "\e050";
|
||
}
|
||
.glyphicon-text-width:before {
|
||
content: "\e051";
|
||
}
|
||
.glyphicon-align-left:before {
|
||
content: "\e052";
|
||
}
|
||
.glyphicon-align-center:before {
|
||
content: "\e053";
|
||
}
|
||
.glyphicon-align-right:before {
|
||
content: "\e054";
|
||
}
|
||
.glyphicon-align-justify:before {
|
||
content: "\e055";
|
||
}
|
||
.glyphicon-list:before {
|
||
content: "\e056";
|
||
}
|
||
.glyphicon-indent-left:before {
|
||
content: "\e057";
|
||
}
|
||
.glyphicon-indent-right:before {
|
||
content: "\e058";
|
||
}
|
||
.glyphicon-facetime-video:before {
|
||
content: "\e059";
|
||
}
|
||
.glyphicon-picture:before {
|
||
content: "\e060";
|
||
}
|
||
.glyphicon-map-marker:before {
|
||
content: "\e062";
|
||
}
|
||
.glyphicon-adjust:before {
|
||
content: "\e063";
|
||
}
|
||
.glyphicon-tint:before {
|
||
content: "\e064";
|
||
}
|
||
.glyphicon-edit:before {
|
||
content: "\e065";
|
||
}
|
||
.glyphicon-share:before {
|
||
content: "\e066";
|
||
}
|
||
.glyphicon-check:before {
|
||
content: "\e067";
|
||
}
|
||
.glyphicon-move:before {
|
||
content: "\e068";
|
||
}
|
||
.glyphicon-step-backward:before {
|
||
content: "\e069";
|
||
}
|
||
.glyphicon-fast-backward:before {
|
||
content: "\e070";
|
||
}
|
||
.glyphicon-backward:before {
|
||
content: "\e071";
|
||
}
|
||
.glyphicon-play:before {
|
||
content: "\e072";
|
||
}
|
||
.glyphicon-pause:before {
|
||
content: "\e073";
|
||
}
|
||
.glyphicon-stop:before {
|
||
content: "\e074";
|
||
}
|
||
.glyphicon-forward:before {
|
||
content: "\e075";
|
||
}
|
||
.glyphicon-fast-forward:before {
|
||
content: "\e076";
|
||
}
|
||
.glyphicon-step-forward:before {
|
||
content: "\e077";
|
||
}
|
||
.glyphicon-eject:before {
|
||
content: "\e078";
|
||
}
|
||
.glyphicon-chevron-left:before {
|
||
content: "\e079";
|
||
}
|
||
.glyphicon-chevron-right:before {
|
||
content: "\e080";
|
||
}
|
||
.glyphicon-plus-sign:before {
|
||
content: "\e081";
|
||
}
|
||
.glyphicon-minus-sign:before {
|
||
content: "\e082";
|
||
}
|
||
.glyphicon-remove-sign:before {
|
||
content: "\e083";
|
||
}
|
||
.glyphicon-ok-sign:before {
|
||
content: "\e084";
|
||
}
|
||
.glyphicon-question-sign:before {
|
||
content: "\e085";
|
||
}
|
||
.glyphicon-info-sign:before {
|
||
content: "\e086";
|
||
}
|
||
.glyphicon-screenshot:before {
|
||
content: "\e087";
|
||
}
|
||
.glyphicon-remove-circle:before {
|
||
content: "\e088";
|
||
}
|
||
.glyphicon-ok-circle:before {
|
||
content: "\e089";
|
||
}
|
||
.glyphicon-ban-circle:before {
|
||
content: "\e090";
|
||
}
|
||
.glyphicon-arrow-left:before {
|
||
content: "\e091";
|
||
}
|
||
.glyphicon-arrow-right:before {
|
||
content: "\e092";
|
||
}
|
||
.glyphicon-arrow-up:before {
|
||
content: "\e093";
|
||
}
|
||
.glyphicon-arrow-down:before {
|
||
content: "\e094";
|
||
}
|
||
.glyphicon-share-alt:before {
|
||
content: "\e095";
|
||
}
|
||
.glyphicon-resize-full:before {
|
||
content: "\e096";
|
||
}
|
||
.glyphicon-resize-small:before {
|
||
content: "\e097";
|
||
}
|
||
.glyphicon-exclamation-sign:before {
|
||
content: "\e101";
|
||
}
|
||
.glyphicon-gift:before {
|
||
content: "\e102";
|
||
}
|
||
.glyphicon-leaf:before {
|
||
content: "\e103";
|
||
}
|
||
.glyphicon-fire:before {
|
||
content: "\e104";
|
||
}
|
||
.glyphicon-eye-open:before {
|
||
content: "\e105";
|
||
}
|
||
.glyphicon-eye-close:before {
|
||
content: "\e106";
|
||
}
|
||
.glyphicon-warning-sign:before {
|
||
content: "\e107";
|
||
}
|
||
.glyphicon-plane:before {
|
||
content: "\e108";
|
||
}
|
||
.glyphicon-calendar:before {
|
||
content: "\e109";
|
||
}
|
||
.glyphicon-random:before {
|
||
content: "\e110";
|
||
}
|
||
.glyphicon-comment:before {
|
||
content: "\e111";
|
||
}
|
||
.glyphicon-magnet:before {
|
||
content: "\e112";
|
||
}
|
||
.glyphicon-chevron-up:before {
|
||
content: "\e113";
|
||
}
|
||
.glyphicon-chevron-down:before {
|
||
content: "\e114";
|
||
}
|
||
.glyphicon-retweet:before {
|
||
content: "\e115";
|
||
}
|
||
.glyphicon-shopping-cart:before {
|
||
content: "\e116";
|
||
}
|
||
.glyphicon-folder-close:before {
|
||
content: "\e117";
|
||
}
|
||
.glyphicon-folder-open:before {
|
||
content: "\e118";
|
||
}
|
||
.glyphicon-resize-vertical:before {
|
||
content: "\e119";
|
||
}
|
||
.glyphicon-resize-horizontal:before {
|
||
content: "\e120";
|
||
}
|
||
.glyphicon-hdd:before {
|
||
content: "\e121";
|
||
}
|
||
.glyphicon-bullhorn:before {
|
||
content: "\e122";
|
||
}
|
||
.glyphicon-bell:before {
|
||
content: "\e123";
|
||
}
|
||
.glyphicon-certificate:before {
|
||
content: "\e124";
|
||
}
|
||
.glyphicon-thumbs-up:before {
|
||
content: "\e125";
|
||
}
|
||
.glyphicon-thumbs-down:before {
|
||
content: "\e126";
|
||
}
|
||
.glyphicon-hand-right:before {
|
||
content: "\e127";
|
||
}
|
||
.glyphicon-hand-left:before {
|
||
content: "\e128";
|
||
}
|
||
.glyphicon-hand-up:before {
|
||
content: "\e129";
|
||
}
|
||
.glyphicon-hand-down:before {
|
||
content: "\e130";
|
||
}
|
||
.glyphicon-circle-arrow-right:before {
|
||
content: "\e131";
|
||
}
|
||
.glyphicon-circle-arrow-left:before {
|
||
content: "\e132";
|
||
}
|
||
.glyphicon-circle-arrow-up:before {
|
||
content: "\e133";
|
||
}
|
||
.glyphicon-circle-arrow-down:before {
|
||
content: "\e134";
|
||
}
|
||
.glyphicon-globe:before {
|
||
content: "\e135";
|
||
}
|
||
.glyphicon-wrench:before {
|
||
content: "\e136";
|
||
}
|
||
.glyphicon-tasks:before {
|
||
content: "\e137";
|
||
}
|
||
.glyphicon-filter:before {
|
||
content: "\e138";
|
||
}
|
||
.glyphicon-briefcase:before {
|
||
content: "\e139";
|
||
}
|
||
.glyphicon-fullscreen:before {
|
||
content: "\e140";
|
||
}
|
||
.glyphicon-dashboard:before {
|
||
content: "\e141";
|
||
}
|
||
.glyphicon-paperclip:before {
|
||
content: "\e142";
|
||
}
|
||
.glyphicon-heart-empty:before {
|
||
content: "\e143";
|
||
}
|
||
.glyphicon-link:before {
|
||
content: "\e144";
|
||
}
|
||
.glyphicon-phone:before {
|
||
content: "\e145";
|
||
}
|
||
.glyphicon-pushpin:before {
|
||
content: "\e146";
|
||
}
|
||
.glyphicon-usd:before {
|
||
content: "\e148";
|
||
}
|
||
.glyphicon-gbp:before {
|
||
content: "\e149";
|
||
}
|
||
.glyphicon-sort:before {
|
||
content: "\e150";
|
||
}
|
||
.glyphicon-sort-by-alphabet:before {
|
||
content: "\e151";
|
||
}
|
||
.glyphicon-sort-by-alphabet-alt:before {
|
||
content: "\e152";
|
||
}
|
||
.glyphicon-sort-by-order:before {
|
||
content: "\e153";
|
||
}
|
||
.glyphicon-sort-by-order-alt:before {
|
||
content: "\e154";
|
||
}
|
||
.glyphicon-sort-by-attributes:before {
|
||
content: "\e155";
|
||
}
|
||
.glyphicon-sort-by-attributes-alt:before {
|
||
content: "\e156";
|
||
}
|
||
.glyphicon-unchecked:before {
|
||
content: "\e157";
|
||
}
|
||
.glyphicon-expand:before {
|
||
content: "\e158";
|
||
}
|
||
.glyphicon-collapse-down:before {
|
||
content: "\e159";
|
||
}
|
||
.glyphicon-collapse-up:before {
|
||
content: "\e160";
|
||
}
|
||
.glyphicon-log-in:before {
|
||
content: "\e161";
|
||
}
|
||
.glyphicon-flash:before {
|
||
content: "\e162";
|
||
}
|
||
.glyphicon-log-out:before {
|
||
content: "\e163";
|
||
}
|
||
.glyphicon-new-window:before {
|
||
content: "\e164";
|
||
}
|
||
.glyphicon-record:before {
|
||
content: "\e165";
|
||
}
|
||
.glyphicon-save:before {
|
||
content: "\e166";
|
||
}
|
||
.glyphicon-open:before {
|
||
content: "\e167";
|
||
}
|
||
.glyphicon-saved:before {
|
||
content: "\e168";
|
||
}
|
||
.glyphicon-import:before {
|
||
content: "\e169";
|
||
}
|
||
.glyphicon-export:before {
|
||
content: "\e170";
|
||
}
|
||
.glyphicon-send:before {
|
||
content: "\e171";
|
||
}
|
||
.glyphicon-floppy-disk:before {
|
||
content: "\e172";
|
||
}
|
||
.glyphicon-floppy-saved:before {
|
||
content: "\e173";
|
||
}
|
||
.glyphicon-floppy-remove:before {
|
||
content: "\e174";
|
||
}
|
||
.glyphicon-floppy-save:before {
|
||
content: "\e175";
|
||
}
|
||
.glyphicon-floppy-open:before {
|
||
content: "\e176";
|
||
}
|
||
.glyphicon-credit-card:before {
|
||
content: "\e177";
|
||
}
|
||
.glyphicon-transfer:before {
|
||
content: "\e178";
|
||
}
|
||
.glyphicon-cutlery:before {
|
||
content: "\e179";
|
||
}
|
||
.glyphicon-header:before {
|
||
content: "\e180";
|
||
}
|
||
.glyphicon-compressed:before {
|
||
content: "\e181";
|
||
}
|
||
.glyphicon-earphone:before {
|
||
content: "\e182";
|
||
}
|
||
.glyphicon-phone-alt:before {
|
||
content: "\e183";
|
||
}
|
||
.glyphicon-tower:before {
|
||
content: "\e184";
|
||
}
|
||
.glyphicon-stats:before {
|
||
content: "\e185";
|
||
}
|
||
.glyphicon-sd-video:before {
|
||
content: "\e186";
|
||
}
|
||
.glyphicon-hd-video:before {
|
||
content: "\e187";
|
||
}
|
||
.glyphicon-subtitles:before {
|
||
content: "\e188";
|
||
}
|
||
.glyphicon-sound-stereo:before {
|
||
content: "\e189";
|
||
}
|
||
.glyphicon-sound-dolby:before {
|
||
content: "\e190";
|
||
}
|
||
.glyphicon-sound-5-1:before {
|
||
content: "\e191";
|
||
}
|
||
.glyphicon-sound-6-1:before {
|
||
content: "\e192";
|
||
}
|
||
.glyphicon-sound-7-1:before {
|
||
content: "\e193";
|
||
}
|
||
.glyphicon-copyright-mark:before {
|
||
content: "\e194";
|
||
}
|
||
.glyphicon-registration-mark:before {
|
||
content: "\e195";
|
||
}
|
||
.glyphicon-cloud-download:before {
|
||
content: "\e197";
|
||
}
|
||
.glyphicon-cloud-upload:before {
|
||
content: "\e198";
|
||
}
|
||
.glyphicon-tree-conifer:before {
|
||
content: "\e199";
|
||
}
|
||
.glyphicon-tree-deciduous:before {
|
||
content: "\e200";
|
||
}
|
||
.glyphicon-cd:before {
|
||
content: "\e201";
|
||
}
|
||
.glyphicon-save-file:before {
|
||
content: "\e202";
|
||
}
|
||
.glyphicon-open-file:before {
|
||
content: "\e203";
|
||
}
|
||
.glyphicon-level-up:before {
|
||
content: "\e204";
|
||
}
|
||
.glyphicon-copy:before {
|
||
content: "\e205";
|
||
}
|
||
.glyphicon-paste:before {
|
||
content: "\e206";
|
||
}
|
||
.glyphicon-alert:before {
|
||
content: "\e209";
|
||
}
|
||
.glyphicon-equalizer:before {
|
||
content: "\e210";
|
||
}
|
||
.glyphicon-king:before {
|
||
content: "\e211";
|
||
}
|
||
.glyphicon-queen:before {
|
||
content: "\e212";
|
||
}
|
||
.glyphicon-pawn:before {
|
||
content: "\e213";
|
||
}
|
||
.glyphicon-bishop:before {
|
||
content: "\e214";
|
||
}
|
||
.glyphicon-knight:before {
|
||
content: "\e215";
|
||
}
|
||
.glyphicon-baby-formula:before {
|
||
content: "\e216";
|
||
}
|
||
.glyphicon-tent:before {
|
||
content: "\26fa";
|
||
}
|
||
.glyphicon-blackboard:before {
|
||
content: "\e218";
|
||
}
|
||
.glyphicon-bed:before {
|
||
content: "\e219";
|
||
}
|
||
.glyphicon-apple:before {
|
||
content: "\f8ff";
|
||
}
|
||
.glyphicon-erase:before {
|
||
content: "\e221";
|
||
}
|
||
.glyphicon-hourglass:before {
|
||
content: "\231b";
|
||
}
|
||
.glyphicon-lamp:before {
|
||
content: "\e223";
|
||
}
|
||
.glyphicon-duplicate:before {
|
||
content: "\e224";
|
||
}
|
||
.glyphicon-piggy-bank:before {
|
||
content: "\e225";
|
||
}
|
||
.glyphicon-scissors:before {
|
||
content: "\e226";
|
||
}
|
||
.glyphicon-bitcoin:before {
|
||
content: "\e227";
|
||
}
|
||
.glyphicon-btc:before {
|
||
content: "\e227";
|
||
}
|
||
.glyphicon-xbt:before {
|
||
content: "\e227";
|
||
}
|
||
.glyphicon-yen:before {
|
||
content: "\00a5";
|
||
}
|
||
.glyphicon-jpy:before {
|
||
content: "\00a5";
|
||
}
|
||
.glyphicon-ruble:before {
|
||
content: "\20bd";
|
||
}
|
||
.glyphicon-rub:before {
|
||
content: "\20bd";
|
||
}
|
||
.glyphicon-scale:before {
|
||
content: "\e230";
|
||
}
|
||
.glyphicon-ice-lolly:before {
|
||
content: "\e231";
|
||
}
|
||
.glyphicon-ice-lolly-tasted:before {
|
||
content: "\e232";
|
||
}
|
||
.glyphicon-education:before {
|
||
content: "\e233";
|
||
}
|
||
.glyphicon-option-horizontal:before {
|
||
content: "\e234";
|
||
}
|
||
.glyphicon-option-vertical:before {
|
||
content: "\e235";
|
||
}
|
||
.glyphicon-menu-hamburger:before {
|
||
content: "\e236";
|
||
}
|
||
.glyphicon-modal-window:before {
|
||
content: "\e237";
|
||
}
|
||
.glyphicon-oil:before {
|
||
content: "\e238";
|
||
}
|
||
.glyphicon-grain:before {
|
||
content: "\e239";
|
||
}
|
||
.glyphicon-sunglasses:before {
|
||
content: "\e240";
|
||
}
|
||
.glyphicon-text-size:before {
|
||
content: "\e241";
|
||
}
|
||
.glyphicon-text-color:before {
|
||
content: "\e242";
|
||
}
|
||
.glyphicon-text-background:before {
|
||
content: "\e243";
|
||
}
|
||
.glyphicon-object-align-top:before {
|
||
content: "\e244";
|
||
}
|
||
.glyphicon-object-align-bottom:before {
|
||
content: "\e245";
|
||
}
|
||
.glyphicon-object-align-horizontal:before {
|
||
content: "\e246";
|
||
}
|
||
.glyphicon-object-align-left:before {
|
||
content: "\e247";
|
||
}
|
||
.glyphicon-object-align-vertical:before {
|
||
content: "\e248";
|
||
}
|
||
.glyphicon-object-align-right:before {
|
||
content: "\e249";
|
||
}
|
||
.glyphicon-triangle-right:before {
|
||
content: "\e250";
|
||
}
|
||
.glyphicon-triangle-left:before {
|
||
content: "\e251";
|
||
}
|
||
.glyphicon-triangle-bottom:before {
|
||
content: "\e252";
|
||
}
|
||
.glyphicon-triangle-top:before {
|
||
content: "\e253";
|
||
}
|
||
.glyphicon-console:before {
|
||
content: "\e254";
|
||
}
|
||
.glyphicon-superscript:before {
|
||
content: "\e255";
|
||
}
|
||
.glyphicon-subscript:before {
|
||
content: "\e256";
|
||
}
|
||
.glyphicon-menu-left:before {
|
||
content: "\e257";
|
||
}
|
||
.glyphicon-menu-right:before {
|
||
content: "\e258";
|
||
}
|
||
.glyphicon-menu-down:before {
|
||
content: "\e259";
|
||
}
|
||
.glyphicon-menu-up:before {
|
||
content: "\e260";
|
||
}
|
||
* {
|
||
-webkit-box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
box-sizing: border-box;
|
||
}
|
||
*:before,
|
||
*:after {
|
||
-webkit-box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
box-sizing: border-box;
|
||
}
|
||
html {
|
||
font-size: 10px;
|
||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||
}
|
||
body {
|
||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||
font-size: 13px;
|
||
line-height: 1.42857143;
|
||
color: #000;
|
||
background-color: #fff;
|
||
}
|
||
input,
|
||
button,
|
||
select,
|
||
textarea {
|
||
font-family: inherit;
|
||
font-size: inherit;
|
||
line-height: inherit;
|
||
}
|
||
a {
|
||
color: #337ab7;
|
||
text-decoration: none;
|
||
}
|
||
a:hover,
|
||
a:focus {
|
||
color: #23527c;
|
||
text-decoration: underline;
|
||
}
|
||
a:focus {
|
||
outline: 5px auto -webkit-focus-ring-color;
|
||
outline-offset: -2px;
|
||
}
|
||
figure {
|
||
margin: 0;
|
||
}
|
||
img {
|
||
vertical-align: middle;
|
||
}
|
||
.img-responsive,
|
||
.thumbnail > img,
|
||
.thumbnail a > img,
|
||
.carousel-inner > .item > img,
|
||
.carousel-inner > .item > a > img {
|
||
display: block;
|
||
max-width: 100%;
|
||
height: auto;
|
||
}
|
||
.img-rounded {
|
||
border-radius: 3px;
|
||
}
|
||
.img-thumbnail {
|
||
padding: 4px;
|
||
line-height: 1.42857143;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
border-radius: 2px;
|
||
-webkit-transition: all 0.2s ease-in-out;
|
||
-o-transition: all 0.2s ease-in-out;
|
||
transition: all 0.2s ease-in-out;
|
||
display: inline-block;
|
||
max-width: 100%;
|
||
height: auto;
|
||
}
|
||
.img-circle {
|
||
border-radius: 50%;
|
||
}
|
||
hr {
|
||
margin-top: 18px;
|
||
margin-bottom: 18px;
|
||
border: 0;
|
||
border-top: 1px solid #eeeeee;
|
||
}
|
||
.sr-only {
|
||
position: absolute;
|
||
width: 1px;
|
||
height: 1px;
|
||
margin: -1px;
|
||
padding: 0;
|
||
overflow: hidden;
|
||
clip: rect(0, 0, 0, 0);
|
||
border: 0;
|
||
}
|
||
.sr-only-focusable:active,
|
||
.sr-only-focusable:focus {
|
||
position: static;
|
||
width: auto;
|
||
height: auto;
|
||
margin: 0;
|
||
overflow: visible;
|
||
clip: auto;
|
||
}
|
||
[role="button"] {
|
||
cursor: pointer;
|
||
}
|
||
h1,
|
||
h2,
|
||
h3,
|
||
h4,
|
||
h5,
|
||
h6,
|
||
.h1,
|
||
.h2,
|
||
.h3,
|
||
.h4,
|
||
.h5,
|
||
.h6 {
|
||
font-family: inherit;
|
||
font-weight: 500;
|
||
line-height: 1.1;
|
||
color: inherit;
|
||
}
|
||
h1 small,
|
||
h2 small,
|
||
h3 small,
|
||
h4 small,
|
||
h5 small,
|
||
h6 small,
|
||
.h1 small,
|
||
.h2 small,
|
||
.h3 small,
|
||
.h4 small,
|
||
.h5 small,
|
||
.h6 small,
|
||
h1 .small,
|
||
h2 .small,
|
||
h3 .small,
|
||
h4 .small,
|
||
h5 .small,
|
||
h6 .small,
|
||
.h1 .small,
|
||
.h2 .small,
|
||
.h3 .small,
|
||
.h4 .small,
|
||
.h5 .small,
|
||
.h6 .small {
|
||
font-weight: normal;
|
||
line-height: 1;
|
||
color: #777777;
|
||
}
|
||
h1,
|
||
.h1,
|
||
h2,
|
||
.h2,
|
||
h3,
|
||
.h3 {
|
||
margin-top: 18px;
|
||
margin-bottom: 9px;
|
||
}
|
||
h1 small,
|
||
.h1 small,
|
||
h2 small,
|
||
.h2 small,
|
||
h3 small,
|
||
.h3 small,
|
||
h1 .small,
|
||
.h1 .small,
|
||
h2 .small,
|
||
.h2 .small,
|
||
h3 .small,
|
||
.h3 .small {
|
||
font-size: 65%;
|
||
}
|
||
h4,
|
||
.h4,
|
||
h5,
|
||
.h5,
|
||
h6,
|
||
.h6 {
|
||
margin-top: 9px;
|
||
margin-bottom: 9px;
|
||
}
|
||
h4 small,
|
||
.h4 small,
|
||
h5 small,
|
||
.h5 small,
|
||
h6 small,
|
||
.h6 small,
|
||
h4 .small,
|
||
.h4 .small,
|
||
h5 .small,
|
||
.h5 .small,
|
||
h6 .small,
|
||
.h6 .small {
|
||
font-size: 75%;
|
||
}
|
||
h1,
|
||
.h1 {
|
||
font-size: 33px;
|
||
}
|
||
h2,
|
||
.h2 {
|
||
font-size: 27px;
|
||
}
|
||
h3,
|
||
.h3 {
|
||
font-size: 23px;
|
||
}
|
||
h4,
|
||
.h4 {
|
||
font-size: 17px;
|
||
}
|
||
h5,
|
||
.h5 {
|
||
font-size: 13px;
|
||
}
|
||
h6,
|
||
.h6 {
|
||
font-size: 12px;
|
||
}
|
||
p {
|
||
margin: 0 0 9px;
|
||
}
|
||
.lead {
|
||
margin-bottom: 18px;
|
||
font-size: 14px;
|
||
font-weight: 300;
|
||
line-height: 1.4;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.lead {
|
||
font-size: 19.5px;
|
||
}
|
||
}
|
||
small,
|
||
.small {
|
||
font-size: 92%;
|
||
}
|
||
mark,
|
||
.mark {
|
||
background-color: #fcf8e3;
|
||
padding: .2em;
|
||
}
|
||
.text-left {
|
||
text-align: left;
|
||
}
|
||
.text-right {
|
||
text-align: right;
|
||
}
|
||
.text-center {
|
||
text-align: center;
|
||
}
|
||
.text-justify {
|
||
text-align: justify;
|
||
}
|
||
.text-nowrap {
|
||
white-space: nowrap;
|
||
}
|
||
.text-lowercase {
|
||
text-transform: lowercase;
|
||
}
|
||
.text-uppercase {
|
||
text-transform: uppercase;
|
||
}
|
||
.text-capitalize {
|
||
text-transform: capitalize;
|
||
}
|
||
.text-muted {
|
||
color: #777777;
|
||
}
|
||
.text-primary {
|
||
color: #337ab7;
|
||
}
|
||
a.text-primary:hover,
|
||
a.text-primary:focus {
|
||
color: #286090;
|
||
}
|
||
.text-success {
|
||
color: #3c763d;
|
||
}
|
||
a.text-success:hover,
|
||
a.text-success:focus {
|
||
color: #2b542c;
|
||
}
|
||
.text-info {
|
||
color: #31708f;
|
||
}
|
||
a.text-info:hover,
|
||
a.text-info:focus {
|
||
color: #245269;
|
||
}
|
||
.text-warning {
|
||
color: #8a6d3b;
|
||
}
|
||
a.text-warning:hover,
|
||
a.text-warning:focus {
|
||
color: #66512c;
|
||
}
|
||
.text-danger {
|
||
color: #a94442;
|
||
}
|
||
a.text-danger:hover,
|
||
a.text-danger:focus {
|
||
color: #843534;
|
||
}
|
||
.bg-primary {
|
||
color: #fff;
|
||
background-color: #337ab7;
|
||
}
|
||
a.bg-primary:hover,
|
||
a.bg-primary:focus {
|
||
background-color: #286090;
|
||
}
|
||
.bg-success {
|
||
background-color: #dff0d8;
|
||
}
|
||
a.bg-success:hover,
|
||
a.bg-success:focus {
|
||
background-color: #c1e2b3;
|
||
}
|
||
.bg-info {
|
||
background-color: #d9edf7;
|
||
}
|
||
a.bg-info:hover,
|
||
a.bg-info:focus {
|
||
background-color: #afd9ee;
|
||
}
|
||
.bg-warning {
|
||
background-color: #fcf8e3;
|
||
}
|
||
a.bg-warning:hover,
|
||
a.bg-warning:focus {
|
||
background-color: #f7ecb5;
|
||
}
|
||
.bg-danger {
|
||
background-color: #f2dede;
|
||
}
|
||
a.bg-danger:hover,
|
||
a.bg-danger:focus {
|
||
background-color: #e4b9b9;
|
||
}
|
||
.page-header {
|
||
padding-bottom: 8px;
|
||
margin: 36px 0 18px;
|
||
border-bottom: 1px solid #eeeeee;
|
||
}
|
||
ul,
|
||
ol {
|
||
margin-top: 0;
|
||
margin-bottom: 9px;
|
||
}
|
||
ul ul,
|
||
ol ul,
|
||
ul ol,
|
||
ol ol {
|
||
margin-bottom: 0;
|
||
}
|
||
.list-unstyled {
|
||
padding-left: 0;
|
||
list-style: none;
|
||
}
|
||
.list-inline {
|
||
padding-left: 0;
|
||
list-style: none;
|
||
margin-left: -5px;
|
||
}
|
||
.list-inline > li {
|
||
display: inline-block;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
dl {
|
||
margin-top: 0;
|
||
margin-bottom: 18px;
|
||
}
|
||
dt,
|
||
dd {
|
||
line-height: 1.42857143;
|
||
}
|
||
dt {
|
||
font-weight: bold;
|
||
}
|
||
dd {
|
||
margin-left: 0;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.dl-horizontal dt {
|
||
float: left;
|
||
width: 160px;
|
||
clear: left;
|
||
text-align: right;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
.dl-horizontal dd {
|
||
margin-left: 180px;
|
||
}
|
||
}
|
||
abbr[title],
|
||
abbr[data-original-title] {
|
||
cursor: help;
|
||
border-bottom: 1px dotted #777777;
|
||
}
|
||
.initialism {
|
||
font-size: 90%;
|
||
text-transform: uppercase;
|
||
}
|
||
blockquote {
|
||
padding: 9px 18px;
|
||
margin: 0 0 18px;
|
||
font-size: inherit;
|
||
border-left: 5px solid #eeeeee;
|
||
}
|
||
blockquote p:last-child,
|
||
blockquote ul:last-child,
|
||
blockquote ol:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
blockquote footer,
|
||
blockquote small,
|
||
blockquote .small {
|
||
display: block;
|
||
font-size: 80%;
|
||
line-height: 1.42857143;
|
||
color: #777777;
|
||
}
|
||
blockquote footer:before,
|
||
blockquote small:before,
|
||
blockquote .small:before {
|
||
content: '\2014 \00A0';
|
||
}
|
||
.blockquote-reverse,
|
||
blockquote.pull-right {
|
||
padding-right: 15px;
|
||
padding-left: 0;
|
||
border-right: 5px solid #eeeeee;
|
||
border-left: 0;
|
||
text-align: right;
|
||
}
|
||
.blockquote-reverse footer:before,
|
||
blockquote.pull-right footer:before,
|
||
.blockquote-reverse small:before,
|
||
blockquote.pull-right small:before,
|
||
.blockquote-reverse .small:before,
|
||
blockquote.pull-right .small:before {
|
||
content: '';
|
||
}
|
||
.blockquote-reverse footer:after,
|
||
blockquote.pull-right footer:after,
|
||
.blockquote-reverse small:after,
|
||
blockquote.pull-right small:after,
|
||
.blockquote-reverse .small:after,
|
||
blockquote.pull-right .small:after {
|
||
content: '\00A0 \2014';
|
||
}
|
||
address {
|
||
margin-bottom: 18px;
|
||
font-style: normal;
|
||
line-height: 1.42857143;
|
||
}
|
||
code,
|
||
kbd,
|
||
pre,
|
||
samp {
|
||
font-family: monospace;
|
||
}
|
||
code {
|
||
padding: 2px 4px;
|
||
font-size: 90%;
|
||
color: #c7254e;
|
||
background-color: #f9f2f4;
|
||
border-radius: 2px;
|
||
}
|
||
kbd {
|
||
padding: 2px 4px;
|
||
font-size: 90%;
|
||
color: #888;
|
||
background-color: transparent;
|
||
border-radius: 1px;
|
||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||
}
|
||
kbd kbd {
|
||
padding: 0;
|
||
font-size: 100%;
|
||
font-weight: bold;
|
||
box-shadow: none;
|
||
}
|
||
pre {
|
||
display: block;
|
||
padding: 8.5px;
|
||
margin: 0 0 9px;
|
||
font-size: 12px;
|
||
line-height: 1.42857143;
|
||
word-break: break-all;
|
||
word-wrap: break-word;
|
||
color: #333333;
|
||
background-color: #f5f5f5;
|
||
border: 1px solid #ccc;
|
||
border-radius: 2px;
|
||
}
|
||
pre code {
|
||
padding: 0;
|
||
font-size: inherit;
|
||
color: inherit;
|
||
white-space: pre-wrap;
|
||
background-color: transparent;
|
||
border-radius: 0;
|
||
}
|
||
.pre-scrollable {
|
||
max-height: 340px;
|
||
overflow-y: scroll;
|
||
}
|
||
.container {
|
||
margin-right: auto;
|
||
margin-left: auto;
|
||
padding-left: 0px;
|
||
padding-right: 0px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.container {
|
||
width: 768px;
|
||
}
|
||
}
|
||
@media (min-width: 992px) {
|
||
.container {
|
||
width: 940px;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.container {
|
||
width: 1140px;
|
||
}
|
||
}
|
||
.container-fluid {
|
||
margin-right: auto;
|
||
margin-left: auto;
|
||
padding-left: 0px;
|
||
padding-right: 0px;
|
||
}
|
||
.row {
|
||
margin-left: 0px;
|
||
margin-right: 0px;
|
||
}
|
||
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
|
||
position: relative;
|
||
min-height: 1px;
|
||
padding-left: 0px;
|
||
padding-right: 0px;
|
||
}
|
||
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
|
||
float: left;
|
||
}
|
||
.col-xs-12 {
|
||
width: 100%;
|
||
}
|
||
.col-xs-11 {
|
||
width: 91.66666667%;
|
||
}
|
||
.col-xs-10 {
|
||
width: 83.33333333%;
|
||
}
|
||
.col-xs-9 {
|
||
width: 75%;
|
||
}
|
||
.col-xs-8 {
|
||
width: 66.66666667%;
|
||
}
|
||
.col-xs-7 {
|
||
width: 58.33333333%;
|
||
}
|
||
.col-xs-6 {
|
||
width: 50%;
|
||
}
|
||
.col-xs-5 {
|
||
width: 41.66666667%;
|
||
}
|
||
.col-xs-4 {
|
||
width: 33.33333333%;
|
||
}
|
||
.col-xs-3 {
|
||
width: 25%;
|
||
}
|
||
.col-xs-2 {
|
||
width: 16.66666667%;
|
||
}
|
||
.col-xs-1 {
|
||
width: 8.33333333%;
|
||
}
|
||
.col-xs-pull-12 {
|
||
right: 100%;
|
||
}
|
||
.col-xs-pull-11 {
|
||
right: 91.66666667%;
|
||
}
|
||
.col-xs-pull-10 {
|
||
right: 83.33333333%;
|
||
}
|
||
.col-xs-pull-9 {
|
||
right: 75%;
|
||
}
|
||
.col-xs-pull-8 {
|
||
right: 66.66666667%;
|
||
}
|
||
.col-xs-pull-7 {
|
||
right: 58.33333333%;
|
||
}
|
||
.col-xs-pull-6 {
|
||
right: 50%;
|
||
}
|
||
.col-xs-pull-5 {
|
||
right: 41.66666667%;
|
||
}
|
||
.col-xs-pull-4 {
|
||
right: 33.33333333%;
|
||
}
|
||
.col-xs-pull-3 {
|
||
right: 25%;
|
||
}
|
||
.col-xs-pull-2 {
|
||
right: 16.66666667%;
|
||
}
|
||
.col-xs-pull-1 {
|
||
right: 8.33333333%;
|
||
}
|
||
.col-xs-pull-0 {
|
||
right: auto;
|
||
}
|
||
.col-xs-push-12 {
|
||
left: 100%;
|
||
}
|
||
.col-xs-push-11 {
|
||
left: 91.66666667%;
|
||
}
|
||
.col-xs-push-10 {
|
||
left: 83.33333333%;
|
||
}
|
||
.col-xs-push-9 {
|
||
left: 75%;
|
||
}
|
||
.col-xs-push-8 {
|
||
left: 66.66666667%;
|
||
}
|
||
.col-xs-push-7 {
|
||
left: 58.33333333%;
|
||
}
|
||
.col-xs-push-6 {
|
||
left: 50%;
|
||
}
|
||
.col-xs-push-5 {
|
||
left: 41.66666667%;
|
||
}
|
||
.col-xs-push-4 {
|
||
left: 33.33333333%;
|
||
}
|
||
.col-xs-push-3 {
|
||
left: 25%;
|
||
}
|
||
.col-xs-push-2 {
|
||
left: 16.66666667%;
|
||
}
|
||
.col-xs-push-1 {
|
||
left: 8.33333333%;
|
||
}
|
||
.col-xs-push-0 {
|
||
left: auto;
|
||
}
|
||
.col-xs-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
.col-xs-offset-11 {
|
||
margin-left: 91.66666667%;
|
||
}
|
||
.col-xs-offset-10 {
|
||
margin-left: 83.33333333%;
|
||
}
|
||
.col-xs-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
.col-xs-offset-8 {
|
||
margin-left: 66.66666667%;
|
||
}
|
||
.col-xs-offset-7 {
|
||
margin-left: 58.33333333%;
|
||
}
|
||
.col-xs-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
.col-xs-offset-5 {
|
||
margin-left: 41.66666667%;
|
||
}
|
||
.col-xs-offset-4 {
|
||
margin-left: 33.33333333%;
|
||
}
|
||
.col-xs-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
.col-xs-offset-2 {
|
||
margin-left: 16.66666667%;
|
||
}
|
||
.col-xs-offset-1 {
|
||
margin-left: 8.33333333%;
|
||
}
|
||
.col-xs-offset-0 {
|
||
margin-left: 0%;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
|
||
float: left;
|
||
}
|
||
.col-sm-12 {
|
||
width: 100%;
|
||
}
|
||
.col-sm-11 {
|
||
width: 91.66666667%;
|
||
}
|
||
.col-sm-10 {
|
||
width: 83.33333333%;
|
||
}
|
||
.col-sm-9 {
|
||
width: 75%;
|
||
}
|
||
.col-sm-8 {
|
||
width: 66.66666667%;
|
||
}
|
||
.col-sm-7 {
|
||
width: 58.33333333%;
|
||
}
|
||
.col-sm-6 {
|
||
width: 50%;
|
||
}
|
||
.col-sm-5 {
|
||
width: 41.66666667%;
|
||
}
|
||
.col-sm-4 {
|
||
width: 33.33333333%;
|
||
}
|
||
.col-sm-3 {
|
||
width: 25%;
|
||
}
|
||
.col-sm-2 {
|
||
width: 16.66666667%;
|
||
}
|
||
.col-sm-1 {
|
||
width: 8.33333333%;
|
||
}
|
||
.col-sm-pull-12 {
|
||
right: 100%;
|
||
}
|
||
.col-sm-pull-11 {
|
||
right: 91.66666667%;
|
||
}
|
||
.col-sm-pull-10 {
|
||
right: 83.33333333%;
|
||
}
|
||
.col-sm-pull-9 {
|
||
right: 75%;
|
||
}
|
||
.col-sm-pull-8 {
|
||
right: 66.66666667%;
|
||
}
|
||
.col-sm-pull-7 {
|
||
right: 58.33333333%;
|
||
}
|
||
.col-sm-pull-6 {
|
||
right: 50%;
|
||
}
|
||
.col-sm-pull-5 {
|
||
right: 41.66666667%;
|
||
}
|
||
.col-sm-pull-4 {
|
||
right: 33.33333333%;
|
||
}
|
||
.col-sm-pull-3 {
|
||
right: 25%;
|
||
}
|
||
.col-sm-pull-2 {
|
||
right: 16.66666667%;
|
||
}
|
||
.col-sm-pull-1 {
|
||
right: 8.33333333%;
|
||
}
|
||
.col-sm-pull-0 {
|
||
right: auto;
|
||
}
|
||
.col-sm-push-12 {
|
||
left: 100%;
|
||
}
|
||
.col-sm-push-11 {
|
||
left: 91.66666667%;
|
||
}
|
||
.col-sm-push-10 {
|
||
left: 83.33333333%;
|
||
}
|
||
.col-sm-push-9 {
|
||
left: 75%;
|
||
}
|
||
.col-sm-push-8 {
|
||
left: 66.66666667%;
|
||
}
|
||
.col-sm-push-7 {
|
||
left: 58.33333333%;
|
||
}
|
||
.col-sm-push-6 {
|
||
left: 50%;
|
||
}
|
||
.col-sm-push-5 {
|
||
left: 41.66666667%;
|
||
}
|
||
.col-sm-push-4 {
|
||
left: 33.33333333%;
|
||
}
|
||
.col-sm-push-3 {
|
||
left: 25%;
|
||
}
|
||
.col-sm-push-2 {
|
||
left: 16.66666667%;
|
||
}
|
||
.col-sm-push-1 {
|
||
left: 8.33333333%;
|
||
}
|
||
.col-sm-push-0 {
|
||
left: auto;
|
||
}
|
||
.col-sm-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
.col-sm-offset-11 {
|
||
margin-left: 91.66666667%;
|
||
}
|
||
.col-sm-offset-10 {
|
||
margin-left: 83.33333333%;
|
||
}
|
||
.col-sm-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
.col-sm-offset-8 {
|
||
margin-left: 66.66666667%;
|
||
}
|
||
.col-sm-offset-7 {
|
||
margin-left: 58.33333333%;
|
||
}
|
||
.col-sm-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
.col-sm-offset-5 {
|
||
margin-left: 41.66666667%;
|
||
}
|
||
.col-sm-offset-4 {
|
||
margin-left: 33.33333333%;
|
||
}
|
||
.col-sm-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
.col-sm-offset-2 {
|
||
margin-left: 16.66666667%;
|
||
}
|
||
.col-sm-offset-1 {
|
||
margin-left: 8.33333333%;
|
||
}
|
||
.col-sm-offset-0 {
|
||
margin-left: 0%;
|
||
}
|
||
}
|
||
@media (min-width: 992px) {
|
||
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
|
||
float: left;
|
||
}
|
||
.col-md-12 {
|
||
width: 100%;
|
||
}
|
||
.col-md-11 {
|
||
width: 91.66666667%;
|
||
}
|
||
.col-md-10 {
|
||
width: 83.33333333%;
|
||
}
|
||
.col-md-9 {
|
||
width: 75%;
|
||
}
|
||
.col-md-8 {
|
||
width: 66.66666667%;
|
||
}
|
||
.col-md-7 {
|
||
width: 58.33333333%;
|
||
}
|
||
.col-md-6 {
|
||
width: 50%;
|
||
}
|
||
.col-md-5 {
|
||
width: 41.66666667%;
|
||
}
|
||
.col-md-4 {
|
||
width: 33.33333333%;
|
||
}
|
||
.col-md-3 {
|
||
width: 25%;
|
||
}
|
||
.col-md-2 {
|
||
width: 16.66666667%;
|
||
}
|
||
.col-md-1 {
|
||
width: 8.33333333%;
|
||
}
|
||
.col-md-pull-12 {
|
||
right: 100%;
|
||
}
|
||
.col-md-pull-11 {
|
||
right: 91.66666667%;
|
||
}
|
||
.col-md-pull-10 {
|
||
right: 83.33333333%;
|
||
}
|
||
.col-md-pull-9 {
|
||
right: 75%;
|
||
}
|
||
.col-md-pull-8 {
|
||
right: 66.66666667%;
|
||
}
|
||
.col-md-pull-7 {
|
||
right: 58.33333333%;
|
||
}
|
||
.col-md-pull-6 {
|
||
right: 50%;
|
||
}
|
||
.col-md-pull-5 {
|
||
right: 41.66666667%;
|
||
}
|
||
.col-md-pull-4 {
|
||
right: 33.33333333%;
|
||
}
|
||
.col-md-pull-3 {
|
||
right: 25%;
|
||
}
|
||
.col-md-pull-2 {
|
||
right: 16.66666667%;
|
||
}
|
||
.col-md-pull-1 {
|
||
right: 8.33333333%;
|
||
}
|
||
.col-md-pull-0 {
|
||
right: auto;
|
||
}
|
||
.col-md-push-12 {
|
||
left: 100%;
|
||
}
|
||
.col-md-push-11 {
|
||
left: 91.66666667%;
|
||
}
|
||
.col-md-push-10 {
|
||
left: 83.33333333%;
|
||
}
|
||
.col-md-push-9 {
|
||
left: 75%;
|
||
}
|
||
.col-md-push-8 {
|
||
left: 66.66666667%;
|
||
}
|
||
.col-md-push-7 {
|
||
left: 58.33333333%;
|
||
}
|
||
.col-md-push-6 {
|
||
left: 50%;
|
||
}
|
||
.col-md-push-5 {
|
||
left: 41.66666667%;
|
||
}
|
||
.col-md-push-4 {
|
||
left: 33.33333333%;
|
||
}
|
||
.col-md-push-3 {
|
||
left: 25%;
|
||
}
|
||
.col-md-push-2 {
|
||
left: 16.66666667%;
|
||
}
|
||
.col-md-push-1 {
|
||
left: 8.33333333%;
|
||
}
|
||
.col-md-push-0 {
|
||
left: auto;
|
||
}
|
||
.col-md-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
.col-md-offset-11 {
|
||
margin-left: 91.66666667%;
|
||
}
|
||
.col-md-offset-10 {
|
||
margin-left: 83.33333333%;
|
||
}
|
||
.col-md-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
.col-md-offset-8 {
|
||
margin-left: 66.66666667%;
|
||
}
|
||
.col-md-offset-7 {
|
||
margin-left: 58.33333333%;
|
||
}
|
||
.col-md-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
.col-md-offset-5 {
|
||
margin-left: 41.66666667%;
|
||
}
|
||
.col-md-offset-4 {
|
||
margin-left: 33.33333333%;
|
||
}
|
||
.col-md-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
.col-md-offset-2 {
|
||
margin-left: 16.66666667%;
|
||
}
|
||
.col-md-offset-1 {
|
||
margin-left: 8.33333333%;
|
||
}
|
||
.col-md-offset-0 {
|
||
margin-left: 0%;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
|
||
float: left;
|
||
}
|
||
.col-lg-12 {
|
||
width: 100%;
|
||
}
|
||
.col-lg-11 {
|
||
width: 91.66666667%;
|
||
}
|
||
.col-lg-10 {
|
||
width: 83.33333333%;
|
||
}
|
||
.col-lg-9 {
|
||
width: 75%;
|
||
}
|
||
.col-lg-8 {
|
||
width: 66.66666667%;
|
||
}
|
||
.col-lg-7 {
|
||
width: 58.33333333%;
|
||
}
|
||
.col-lg-6 {
|
||
width: 50%;
|
||
}
|
||
.col-lg-5 {
|
||
width: 41.66666667%;
|
||
}
|
||
.col-lg-4 {
|
||
width: 33.33333333%;
|
||
}
|
||
.col-lg-3 {
|
||
width: 25%;
|
||
}
|
||
.col-lg-2 {
|
||
width: 16.66666667%;
|
||
}
|
||
.col-lg-1 {
|
||
width: 8.33333333%;
|
||
}
|
||
.col-lg-pull-12 {
|
||
right: 100%;
|
||
}
|
||
.col-lg-pull-11 {
|
||
right: 91.66666667%;
|
||
}
|
||
.col-lg-pull-10 {
|
||
right: 83.33333333%;
|
||
}
|
||
.col-lg-pull-9 {
|
||
right: 75%;
|
||
}
|
||
.col-lg-pull-8 {
|
||
right: 66.66666667%;
|
||
}
|
||
.col-lg-pull-7 {
|
||
right: 58.33333333%;
|
||
}
|
||
.col-lg-pull-6 {
|
||
right: 50%;
|
||
}
|
||
.col-lg-pull-5 {
|
||
right: 41.66666667%;
|
||
}
|
||
.col-lg-pull-4 {
|
||
right: 33.33333333%;
|
||
}
|
||
.col-lg-pull-3 {
|
||
right: 25%;
|
||
}
|
||
.col-lg-pull-2 {
|
||
right: 16.66666667%;
|
||
}
|
||
.col-lg-pull-1 {
|
||
right: 8.33333333%;
|
||
}
|
||
.col-lg-pull-0 {
|
||
right: auto;
|
||
}
|
||
.col-lg-push-12 {
|
||
left: 100%;
|
||
}
|
||
.col-lg-push-11 {
|
||
left: 91.66666667%;
|
||
}
|
||
.col-lg-push-10 {
|
||
left: 83.33333333%;
|
||
}
|
||
.col-lg-push-9 {
|
||
left: 75%;
|
||
}
|
||
.col-lg-push-8 {
|
||
left: 66.66666667%;
|
||
}
|
||
.col-lg-push-7 {
|
||
left: 58.33333333%;
|
||
}
|
||
.col-lg-push-6 {
|
||
left: 50%;
|
||
}
|
||
.col-lg-push-5 {
|
||
left: 41.66666667%;
|
||
}
|
||
.col-lg-push-4 {
|
||
left: 33.33333333%;
|
||
}
|
||
.col-lg-push-3 {
|
||
left: 25%;
|
||
}
|
||
.col-lg-push-2 {
|
||
left: 16.66666667%;
|
||
}
|
||
.col-lg-push-1 {
|
||
left: 8.33333333%;
|
||
}
|
||
.col-lg-push-0 {
|
||
left: auto;
|
||
}
|
||
.col-lg-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
.col-lg-offset-11 {
|
||
margin-left: 91.66666667%;
|
||
}
|
||
.col-lg-offset-10 {
|
||
margin-left: 83.33333333%;
|
||
}
|
||
.col-lg-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
.col-lg-offset-8 {
|
||
margin-left: 66.66666667%;
|
||
}
|
||
.col-lg-offset-7 {
|
||
margin-left: 58.33333333%;
|
||
}
|
||
.col-lg-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
.col-lg-offset-5 {
|
||
margin-left: 41.66666667%;
|
||
}
|
||
.col-lg-offset-4 {
|
||
margin-left: 33.33333333%;
|
||
}
|
||
.col-lg-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
.col-lg-offset-2 {
|
||
margin-left: 16.66666667%;
|
||
}
|
||
.col-lg-offset-1 {
|
||
margin-left: 8.33333333%;
|
||
}
|
||
.col-lg-offset-0 {
|
||
margin-left: 0%;
|
||
}
|
||
}
|
||
table {
|
||
background-color: transparent;
|
||
}
|
||
caption {
|
||
padding-top: 8px;
|
||
padding-bottom: 8px;
|
||
color: #777777;
|
||
text-align: left;
|
||
}
|
||
th {
|
||
text-align: left;
|
||
}
|
||
.table {
|
||
width: 100%;
|
||
max-width: 100%;
|
||
margin-bottom: 18px;
|
||
}
|
||
.table > thead > tr > th,
|
||
.table > tbody > tr > th,
|
||
.table > tfoot > tr > th,
|
||
.table > thead > tr > td,
|
||
.table > tbody > tr > td,
|
||
.table > tfoot > tr > td {
|
||
padding: 8px;
|
||
line-height: 1.42857143;
|
||
vertical-align: top;
|
||
border-top: 1px solid #ddd;
|
||
}
|
||
.table > thead > tr > th {
|
||
vertical-align: bottom;
|
||
border-bottom: 2px solid #ddd;
|
||
}
|
||
.table > caption + thead > tr:first-child > th,
|
||
.table > colgroup + thead > tr:first-child > th,
|
||
.table > thead:first-child > tr:first-child > th,
|
||
.table > caption + thead > tr:first-child > td,
|
||
.table > colgroup + thead > tr:first-child > td,
|
||
.table > thead:first-child > tr:first-child > td {
|
||
border-top: 0;
|
||
}
|
||
.table > tbody + tbody {
|
||
border-top: 2px solid #ddd;
|
||
}
|
||
.table .table {
|
||
background-color: #fff;
|
||
}
|
||
.table-condensed > thead > tr > th,
|
||
.table-condensed > tbody > tr > th,
|
||
.table-condensed > tfoot > tr > th,
|
||
.table-condensed > thead > tr > td,
|
||
.table-condensed > tbody > tr > td,
|
||
.table-condensed > tfoot > tr > td {
|
||
padding: 5px;
|
||
}
|
||
.table-bordered {
|
||
border: 1px solid #ddd;
|
||
}
|
||
.table-bordered > thead > tr > th,
|
||
.table-bordered > tbody > tr > th,
|
||
.table-bordered > tfoot > tr > th,
|
||
.table-bordered > thead > tr > td,
|
||
.table-bordered > tbody > tr > td,
|
||
.table-bordered > tfoot > tr > td {
|
||
border: 1px solid #ddd;
|
||
}
|
||
.table-bordered > thead > tr > th,
|
||
.table-bordered > thead > tr > td {
|
||
border-bottom-width: 2px;
|
||
}
|
||
.table-striped > tbody > tr:nth-of-type(odd) {
|
||
background-color: #f9f9f9;
|
||
}
|
||
.table-hover > tbody > tr:hover {
|
||
background-color: #f5f5f5;
|
||
}
|
||
table col[class*="col-"] {
|
||
position: static;
|
||
float: none;
|
||
display: table-column;
|
||
}
|
||
table td[class*="col-"],
|
||
table th[class*="col-"] {
|
||
position: static;
|
||
float: none;
|
||
display: table-cell;
|
||
}
|
||
.table > thead > tr > td.active,
|
||
.table > tbody > tr > td.active,
|
||
.table > tfoot > tr > td.active,
|
||
.table > thead > tr > th.active,
|
||
.table > tbody > tr > th.active,
|
||
.table > tfoot > tr > th.active,
|
||
.table > thead > tr.active > td,
|
||
.table > tbody > tr.active > td,
|
||
.table > tfoot > tr.active > td,
|
||
.table > thead > tr.active > th,
|
||
.table > tbody > tr.active > th,
|
||
.table > tfoot > tr.active > th {
|
||
background-color: #f5f5f5;
|
||
}
|
||
.table-hover > tbody > tr > td.active:hover,
|
||
.table-hover > tbody > tr > th.active:hover,
|
||
.table-hover > tbody > tr.active:hover > td,
|
||
.table-hover > tbody > tr:hover > .active,
|
||
.table-hover > tbody > tr.active:hover > th {
|
||
background-color: #e8e8e8;
|
||
}
|
||
.table > thead > tr > td.success,
|
||
.table > tbody > tr > td.success,
|
||
.table > tfoot > tr > td.success,
|
||
.table > thead > tr > th.success,
|
||
.table > tbody > tr > th.success,
|
||
.table > tfoot > tr > th.success,
|
||
.table > thead > tr.success > td,
|
||
.table > tbody > tr.success > td,
|
||
.table > tfoot > tr.success > td,
|
||
.table > thead > tr.success > th,
|
||
.table > tbody > tr.success > th,
|
||
.table > tfoot > tr.success > th {
|
||
background-color: #dff0d8;
|
||
}
|
||
.table-hover > tbody > tr > td.success:hover,
|
||
.table-hover > tbody > tr > th.success:hover,
|
||
.table-hover > tbody > tr.success:hover > td,
|
||
.table-hover > tbody > tr:hover > .success,
|
||
.table-hover > tbody > tr.success:hover > th {
|
||
background-color: #d0e9c6;
|
||
}
|
||
.table > thead > tr > td.info,
|
||
.table > tbody > tr > td.info,
|
||
.table > tfoot > tr > td.info,
|
||
.table > thead > tr > th.info,
|
||
.table > tbody > tr > th.info,
|
||
.table > tfoot > tr > th.info,
|
||
.table > thead > tr.info > td,
|
||
.table > tbody > tr.info > td,
|
||
.table > tfoot > tr.info > td,
|
||
.table > thead > tr.info > th,
|
||
.table > tbody > tr.info > th,
|
||
.table > tfoot > tr.info > th {
|
||
background-color: #d9edf7;
|
||
}
|
||
.table-hover > tbody > tr > td.info:hover,
|
||
.table-hover > tbody > tr > th.info:hover,
|
||
.table-hover > tbody > tr.info:hover > td,
|
||
.table-hover > tbody > tr:hover > .info,
|
||
.table-hover > tbody > tr.info:hover > th {
|
||
background-color: #c4e3f3;
|
||
}
|
||
.table > thead > tr > td.warning,
|
||
.table > tbody > tr > td.warning,
|
||
.table > tfoot > tr > td.warning,
|
||
.table > thead > tr > th.warning,
|
||
.table > tbody > tr > th.warning,
|
||
.table > tfoot > tr > th.warning,
|
||
.table > thead > tr.warning > td,
|
||
.table > tbody > tr.warning > td,
|
||
.table > tfoot > tr.warning > td,
|
||
.table > thead > tr.warning > th,
|
||
.table > tbody > tr.warning > th,
|
||
.table > tfoot > tr.warning > th {
|
||
background-color: #fcf8e3;
|
||
}
|
||
.table-hover > tbody > tr > td.warning:hover,
|
||
.table-hover > tbody > tr > th.warning:hover,
|
||
.table-hover > tbody > tr.warning:hover > td,
|
||
.table-hover > tbody > tr:hover > .warning,
|
||
.table-hover > tbody > tr.warning:hover > th {
|
||
background-color: #faf2cc;
|
||
}
|
||
.table > thead > tr > td.danger,
|
||
.table > tbody > tr > td.danger,
|
||
.table > tfoot > tr > td.danger,
|
||
.table > thead > tr > th.danger,
|
||
.table > tbody > tr > th.danger,
|
||
.table > tfoot > tr > th.danger,
|
||
.table > thead > tr.danger > td,
|
||
.table > tbody > tr.danger > td,
|
||
.table > tfoot > tr.danger > td,
|
||
.table > thead > tr.danger > th,
|
||
.table > tbody > tr.danger > th,
|
||
.table > tfoot > tr.danger > th {
|
||
background-color: #f2dede;
|
||
}
|
||
.table-hover > tbody > tr > td.danger:hover,
|
||
.table-hover > tbody > tr > th.danger:hover,
|
||
.table-hover > tbody > tr.danger:hover > td,
|
||
.table-hover > tbody > tr:hover > .danger,
|
||
.table-hover > tbody > tr.danger:hover > th {
|
||
background-color: #ebcccc;
|
||
}
|
||
.table-responsive {
|
||
overflow-x: auto;
|
||
min-height: 0.01%;
|
||
}
|
||
@media screen and (max-width: 767px) {
|
||
.table-responsive {
|
||
width: 100%;
|
||
margin-bottom: 13.5px;
|
||
overflow-y: hidden;
|
||
-ms-overflow-style: -ms-autohiding-scrollbar;
|
||
border: 1px solid #ddd;
|
||
}
|
||
.table-responsive > .table {
|
||
margin-bottom: 0;
|
||
}
|
||
.table-responsive > .table > thead > tr > th,
|
||
.table-responsive > .table > tbody > tr > th,
|
||
.table-responsive > .table > tfoot > tr > th,
|
||
.table-responsive > .table > thead > tr > td,
|
||
.table-responsive > .table > tbody > tr > td,
|
||
.table-responsive > .table > tfoot > tr > td {
|
||
white-space: nowrap;
|
||
}
|
||
.table-responsive > .table-bordered {
|
||
border: 0;
|
||
}
|
||
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
||
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
||
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
||
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
||
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
||
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||
border-left: 0;
|
||
}
|
||
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
||
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
||
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
||
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
||
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
||
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||
border-right: 0;
|
||
}
|
||
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
||
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
||
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
||
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
||
border-bottom: 0;
|
||
}
|
||
}
|
||
fieldset {
|
||
padding: 0;
|
||
margin: 0;
|
||
border: 0;
|
||
min-width: 0;
|
||
}
|
||
legend {
|
||
display: block;
|
||
width: 100%;
|
||
padding: 0;
|
||
margin-bottom: 18px;
|
||
font-size: 19.5px;
|
||
line-height: inherit;
|
||
color: #333333;
|
||
border: 0;
|
||
border-bottom: 1px solid #e5e5e5;
|
||
}
|
||
label {
|
||
display: inline-block;
|
||
max-width: 100%;
|
||
margin-bottom: 5px;
|
||
font-weight: bold;
|
||
}
|
||
input[type="search"] {
|
||
-webkit-box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
box-sizing: border-box;
|
||
}
|
||
input[type="radio"],
|
||
input[type="checkbox"] {
|
||
margin: 4px 0 0;
|
||
margin-top: 1px \9;
|
||
line-height: normal;
|
||
}
|
||
input[type="file"] {
|
||
display: block;
|
||
}
|
||
input[type="range"] {
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
select[multiple],
|
||
select[size] {
|
||
height: auto;
|
||
}
|
||
input[type="file"]:focus,
|
||
input[type="radio"]:focus,
|
||
input[type="checkbox"]:focus {
|
||
outline: 5px auto -webkit-focus-ring-color;
|
||
outline-offset: -2px;
|
||
}
|
||
output {
|
||
display: block;
|
||
padding-top: 7px;
|
||
font-size: 13px;
|
||
line-height: 1.42857143;
|
||
color: #555555;
|
||
}
|
||
.form-control {
|
||
display: block;
|
||
width: 100%;
|
||
height: 32px;
|
||
padding: 6px 12px;
|
||
font-size: 13px;
|
||
line-height: 1.42857143;
|
||
color: #555555;
|
||
background-color: #fff;
|
||
background-image: none;
|
||
border: 1px solid #ccc;
|
||
border-radius: 2px;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||
}
|
||
.form-control:focus {
|
||
border-color: #66afe9;
|
||
outline: 0;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||
}
|
||
.form-control::-moz-placeholder {
|
||
color: #999;
|
||
opacity: 1;
|
||
}
|
||
.form-control:-ms-input-placeholder {
|
||
color: #999;
|
||
}
|
||
.form-control::-webkit-input-placeholder {
|
||
color: #999;
|
||
}
|
||
.form-control::-ms-expand {
|
||
border: 0;
|
||
background-color: transparent;
|
||
}
|
||
.form-control[disabled],
|
||
.form-control[readonly],
|
||
fieldset[disabled] .form-control {
|
||
background-color: #eeeeee;
|
||
opacity: 1;
|
||
}
|
||
.form-control[disabled],
|
||
fieldset[disabled] .form-control {
|
||
cursor: not-allowed;
|
||
}
|
||
textarea.form-control {
|
||
height: auto;
|
||
}
|
||
input[type="search"] {
|
||
-webkit-appearance: none;
|
||
}
|
||
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
||
input[type="date"].form-control,
|
||
input[type="time"].form-control,
|
||
input[type="datetime-local"].form-control,
|
||
input[type="month"].form-control {
|
||
line-height: 32px;
|
||
}
|
||
input[type="date"].input-sm,
|
||
input[type="time"].input-sm,
|
||
input[type="datetime-local"].input-sm,
|
||
input[type="month"].input-sm,
|
||
.input-group-sm input[type="date"],
|
||
.input-group-sm input[type="time"],
|
||
.input-group-sm input[type="datetime-local"],
|
||
.input-group-sm input[type="month"] {
|
||
line-height: 30px;
|
||
}
|
||
input[type="date"].input-lg,
|
||
input[type="time"].input-lg,
|
||
input[type="datetime-local"].input-lg,
|
||
input[type="month"].input-lg,
|
||
.input-group-lg input[type="date"],
|
||
.input-group-lg input[type="time"],
|
||
.input-group-lg input[type="datetime-local"],
|
||
.input-group-lg input[type="month"] {
|
||
line-height: 45px;
|
||
}
|
||
}
|
||
.form-group {
|
||
margin-bottom: 15px;
|
||
}
|
||
.radio,
|
||
.checkbox {
|
||
position: relative;
|
||
display: block;
|
||
margin-top: 10px;
|
||
margin-bottom: 10px;
|
||
}
|
||
.radio label,
|
||
.checkbox label {
|
||
min-height: 18px;
|
||
padding-left: 20px;
|
||
margin-bottom: 0;
|
||
font-weight: normal;
|
||
cursor: pointer;
|
||
}
|
||
.radio input[type="radio"],
|
||
.radio-inline input[type="radio"],
|
||
.checkbox input[type="checkbox"],
|
||
.checkbox-inline input[type="checkbox"] {
|
||
position: absolute;
|
||
margin-left: -20px;
|
||
margin-top: 4px \9;
|
||
}
|
||
.radio + .radio,
|
||
.checkbox + .checkbox {
|
||
margin-top: -5px;
|
||
}
|
||
.radio-inline,
|
||
.checkbox-inline {
|
||
position: relative;
|
||
display: inline-block;
|
||
padding-left: 20px;
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
font-weight: normal;
|
||
cursor: pointer;
|
||
}
|
||
.radio-inline + .radio-inline,
|
||
.checkbox-inline + .checkbox-inline {
|
||
margin-top: 0;
|
||
margin-left: 10px;
|
||
}
|
||
input[type="radio"][disabled],
|
||
input[type="checkbox"][disabled],
|
||
input[type="radio"].disabled,
|
||
input[type="checkbox"].disabled,
|
||
fieldset[disabled] input[type="radio"],
|
||
fieldset[disabled] input[type="checkbox"] {
|
||
cursor: not-allowed;
|
||
}
|
||
.radio-inline.disabled,
|
||
.checkbox-inline.disabled,
|
||
fieldset[disabled] .radio-inline,
|
||
fieldset[disabled] .checkbox-inline {
|
||
cursor: not-allowed;
|
||
}
|
||
.radio.disabled label,
|
||
.checkbox.disabled label,
|
||
fieldset[disabled] .radio label,
|
||
fieldset[disabled] .checkbox label {
|
||
cursor: not-allowed;
|
||
}
|
||
.form-control-static {
|
||
padding-top: 7px;
|
||
padding-bottom: 7px;
|
||
margin-bottom: 0;
|
||
min-height: 31px;
|
||
}
|
||
.form-control-static.input-lg,
|
||
.form-control-static.input-sm {
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
}
|
||
.input-sm {
|
||
height: 30px;
|
||
padding: 5px 10px;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
border-radius: 1px;
|
||
}
|
||
select.input-sm {
|
||
height: 30px;
|
||
line-height: 30px;
|
||
}
|
||
textarea.input-sm,
|
||
select[multiple].input-sm {
|
||
height: auto;
|
||
}
|
||
.form-group-sm .form-control {
|
||
height: 30px;
|
||
padding: 5px 10px;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
border-radius: 1px;
|
||
}
|
||
.form-group-sm select.form-control {
|
||
height: 30px;
|
||
line-height: 30px;
|
||
}
|
||
.form-group-sm textarea.form-control,
|
||
.form-group-sm select[multiple].form-control {
|
||
height: auto;
|
||
}
|
||
.form-group-sm .form-control-static {
|
||
height: 30px;
|
||
min-height: 30px;
|
||
padding: 6px 10px;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
}
|
||
.input-lg {
|
||
height: 45px;
|
||
padding: 10px 16px;
|
||
font-size: 17px;
|
||
line-height: 1.3333333;
|
||
border-radius: 3px;
|
||
}
|
||
select.input-lg {
|
||
height: 45px;
|
||
line-height: 45px;
|
||
}
|
||
textarea.input-lg,
|
||
select[multiple].input-lg {
|
||
height: auto;
|
||
}
|
||
.form-group-lg .form-control {
|
||
height: 45px;
|
||
padding: 10px 16px;
|
||
font-size: 17px;
|
||
line-height: 1.3333333;
|
||
border-radius: 3px;
|
||
}
|
||
.form-group-lg select.form-control {
|
||
height: 45px;
|
||
line-height: 45px;
|
||
}
|
||
.form-group-lg textarea.form-control,
|
||
.form-group-lg select[multiple].form-control {
|
||
height: auto;
|
||
}
|
||
.form-group-lg .form-control-static {
|
||
height: 45px;
|
||
min-height: 35px;
|
||
padding: 11px 16px;
|
||
font-size: 17px;
|
||
line-height: 1.3333333;
|
||
}
|
||
.has-feedback {
|
||
position: relative;
|
||
}
|
||
.has-feedback .form-control {
|
||
padding-right: 40px;
|
||
}
|
||
.form-control-feedback {
|
||
position: absolute;
|
||
top: 0;
|
||
right: 0;
|
||
z-index: 2;
|
||
display: block;
|
||
width: 32px;
|
||
height: 32px;
|
||
line-height: 32px;
|
||
text-align: center;
|
||
pointer-events: none;
|
||
}
|
||
.input-lg + .form-control-feedback,
|
||
.input-group-lg + .form-control-feedback,
|
||
.form-group-lg .form-control + .form-control-feedback {
|
||
width: 45px;
|
||
height: 45px;
|
||
line-height: 45px;
|
||
}
|
||
.input-sm + .form-control-feedback,
|
||
.input-group-sm + .form-control-feedback,
|
||
.form-group-sm .form-control + .form-control-feedback {
|
||
width: 30px;
|
||
height: 30px;
|
||
line-height: 30px;
|
||
}
|
||
.has-success .help-block,
|
||
.has-success .control-label,
|
||
.has-success .radio,
|
||
.has-success .checkbox,
|
||
.has-success .radio-inline,
|
||
.has-success .checkbox-inline,
|
||
.has-success.radio label,
|
||
.has-success.checkbox label,
|
||
.has-success.radio-inline label,
|
||
.has-success.checkbox-inline label {
|
||
color: #3c763d;
|
||
}
|
||
.has-success .form-control {
|
||
border-color: #3c763d;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
}
|
||
.has-success .form-control:focus {
|
||
border-color: #2b542c;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
||
}
|
||
.has-success .input-group-addon {
|
||
color: #3c763d;
|
||
border-color: #3c763d;
|
||
background-color: #dff0d8;
|
||
}
|
||
.has-success .form-control-feedback {
|
||
color: #3c763d;
|
||
}
|
||
.has-warning .help-block,
|
||
.has-warning .control-label,
|
||
.has-warning .radio,
|
||
.has-warning .checkbox,
|
||
.has-warning .radio-inline,
|
||
.has-warning .checkbox-inline,
|
||
.has-warning.radio label,
|
||
.has-warning.checkbox label,
|
||
.has-warning.radio-inline label,
|
||
.has-warning.checkbox-inline label {
|
||
color: #8a6d3b;
|
||
}
|
||
.has-warning .form-control {
|
||
border-color: #8a6d3b;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
}
|
||
.has-warning .form-control:focus {
|
||
border-color: #66512c;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
||
}
|
||
.has-warning .input-group-addon {
|
||
color: #8a6d3b;
|
||
border-color: #8a6d3b;
|
||
background-color: #fcf8e3;
|
||
}
|
||
.has-warning .form-control-feedback {
|
||
color: #8a6d3b;
|
||
}
|
||
.has-error .help-block,
|
||
.has-error .control-label,
|
||
.has-error .radio,
|
||
.has-error .checkbox,
|
||
.has-error .radio-inline,
|
||
.has-error .checkbox-inline,
|
||
.has-error.radio label,
|
||
.has-error.checkbox label,
|
||
.has-error.radio-inline label,
|
||
.has-error.checkbox-inline label {
|
||
color: #a94442;
|
||
}
|
||
.has-error .form-control {
|
||
border-color: #a94442;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
}
|
||
.has-error .form-control:focus {
|
||
border-color: #843534;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
||
}
|
||
.has-error .input-group-addon {
|
||
color: #a94442;
|
||
border-color: #a94442;
|
||
background-color: #f2dede;
|
||
}
|
||
.has-error .form-control-feedback {
|
||
color: #a94442;
|
||
}
|
||
.has-feedback label ~ .form-control-feedback {
|
||
top: 23px;
|
||
}
|
||
.has-feedback label.sr-only ~ .form-control-feedback {
|
||
top: 0;
|
||
}
|
||
.help-block {
|
||
display: block;
|
||
margin-top: 5px;
|
||
margin-bottom: 10px;
|
||
color: #404040;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.form-inline .form-group {
|
||
display: inline-block;
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
.form-inline .form-control {
|
||
display: inline-block;
|
||
width: auto;
|
||
vertical-align: middle;
|
||
}
|
||
.form-inline .form-control-static {
|
||
display: inline-block;
|
||
}
|
||
.form-inline .input-group {
|
||
display: inline-table;
|
||
vertical-align: middle;
|
||
}
|
||
.form-inline .input-group .input-group-addon,
|
||
.form-inline .input-group .input-group-btn,
|
||
.form-inline .input-group .form-control {
|
||
width: auto;
|
||
}
|
||
.form-inline .input-group > .form-control {
|
||
width: 100%;
|
||
}
|
||
.form-inline .control-label {
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
.form-inline .radio,
|
||
.form-inline .checkbox {
|
||
display: inline-block;
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
.form-inline .radio label,
|
||
.form-inline .checkbox label {
|
||
padding-left: 0;
|
||
}
|
||
.form-inline .radio input[type="radio"],
|
||
.form-inline .checkbox input[type="checkbox"] {
|
||
position: relative;
|
||
margin-left: 0;
|
||
}
|
||
.form-inline .has-feedback .form-control-feedback {
|
||
top: 0;
|
||
}
|
||
}
|
||
.form-horizontal .radio,
|
||
.form-horizontal .checkbox,
|
||
.form-horizontal .radio-inline,
|
||
.form-horizontal .checkbox-inline {
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
padding-top: 7px;
|
||
}
|
||
.form-horizontal .radio,
|
||
.form-horizontal .checkbox {
|
||
min-height: 25px;
|
||
}
|
||
.form-horizontal .form-group {
|
||
margin-left: 0px;
|
||
margin-right: 0px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.form-horizontal .control-label {
|
||
text-align: right;
|
||
margin-bottom: 0;
|
||
padding-top: 7px;
|
||
}
|
||
}
|
||
.form-horizontal .has-feedback .form-control-feedback {
|
||
right: 0px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.form-horizontal .form-group-lg .control-label {
|
||
padding-top: 11px;
|
||
font-size: 17px;
|
||
}
|
||
}
|
||
@media (min-width: 768px) {
|
||
.form-horizontal .form-group-sm .control-label {
|
||
padding-top: 6px;
|
||
font-size: 12px;
|
||
}
|
||
}
|
||
.btn {
|
||
display: inline-block;
|
||
margin-bottom: 0;
|
||
font-weight: normal;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
touch-action: manipulation;
|
||
cursor: pointer;
|
||
background-image: none;
|
||
border: 1px solid transparent;
|
||
white-space: nowrap;
|
||
padding: 6px 12px;
|
||
font-size: 13px;
|
||
line-height: 1.42857143;
|
||
border-radius: 2px;
|
||
-webkit-user-select: none;
|
||
-moz-user-select: none;
|
||
-ms-user-select: none;
|
||
user-select: none;
|
||
}
|
||
.btn:focus,
|
||
.btn:active:focus,
|
||
.btn.active:focus,
|
||
.btn.focus,
|
||
.btn:active.focus,
|
||
.btn.active.focus {
|
||
outline: 5px auto -webkit-focus-ring-color;
|
||
outline-offset: -2px;
|
||
}
|
||
.btn:hover,
|
||
.btn:focus,
|
||
.btn.focus {
|
||
color: #333;
|
||
text-decoration: none;
|
||
}
|
||
.btn:active,
|
||
.btn.active {
|
||
outline: 0;
|
||
background-image: none;
|
||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||
}
|
||
.btn.disabled,
|
||
.btn[disabled],
|
||
fieldset[disabled] .btn {
|
||
cursor: not-allowed;
|
||
opacity: 0.65;
|
||
filter: alpha(opacity=65);
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
a.btn.disabled,
|
||
fieldset[disabled] a.btn {
|
||
pointer-events: none;
|
||
}
|
||
.btn-default {
|
||
color: #333;
|
||
background-color: #fff;
|
||
border-color: #ccc;
|
||
}
|
||
.btn-default:focus,
|
||
.btn-default.focus {
|
||
color: #333;
|
||
background-color: #e6e6e6;
|
||
border-color: #8c8c8c;
|
||
}
|
||
.btn-default:hover {
|
||
color: #333;
|
||
background-color: #e6e6e6;
|
||
border-color: #adadad;
|
||
}
|
||
.btn-default:active,
|
||
.btn-default.active,
|
||
.open > .dropdown-toggle.btn-default {
|
||
color: #333;
|
||
background-color: #e6e6e6;
|
||
border-color: #adadad;
|
||
}
|
||
.btn-default:active:hover,
|
||
.btn-default.active:hover,
|
||
.open > .dropdown-toggle.btn-default:hover,
|
||
.btn-default:active:focus,
|
||
.btn-default.active:focus,
|
||
.open > .dropdown-toggle.btn-default:focus,
|
||
.btn-default:active.focus,
|
||
.btn-default.active.focus,
|
||
.open > .dropdown-toggle.btn-default.focus {
|
||
color: #333;
|
||
background-color: #d4d4d4;
|
||
border-color: #8c8c8c;
|
||
}
|
||
.btn-default:active,
|
||
.btn-default.active,
|
||
.open > .dropdown-toggle.btn-default {
|
||
background-image: none;
|
||
}
|
||
.btn-default.disabled:hover,
|
||
.btn-default[disabled]:hover,
|
||
fieldset[disabled] .btn-default:hover,
|
||
.btn-default.disabled:focus,
|
||
.btn-default[disabled]:focus,
|
||
fieldset[disabled] .btn-default:focus,
|
||
.btn-default.disabled.focus,
|
||
.btn-default[disabled].focus,
|
||
fieldset[disabled] .btn-default.focus {
|
||
background-color: #fff;
|
||
border-color: #ccc;
|
||
}
|
||
.btn-default .badge {
|
||
color: #fff;
|
||
background-color: #333;
|
||
}
|
||
.btn-primary {
|
||
color: #fff;
|
||
background-color: #337ab7;
|
||
border-color: #2e6da4;
|
||
}
|
||
.btn-primary:focus,
|
||
.btn-primary.focus {
|
||
color: #fff;
|
||
background-color: #286090;
|
||
border-color: #122b40;
|
||
}
|
||
.btn-primary:hover {
|
||
color: #fff;
|
||
background-color: #286090;
|
||
border-color: #204d74;
|
||
}
|
||
.btn-primary:active,
|
||
.btn-primary.active,
|
||
.open > .dropdown-toggle.btn-primary {
|
||
color: #fff;
|
||
background-color: #286090;
|
||
border-color: #204d74;
|
||
}
|
||
.btn-primary:active:hover,
|
||
.btn-primary.active:hover,
|
||
.open > .dropdown-toggle.btn-primary:hover,
|
||
.btn-primary:active:focus,
|
||
.btn-primary.active:focus,
|
||
.open > .dropdown-toggle.btn-primary:focus,
|
||
.btn-primary:active.focus,
|
||
.btn-primary.active.focus,
|
||
.open > .dropdown-toggle.btn-primary.focus {
|
||
color: #fff;
|
||
background-color: #204d74;
|
||
border-color: #122b40;
|
||
}
|
||
.btn-primary:active,
|
||
.btn-primary.active,
|
||
.open > .dropdown-toggle.btn-primary {
|
||
background-image: none;
|
||
}
|
||
.btn-primary.disabled:hover,
|
||
.btn-primary[disabled]:hover,
|
||
fieldset[disabled] .btn-primary:hover,
|
||
.btn-primary.disabled:focus,
|
||
.btn-primary[disabled]:focus,
|
||
fieldset[disabled] .btn-primary:focus,
|
||
.btn-primary.disabled.focus,
|
||
.btn-primary[disabled].focus,
|
||
fieldset[disabled] .btn-primary.focus {
|
||
background-color: #337ab7;
|
||
border-color: #2e6da4;
|
||
}
|
||
.btn-primary .badge {
|
||
color: #337ab7;
|
||
background-color: #fff;
|
||
}
|
||
.btn-success {
|
||
color: #fff;
|
||
background-color: #5cb85c;
|
||
border-color: #4cae4c;
|
||
}
|
||
.btn-success:focus,
|
||
.btn-success.focus {
|
||
color: #fff;
|
||
background-color: #449d44;
|
||
border-color: #255625;
|
||
}
|
||
.btn-success:hover {
|
||
color: #fff;
|
||
background-color: #449d44;
|
||
border-color: #398439;
|
||
}
|
||
.btn-success:active,
|
||
.btn-success.active,
|
||
.open > .dropdown-toggle.btn-success {
|
||
color: #fff;
|
||
background-color: #449d44;
|
||
border-color: #398439;
|
||
}
|
||
.btn-success:active:hover,
|
||
.btn-success.active:hover,
|
||
.open > .dropdown-toggle.btn-success:hover,
|
||
.btn-success:active:focus,
|
||
.btn-success.active:focus,
|
||
.open > .dropdown-toggle.btn-success:focus,
|
||
.btn-success:active.focus,
|
||
.btn-success.active.focus,
|
||
.open > .dropdown-toggle.btn-success.focus {
|
||
color: #fff;
|
||
background-color: #398439;
|
||
border-color: #255625;
|
||
}
|
||
.btn-success:active,
|
||
.btn-success.active,
|
||
.open > .dropdown-toggle.btn-success {
|
||
background-image: none;
|
||
}
|
||
.btn-success.disabled:hover,
|
||
.btn-success[disabled]:hover,
|
||
fieldset[disabled] .btn-success:hover,
|
||
.btn-success.disabled:focus,
|
||
.btn-success[disabled]:focus,
|
||
fieldset[disabled] .btn-success:focus,
|
||
.btn-success.disabled.focus,
|
||
.btn-success[disabled].focus,
|
||
fieldset[disabled] .btn-success.focus {
|
||
background-color: #5cb85c;
|
||
border-color: #4cae4c;
|
||
}
|
||
.btn-success .badge {
|
||
color: #5cb85c;
|
||
background-color: #fff;
|
||
}
|
||
.btn-info {
|
||
color: #fff;
|
||
background-color: #5bc0de;
|
||
border-color: #46b8da;
|
||
}
|
||
.btn-info:focus,
|
||
.btn-info.focus {
|
||
color: #fff;
|
||
background-color: #31b0d5;
|
||
border-color: #1b6d85;
|
||
}
|
||
.btn-info:hover {
|
||
color: #fff;
|
||
background-color: #31b0d5;
|
||
border-color: #269abc;
|
||
}
|
||
.btn-info:active,
|
||
.btn-info.active,
|
||
.open > .dropdown-toggle.btn-info {
|
||
color: #fff;
|
||
background-color: #31b0d5;
|
||
border-color: #269abc;
|
||
}
|
||
.btn-info:active:hover,
|
||
.btn-info.active:hover,
|
||
.open > .dropdown-toggle.btn-info:hover,
|
||
.btn-info:active:focus,
|
||
.btn-info.active:focus,
|
||
.open > .dropdown-toggle.btn-info:focus,
|
||
.btn-info:active.focus,
|
||
.btn-info.active.focus,
|
||
.open > .dropdown-toggle.btn-info.focus {
|
||
color: #fff;
|
||
background-color: #269abc;
|
||
border-color: #1b6d85;
|
||
}
|
||
.btn-info:active,
|
||
.btn-info.active,
|
||
.open > .dropdown-toggle.btn-info {
|
||
background-image: none;
|
||
}
|
||
.btn-info.disabled:hover,
|
||
.btn-info[disabled]:hover,
|
||
fieldset[disabled] .btn-info:hover,
|
||
.btn-info.disabled:focus,
|
||
.btn-info[disabled]:focus,
|
||
fieldset[disabled] .btn-info:focus,
|
||
.btn-info.disabled.focus,
|
||
.btn-info[disabled].focus,
|
||
fieldset[disabled] .btn-info.focus {
|
||
background-color: #5bc0de;
|
||
border-color: #46b8da;
|
||
}
|
||
.btn-info .badge {
|
||
color: #5bc0de;
|
||
background-color: #fff;
|
||
}
|
||
.btn-warning {
|
||
color: #fff;
|
||
background-color: #f0ad4e;
|
||
border-color: #eea236;
|
||
}
|
||
.btn-warning:focus,
|
||
.btn-warning.focus {
|
||
color: #fff;
|
||
background-color: #ec971f;
|
||
border-color: #985f0d;
|
||
}
|
||
.btn-warning:hover {
|
||
color: #fff;
|
||
background-color: #ec971f;
|
||
border-color: #d58512;
|
||
}
|
||
.btn-warning:active,
|
||
.btn-warning.active,
|
||
.open > .dropdown-toggle.btn-warning {
|
||
color: #fff;
|
||
background-color: #ec971f;
|
||
border-color: #d58512;
|
||
}
|
||
.btn-warning:active:hover,
|
||
.btn-warning.active:hover,
|
||
.open > .dropdown-toggle.btn-warning:hover,
|
||
.btn-warning:active:focus,
|
||
.btn-warning.active:focus,
|
||
.open > .dropdown-toggle.btn-warning:focus,
|
||
.btn-warning:active.focus,
|
||
.btn-warning.active.focus,
|
||
.open > .dropdown-toggle.btn-warning.focus {
|
||
color: #fff;
|
||
background-color: #d58512;
|
||
border-color: #985f0d;
|
||
}
|
||
.btn-warning:active,
|
||
.btn-warning.active,
|
||
.open > .dropdown-toggle.btn-warning {
|
||
background-image: none;
|
||
}
|
||
.btn-warning.disabled:hover,
|
||
.btn-warning[disabled]:hover,
|
||
fieldset[disabled] .btn-warning:hover,
|
||
.btn-warning.disabled:focus,
|
||
.btn-warning[disabled]:focus,
|
||
fieldset[disabled] .btn-warning:focus,
|
||
.btn-warning.disabled.focus,
|
||
.btn-warning[disabled].focus,
|
||
fieldset[disabled] .btn-warning.focus {
|
||
background-color: #f0ad4e;
|
||
border-color: #eea236;
|
||
}
|
||
.btn-warning .badge {
|
||
color: #f0ad4e;
|
||
background-color: #fff;
|
||
}
|
||
.btn-danger {
|
||
color: #fff;
|
||
background-color: #d9534f;
|
||
border-color: #d43f3a;
|
||
}
|
||
.btn-danger:focus,
|
||
.btn-danger.focus {
|
||
color: #fff;
|
||
background-color: #c9302c;
|
||
border-color: #761c19;
|
||
}
|
||
.btn-danger:hover {
|
||
color: #fff;
|
||
background-color: #c9302c;
|
||
border-color: #ac2925;
|
||
}
|
||
.btn-danger:active,
|
||
.btn-danger.active,
|
||
.open > .dropdown-toggle.btn-danger {
|
||
color: #fff;
|
||
background-color: #c9302c;
|
||
border-color: #ac2925;
|
||
}
|
||
.btn-danger:active:hover,
|
||
.btn-danger.active:hover,
|
||
.open > .dropdown-toggle.btn-danger:hover,
|
||
.btn-danger:active:focus,
|
||
.btn-danger.active:focus,
|
||
.open > .dropdown-toggle.btn-danger:focus,
|
||
.btn-danger:active.focus,
|
||
.btn-danger.active.focus,
|
||
.open > .dropdown-toggle.btn-danger.focus {
|
||
color: #fff;
|
||
background-color: #ac2925;
|
||
border-color: #761c19;
|
||
}
|
||
.btn-danger:active,
|
||
.btn-danger.active,
|
||
.open > .dropdown-toggle.btn-danger {
|
||
background-image: none;
|
||
}
|
||
.btn-danger.disabled:hover,
|
||
.btn-danger[disabled]:hover,
|
||
fieldset[disabled] .btn-danger:hover,
|
||
.btn-danger.disabled:focus,
|
||
.btn-danger[disabled]:focus,
|
||
fieldset[disabled] .btn-danger:focus,
|
||
.btn-danger.disabled.focus,
|
||
.btn-danger[disabled].focus,
|
||
fieldset[disabled] .btn-danger.focus {
|
||
background-color: #d9534f;
|
||
border-color: #d43f3a;
|
||
}
|
||
.btn-danger .badge {
|
||
color: #d9534f;
|
||
background-color: #fff;
|
||
}
|
||
.btn-link {
|
||
color: #337ab7;
|
||
font-weight: normal;
|
||
border-radius: 0;
|
||
}
|
||
.btn-link,
|
||
.btn-link:active,
|
||
.btn-link.active,
|
||
.btn-link[disabled],
|
||
fieldset[disabled] .btn-link {
|
||
background-color: transparent;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
.btn-link,
|
||
.btn-link:hover,
|
||
.btn-link:focus,
|
||
.btn-link:active {
|
||
border-color: transparent;
|
||
}
|
||
.btn-link:hover,
|
||
.btn-link:focus {
|
||
color: #23527c;
|
||
text-decoration: underline;
|
||
background-color: transparent;
|
||
}
|
||
.btn-link[disabled]:hover,
|
||
fieldset[disabled] .btn-link:hover,
|
||
.btn-link[disabled]:focus,
|
||
fieldset[disabled] .btn-link:focus {
|
||
color: #777777;
|
||
text-decoration: none;
|
||
}
|
||
.btn-lg,
|
||
.btn-group-lg > .btn {
|
||
padding: 10px 16px;
|
||
font-size: 17px;
|
||
line-height: 1.3333333;
|
||
border-radius: 3px;
|
||
}
|
||
.btn-sm,
|
||
.btn-group-sm > .btn {
|
||
padding: 5px 10px;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
border-radius: 1px;
|
||
}
|
||
.btn-xs,
|
||
.btn-group-xs > .btn {
|
||
padding: 1px 5px;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
border-radius: 1px;
|
||
}
|
||
.btn-block {
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
.btn-block + .btn-block {
|
||
margin-top: 5px;
|
||
}
|
||
input[type="submit"].btn-block,
|
||
input[type="reset"].btn-block,
|
||
input[type="button"].btn-block {
|
||
width: 100%;
|
||
}
|
||
.fade {
|
||
opacity: 0;
|
||
-webkit-transition: opacity 0.15s linear;
|
||
-o-transition: opacity 0.15s linear;
|
||
transition: opacity 0.15s linear;
|
||
}
|
||
.fade.in {
|
||
opacity: 1;
|
||
}
|
||
.collapse {
|
||
display: none;
|
||
}
|
||
.collapse.in {
|
||
display: block;
|
||
}
|
||
tr.collapse.in {
|
||
display: table-row;
|
||
}
|
||
tbody.collapse.in {
|
||
display: table-row-group;
|
||
}
|
||
.collapsing {
|
||
position: relative;
|
||
height: 0;
|
||
overflow: hidden;
|
||
-webkit-transition-property: height, visibility;
|
||
transition-property: height, visibility;
|
||
-webkit-transition-duration: 0.35s;
|
||
transition-duration: 0.35s;
|
||
-webkit-transition-timing-function: ease;
|
||
transition-timing-function: ease;
|
||
}
|
||
.caret {
|
||
display: inline-block;
|
||
width: 0;
|
||
height: 0;
|
||
margin-left: 2px;
|
||
vertical-align: middle;
|
||
border-top: 4px dashed;
|
||
border-top: 4px solid \9;
|
||
border-right: 4px solid transparent;
|
||
border-left: 4px solid transparent;
|
||
}
|
||
.dropup,
|
||
.dropdown {
|
||
position: relative;
|
||
}
|
||
.dropdown-toggle:focus {
|
||
outline: 0;
|
||
}
|
||
.dropdown-menu {
|
||
position: absolute;
|
||
top: 100%;
|
||
left: 0;
|
||
z-index: 1000;
|
||
display: none;
|
||
float: left;
|
||
min-width: 160px;
|
||
padding: 5px 0;
|
||
margin: 2px 0 0;
|
||
list-style: none;
|
||
font-size: 13px;
|
||
text-align: left;
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||
border-radius: 2px;
|
||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||
background-clip: padding-box;
|
||
}
|
||
.dropdown-menu.pull-right {
|
||
right: 0;
|
||
left: auto;
|
||
}
|
||
.dropdown-menu .divider {
|
||
height: 1px;
|
||
margin: 8px 0;
|
||
overflow: hidden;
|
||
background-color: #e5e5e5;
|
||
}
|
||
.dropdown-menu > li > a {
|
||
display: block;
|
||
padding: 3px 20px;
|
||
clear: both;
|
||
font-weight: normal;
|
||
line-height: 1.42857143;
|
||
color: #333333;
|
||
white-space: nowrap;
|
||
}
|
||
.dropdown-menu > li > a:hover,
|
||
.dropdown-menu > li > a:focus {
|
||
text-decoration: none;
|
||
color: #262626;
|
||
background-color: #f5f5f5;
|
||
}
|
||
.dropdown-menu > .active > a,
|
||
.dropdown-menu > .active > a:hover,
|
||
.dropdown-menu > .active > a:focus {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
outline: 0;
|
||
background-color: #337ab7;
|
||
}
|
||
.dropdown-menu > .disabled > a,
|
||
.dropdown-menu > .disabled > a:hover,
|
||
.dropdown-menu > .disabled > a:focus {
|
||
color: #777777;
|
||
}
|
||
.dropdown-menu > .disabled > a:hover,
|
||
.dropdown-menu > .disabled > a:focus {
|
||
text-decoration: none;
|
||
background-color: transparent;
|
||
background-image: none;
|
||
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||
cursor: not-allowed;
|
||
}
|
||
.open > .dropdown-menu {
|
||
display: block;
|
||
}
|
||
.open > a {
|
||
outline: 0;
|
||
}
|
||
.dropdown-menu-right {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
.dropdown-menu-left {
|
||
left: 0;
|
||
right: auto;
|
||
}
|
||
.dropdown-header {
|
||
display: block;
|
||
padding: 3px 20px;
|
||
font-size: 12px;
|
||
line-height: 1.42857143;
|
||
color: #777777;
|
||
white-space: nowrap;
|
||
}
|
||
.dropdown-backdrop {
|
||
position: fixed;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
top: 0;
|
||
z-index: 990;
|
||
}
|
||
.pull-right > .dropdown-menu {
|
||
right: 0;
|
||
left: auto;
|
||
}
|
||
.dropup .caret,
|
||
.navbar-fixed-bottom .dropdown .caret {
|
||
border-top: 0;
|
||
border-bottom: 4px dashed;
|
||
border-bottom: 4px solid \9;
|
||
content: "";
|
||
}
|
||
.dropup .dropdown-menu,
|
||
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
||
top: auto;
|
||
bottom: 100%;
|
||
margin-bottom: 2px;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-right .dropdown-menu {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
.navbar-right .dropdown-menu-left {
|
||
left: 0;
|
||
right: auto;
|
||
}
|
||
}
|
||
.btn-group,
|
||
.btn-group-vertical {
|
||
position: relative;
|
||
display: inline-block;
|
||
vertical-align: middle;
|
||
}
|
||
.btn-group > .btn,
|
||
.btn-group-vertical > .btn {
|
||
position: relative;
|
||
float: left;
|
||
}
|
||
.btn-group > .btn:hover,
|
||
.btn-group-vertical > .btn:hover,
|
||
.btn-group > .btn:focus,
|
||
.btn-group-vertical > .btn:focus,
|
||
.btn-group > .btn:active,
|
||
.btn-group-vertical > .btn:active,
|
||
.btn-group > .btn.active,
|
||
.btn-group-vertical > .btn.active {
|
||
z-index: 2;
|
||
}
|
||
.btn-group .btn + .btn,
|
||
.btn-group .btn + .btn-group,
|
||
.btn-group .btn-group + .btn,
|
||
.btn-group .btn-group + .btn-group {
|
||
margin-left: -1px;
|
||
}
|
||
.btn-toolbar {
|
||
margin-left: -5px;
|
||
}
|
||
.btn-toolbar .btn,
|
||
.btn-toolbar .btn-group,
|
||
.btn-toolbar .input-group {
|
||
float: left;
|
||
}
|
||
.btn-toolbar > .btn,
|
||
.btn-toolbar > .btn-group,
|
||
.btn-toolbar > .input-group {
|
||
margin-left: 5px;
|
||
}
|
||
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
||
border-radius: 0;
|
||
}
|
||
.btn-group > .btn:first-child {
|
||
margin-left: 0;
|
||
}
|
||
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.btn-group > .btn:last-child:not(:first-child),
|
||
.btn-group > .dropdown-toggle:not(:first-child) {
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.btn-group > .btn-group {
|
||
float: left;
|
||
}
|
||
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
||
border-radius: 0;
|
||
}
|
||
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
||
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.btn-group .dropdown-toggle:active,
|
||
.btn-group.open .dropdown-toggle {
|
||
outline: 0;
|
||
}
|
||
.btn-group > .btn + .dropdown-toggle {
|
||
padding-left: 8px;
|
||
padding-right: 8px;
|
||
}
|
||
.btn-group > .btn-lg + .dropdown-toggle {
|
||
padding-left: 12px;
|
||
padding-right: 12px;
|
||
}
|
||
.btn-group.open .dropdown-toggle {
|
||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||
}
|
||
.btn-group.open .dropdown-toggle.btn-link {
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
.btn .caret {
|
||
margin-left: 0;
|
||
}
|
||
.btn-lg .caret {
|
||
border-width: 5px 5px 0;
|
||
border-bottom-width: 0;
|
||
}
|
||
.dropup .btn-lg .caret {
|
||
border-width: 0 5px 5px;
|
||
}
|
||
.btn-group-vertical > .btn,
|
||
.btn-group-vertical > .btn-group,
|
||
.btn-group-vertical > .btn-group > .btn {
|
||
display: block;
|
||
float: none;
|
||
width: 100%;
|
||
max-width: 100%;
|
||
}
|
||
.btn-group-vertical > .btn-group > .btn {
|
||
float: none;
|
||
}
|
||
.btn-group-vertical > .btn + .btn,
|
||
.btn-group-vertical > .btn + .btn-group,
|
||
.btn-group-vertical > .btn-group + .btn,
|
||
.btn-group-vertical > .btn-group + .btn-group {
|
||
margin-top: -1px;
|
||
margin-left: 0;
|
||
}
|
||
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
||
border-radius: 0;
|
||
}
|
||
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
||
border-top-right-radius: 2px;
|
||
border-top-left-radius: 2px;
|
||
border-bottom-right-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
}
|
||
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
border-bottom-right-radius: 2px;
|
||
border-bottom-left-radius: 2px;
|
||
}
|
||
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
||
border-radius: 0;
|
||
}
|
||
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
||
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
||
border-bottom-right-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
}
|
||
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.btn-group-justified {
|
||
display: table;
|
||
width: 100%;
|
||
table-layout: fixed;
|
||
border-collapse: separate;
|
||
}
|
||
.btn-group-justified > .btn,
|
||
.btn-group-justified > .btn-group {
|
||
float: none;
|
||
display: table-cell;
|
||
width: 1%;
|
||
}
|
||
.btn-group-justified > .btn-group .btn {
|
||
width: 100%;
|
||
}
|
||
.btn-group-justified > .btn-group .dropdown-menu {
|
||
left: auto;
|
||
}
|
||
[data-toggle="buttons"] > .btn input[type="radio"],
|
||
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
|
||
[data-toggle="buttons"] > .btn input[type="checkbox"],
|
||
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
|
||
position: absolute;
|
||
clip: rect(0, 0, 0, 0);
|
||
pointer-events: none;
|
||
}
|
||
.input-group {
|
||
position: relative;
|
||
display: table;
|
||
border-collapse: separate;
|
||
}
|
||
.input-group[class*="col-"] {
|
||
float: none;
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
}
|
||
.input-group .form-control {
|
||
position: relative;
|
||
z-index: 2;
|
||
float: left;
|
||
width: 100%;
|
||
margin-bottom: 0;
|
||
}
|
||
.input-group .form-control:focus {
|
||
z-index: 3;
|
||
}
|
||
.input-group-lg > .form-control,
|
||
.input-group-lg > .input-group-addon,
|
||
.input-group-lg > .input-group-btn > .btn {
|
||
height: 45px;
|
||
padding: 10px 16px;
|
||
font-size: 17px;
|
||
line-height: 1.3333333;
|
||
border-radius: 3px;
|
||
}
|
||
select.input-group-lg > .form-control,
|
||
select.input-group-lg > .input-group-addon,
|
||
select.input-group-lg > .input-group-btn > .btn {
|
||
height: 45px;
|
||
line-height: 45px;
|
||
}
|
||
textarea.input-group-lg > .form-control,
|
||
textarea.input-group-lg > .input-group-addon,
|
||
textarea.input-group-lg > .input-group-btn > .btn,
|
||
select[multiple].input-group-lg > .form-control,
|
||
select[multiple].input-group-lg > .input-group-addon,
|
||
select[multiple].input-group-lg > .input-group-btn > .btn {
|
||
height: auto;
|
||
}
|
||
.input-group-sm > .form-control,
|
||
.input-group-sm > .input-group-addon,
|
||
.input-group-sm > .input-group-btn > .btn {
|
||
height: 30px;
|
||
padding: 5px 10px;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
border-radius: 1px;
|
||
}
|
||
select.input-group-sm > .form-control,
|
||
select.input-group-sm > .input-group-addon,
|
||
select.input-group-sm > .input-group-btn > .btn {
|
||
height: 30px;
|
||
line-height: 30px;
|
||
}
|
||
textarea.input-group-sm > .form-control,
|
||
textarea.input-group-sm > .input-group-addon,
|
||
textarea.input-group-sm > .input-group-btn > .btn,
|
||
select[multiple].input-group-sm > .form-control,
|
||
select[multiple].input-group-sm > .input-group-addon,
|
||
select[multiple].input-group-sm > .input-group-btn > .btn {
|
||
height: auto;
|
||
}
|
||
.input-group-addon,
|
||
.input-group-btn,
|
||
.input-group .form-control {
|
||
display: table-cell;
|
||
}
|
||
.input-group-addon:not(:first-child):not(:last-child),
|
||
.input-group-btn:not(:first-child):not(:last-child),
|
||
.input-group .form-control:not(:first-child):not(:last-child) {
|
||
border-radius: 0;
|
||
}
|
||
.input-group-addon,
|
||
.input-group-btn {
|
||
width: 1%;
|
||
white-space: nowrap;
|
||
vertical-align: middle;
|
||
}
|
||
.input-group-addon {
|
||
padding: 6px 12px;
|
||
font-size: 13px;
|
||
font-weight: normal;
|
||
line-height: 1;
|
||
color: #555555;
|
||
text-align: center;
|
||
background-color: #eeeeee;
|
||
border: 1px solid #ccc;
|
||
border-radius: 2px;
|
||
}
|
||
.input-group-addon.input-sm {
|
||
padding: 5px 10px;
|
||
font-size: 12px;
|
||
border-radius: 1px;
|
||
}
|
||
.input-group-addon.input-lg {
|
||
padding: 10px 16px;
|
||
font-size: 17px;
|
||
border-radius: 3px;
|
||
}
|
||
.input-group-addon input[type="radio"],
|
||
.input-group-addon input[type="checkbox"] {
|
||
margin-top: 0;
|
||
}
|
||
.input-group .form-control:first-child,
|
||
.input-group-addon:first-child,
|
||
.input-group-btn:first-child > .btn,
|
||
.input-group-btn:first-child > .btn-group > .btn,
|
||
.input-group-btn:first-child > .dropdown-toggle,
|
||
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
||
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.input-group-addon:first-child {
|
||
border-right: 0;
|
||
}
|
||
.input-group .form-control:last-child,
|
||
.input-group-addon:last-child,
|
||
.input-group-btn:last-child > .btn,
|
||
.input-group-btn:last-child > .btn-group > .btn,
|
||
.input-group-btn:last-child > .dropdown-toggle,
|
||
.input-group-btn:first-child > .btn:not(:first-child),
|
||
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.input-group-addon:last-child {
|
||
border-left: 0;
|
||
}
|
||
.input-group-btn {
|
||
position: relative;
|
||
font-size: 0;
|
||
white-space: nowrap;
|
||
}
|
||
.input-group-btn > .btn {
|
||
position: relative;
|
||
}
|
||
.input-group-btn > .btn + .btn {
|
||
margin-left: -1px;
|
||
}
|
||
.input-group-btn > .btn:hover,
|
||
.input-group-btn > .btn:focus,
|
||
.input-group-btn > .btn:active {
|
||
z-index: 2;
|
||
}
|
||
.input-group-btn:first-child > .btn,
|
||
.input-group-btn:first-child > .btn-group {
|
||
margin-right: -1px;
|
||
}
|
||
.input-group-btn:last-child > .btn,
|
||
.input-group-btn:last-child > .btn-group {
|
||
z-index: 2;
|
||
margin-left: -1px;
|
||
}
|
||
.nav {
|
||
margin-bottom: 0;
|
||
padding-left: 0;
|
||
list-style: none;
|
||
}
|
||
.nav > li {
|
||
position: relative;
|
||
display: block;
|
||
}
|
||
.nav > li > a {
|
||
position: relative;
|
||
display: block;
|
||
padding: 10px 15px;
|
||
}
|
||
.nav > li > a:hover,
|
||
.nav > li > a:focus {
|
||
text-decoration: none;
|
||
background-color: #eeeeee;
|
||
}
|
||
.nav > li.disabled > a {
|
||
color: #777777;
|
||
}
|
||
.nav > li.disabled > a:hover,
|
||
.nav > li.disabled > a:focus {
|
||
color: #777777;
|
||
text-decoration: none;
|
||
background-color: transparent;
|
||
cursor: not-allowed;
|
||
}
|
||
.nav .open > a,
|
||
.nav .open > a:hover,
|
||
.nav .open > a:focus {
|
||
background-color: #eeeeee;
|
||
border-color: #337ab7;
|
||
}
|
||
.nav .nav-divider {
|
||
height: 1px;
|
||
margin: 8px 0;
|
||
overflow: hidden;
|
||
background-color: #e5e5e5;
|
||
}
|
||
.nav > li > a > img {
|
||
max-width: none;
|
||
}
|
||
.nav-tabs {
|
||
border-bottom: 1px solid #ddd;
|
||
}
|
||
.nav-tabs > li {
|
||
float: left;
|
||
margin-bottom: -1px;
|
||
}
|
||
.nav-tabs > li > a {
|
||
margin-right: 2px;
|
||
line-height: 1.42857143;
|
||
border: 1px solid transparent;
|
||
border-radius: 2px 2px 0 0;
|
||
}
|
||
.nav-tabs > li > a:hover {
|
||
border-color: #eeeeee #eeeeee #ddd;
|
||
}
|
||
.nav-tabs > li.active > a,
|
||
.nav-tabs > li.active > a:hover,
|
||
.nav-tabs > li.active > a:focus {
|
||
color: #555555;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
border-bottom-color: transparent;
|
||
cursor: default;
|
||
}
|
||
.nav-tabs.nav-justified {
|
||
width: 100%;
|
||
border-bottom: 0;
|
||
}
|
||
.nav-tabs.nav-justified > li {
|
||
float: none;
|
||
}
|
||
.nav-tabs.nav-justified > li > a {
|
||
text-align: center;
|
||
margin-bottom: 5px;
|
||
}
|
||
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
|
||
top: auto;
|
||
left: auto;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.nav-tabs.nav-justified > li {
|
||
display: table-cell;
|
||
width: 1%;
|
||
}
|
||
.nav-tabs.nav-justified > li > a {
|
||
margin-bottom: 0;
|
||
}
|
||
}
|
||
.nav-tabs.nav-justified > li > a {
|
||
margin-right: 0;
|
||
border-radius: 2px;
|
||
}
|
||
.nav-tabs.nav-justified > .active > a,
|
||
.nav-tabs.nav-justified > .active > a:hover,
|
||
.nav-tabs.nav-justified > .active > a:focus {
|
||
border: 1px solid #ddd;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.nav-tabs.nav-justified > li > a {
|
||
border-bottom: 1px solid #ddd;
|
||
border-radius: 2px 2px 0 0;
|
||
}
|
||
.nav-tabs.nav-justified > .active > a,
|
||
.nav-tabs.nav-justified > .active > a:hover,
|
||
.nav-tabs.nav-justified > .active > a:focus {
|
||
border-bottom-color: #fff;
|
||
}
|
||
}
|
||
.nav-pills > li {
|
||
float: left;
|
||
}
|
||
.nav-pills > li > a {
|
||
border-radius: 2px;
|
||
}
|
||
.nav-pills > li + li {
|
||
margin-left: 2px;
|
||
}
|
||
.nav-pills > li.active > a,
|
||
.nav-pills > li.active > a:hover,
|
||
.nav-pills > li.active > a:focus {
|
||
color: #fff;
|
||
background-color: #337ab7;
|
||
}
|
||
.nav-stacked > li {
|
||
float: none;
|
||
}
|
||
.nav-stacked > li + li {
|
||
margin-top: 2px;
|
||
margin-left: 0;
|
||
}
|
||
.nav-justified {
|
||
width: 100%;
|
||
}
|
||
.nav-justified > li {
|
||
float: none;
|
||
}
|
||
.nav-justified > li > a {
|
||
text-align: center;
|
||
margin-bottom: 5px;
|
||
}
|
||
.nav-justified > .dropdown .dropdown-menu {
|
||
top: auto;
|
||
left: auto;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.nav-justified > li {
|
||
display: table-cell;
|
||
width: 1%;
|
||
}
|
||
.nav-justified > li > a {
|
||
margin-bottom: 0;
|
||
}
|
||
}
|
||
.nav-tabs-justified {
|
||
border-bottom: 0;
|
||
}
|
||
.nav-tabs-justified > li > a {
|
||
margin-right: 0;
|
||
border-radius: 2px;
|
||
}
|
||
.nav-tabs-justified > .active > a,
|
||
.nav-tabs-justified > .active > a:hover,
|
||
.nav-tabs-justified > .active > a:focus {
|
||
border: 1px solid #ddd;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.nav-tabs-justified > li > a {
|
||
border-bottom: 1px solid #ddd;
|
||
border-radius: 2px 2px 0 0;
|
||
}
|
||
.nav-tabs-justified > .active > a,
|
||
.nav-tabs-justified > .active > a:hover,
|
||
.nav-tabs-justified > .active > a:focus {
|
||
border-bottom-color: #fff;
|
||
}
|
||
}
|
||
.tab-content > .tab-pane {
|
||
display: none;
|
||
}
|
||
.tab-content > .active {
|
||
display: block;
|
||
}
|
||
.nav-tabs .dropdown-menu {
|
||
margin-top: -1px;
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.navbar {
|
||
position: relative;
|
||
min-height: 30px;
|
||
margin-bottom: 18px;
|
||
border: 1px solid transparent;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar {
|
||
border-radius: 2px;
|
||
}
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-header {
|
||
float: left;
|
||
}
|
||
}
|
||
.navbar-collapse {
|
||
overflow-x: visible;
|
||
padding-right: 0px;
|
||
padding-left: 0px;
|
||
border-top: 1px solid transparent;
|
||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
||
-webkit-overflow-scrolling: touch;
|
||
}
|
||
.navbar-collapse.in {
|
||
overflow-y: auto;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-collapse {
|
||
width: auto;
|
||
border-top: 0;
|
||
box-shadow: none;
|
||
}
|
||
.navbar-collapse.collapse {
|
||
display: block !important;
|
||
height: auto !important;
|
||
padding-bottom: 0;
|
||
overflow: visible !important;
|
||
}
|
||
.navbar-collapse.in {
|
||
overflow-y: visible;
|
||
}
|
||
.navbar-fixed-top .navbar-collapse,
|
||
.navbar-static-top .navbar-collapse,
|
||
.navbar-fixed-bottom .navbar-collapse {
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
}
|
||
}
|
||
.navbar-fixed-top .navbar-collapse,
|
||
.navbar-fixed-bottom .navbar-collapse {
|
||
max-height: 340px;
|
||
}
|
||
@media (max-device-width: 540px) and (orientation: landscape) {
|
||
.navbar-fixed-top .navbar-collapse,
|
||
.navbar-fixed-bottom .navbar-collapse {
|
||
max-height: 200px;
|
||
}
|
||
}
|
||
.container > .navbar-header,
|
||
.container-fluid > .navbar-header,
|
||
.container > .navbar-collapse,
|
||
.container-fluid > .navbar-collapse {
|
||
margin-right: 0px;
|
||
margin-left: 0px;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.container > .navbar-header,
|
||
.container-fluid > .navbar-header,
|
||
.container > .navbar-collapse,
|
||
.container-fluid > .navbar-collapse {
|
||
margin-right: 0;
|
||
margin-left: 0;
|
||
}
|
||
}
|
||
.navbar-static-top {
|
||
z-index: 1000;
|
||
border-width: 0 0 1px;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-static-top {
|
||
border-radius: 0;
|
||
}
|
||
}
|
||
.navbar-fixed-top,
|
||
.navbar-fixed-bottom {
|
||
position: fixed;
|
||
right: 0;
|
||
left: 0;
|
||
z-index: 1030;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-fixed-top,
|
||
.navbar-fixed-bottom {
|
||
border-radius: 0;
|
||
}
|
||
}
|
||
.navbar-fixed-top {
|
||
top: 0;
|
||
border-width: 0 0 1px;
|
||
}
|
||
.navbar-fixed-bottom {
|
||
bottom: 0;
|
||
margin-bottom: 0;
|
||
border-width: 1px 0 0;
|
||
}
|
||
.navbar-brand {
|
||
float: left;
|
||
padding: 6px 0px;
|
||
font-size: 17px;
|
||
line-height: 18px;
|
||
height: 30px;
|
||
}
|
||
.navbar-brand:hover,
|
||
.navbar-brand:focus {
|
||
text-decoration: none;
|
||
}
|
||
.navbar-brand > img {
|
||
display: block;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar > .container .navbar-brand,
|
||
.navbar > .container-fluid .navbar-brand {
|
||
margin-left: 0px;
|
||
}
|
||
}
|
||
.navbar-toggle {
|
||
position: relative;
|
||
float: right;
|
||
margin-right: 0px;
|
||
padding: 9px 10px;
|
||
margin-top: -2px;
|
||
margin-bottom: -2px;
|
||
background-color: transparent;
|
||
background-image: none;
|
||
border: 1px solid transparent;
|
||
border-radius: 2px;
|
||
}
|
||
.navbar-toggle:focus {
|
||
outline: 0;
|
||
}
|
||
.navbar-toggle .icon-bar {
|
||
display: block;
|
||
width: 22px;
|
||
height: 2px;
|
||
border-radius: 1px;
|
||
}
|
||
.navbar-toggle .icon-bar + .icon-bar {
|
||
margin-top: 4px;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-toggle {
|
||
display: none;
|
||
}
|
||
}
|
||
.navbar-nav {
|
||
margin: 3px 0px;
|
||
}
|
||
.navbar-nav > li > a {
|
||
padding-top: 10px;
|
||
padding-bottom: 10px;
|
||
line-height: 18px;
|
||
}
|
||
@media (max-width: 540px) {
|
||
.navbar-nav .open .dropdown-menu {
|
||
position: static;
|
||
float: none;
|
||
width: auto;
|
||
margin-top: 0;
|
||
background-color: transparent;
|
||
border: 0;
|
||
box-shadow: none;
|
||
}
|
||
.navbar-nav .open .dropdown-menu > li > a,
|
||
.navbar-nav .open .dropdown-menu .dropdown-header {
|
||
padding: 5px 15px 5px 25px;
|
||
}
|
||
.navbar-nav .open .dropdown-menu > li > a {
|
||
line-height: 18px;
|
||
}
|
||
.navbar-nav .open .dropdown-menu > li > a:hover,
|
||
.navbar-nav .open .dropdown-menu > li > a:focus {
|
||
background-image: none;
|
||
}
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-nav {
|
||
float: left;
|
||
margin: 0;
|
||
}
|
||
.navbar-nav > li {
|
||
float: left;
|
||
}
|
||
.navbar-nav > li > a {
|
||
padding-top: 6px;
|
||
padding-bottom: 6px;
|
||
}
|
||
}
|
||
.navbar-form {
|
||
margin-left: 0px;
|
||
margin-right: 0px;
|
||
padding: 10px 0px;
|
||
border-top: 1px solid transparent;
|
||
border-bottom: 1px solid transparent;
|
||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
||
margin-top: -1px;
|
||
margin-bottom: -1px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.navbar-form .form-group {
|
||
display: inline-block;
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
.navbar-form .form-control {
|
||
display: inline-block;
|
||
width: auto;
|
||
vertical-align: middle;
|
||
}
|
||
.navbar-form .form-control-static {
|
||
display: inline-block;
|
||
}
|
||
.navbar-form .input-group {
|
||
display: inline-table;
|
||
vertical-align: middle;
|
||
}
|
||
.navbar-form .input-group .input-group-addon,
|
||
.navbar-form .input-group .input-group-btn,
|
||
.navbar-form .input-group .form-control {
|
||
width: auto;
|
||
}
|
||
.navbar-form .input-group > .form-control {
|
||
width: 100%;
|
||
}
|
||
.navbar-form .control-label {
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
.navbar-form .radio,
|
||
.navbar-form .checkbox {
|
||
display: inline-block;
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
.navbar-form .radio label,
|
||
.navbar-form .checkbox label {
|
||
padding-left: 0;
|
||
}
|
||
.navbar-form .radio input[type="radio"],
|
||
.navbar-form .checkbox input[type="checkbox"] {
|
||
position: relative;
|
||
margin-left: 0;
|
||
}
|
||
.navbar-form .has-feedback .form-control-feedback {
|
||
top: 0;
|
||
}
|
||
}
|
||
@media (max-width: 540px) {
|
||
.navbar-form .form-group {
|
||
margin-bottom: 5px;
|
||
}
|
||
.navbar-form .form-group:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-form {
|
||
width: auto;
|
||
border: 0;
|
||
margin-left: 0;
|
||
margin-right: 0;
|
||
padding-top: 0;
|
||
padding-bottom: 0;
|
||
-webkit-box-shadow: none;
|
||
box-shadow: none;
|
||
}
|
||
}
|
||
.navbar-nav > li > .dropdown-menu {
|
||
margin-top: 0;
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
||
margin-bottom: 0;
|
||
border-top-right-radius: 2px;
|
||
border-top-left-radius: 2px;
|
||
border-bottom-right-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
}
|
||
.navbar-btn {
|
||
margin-top: -1px;
|
||
margin-bottom: -1px;
|
||
}
|
||
.navbar-btn.btn-sm {
|
||
margin-top: 0px;
|
||
margin-bottom: 0px;
|
||
}
|
||
.navbar-btn.btn-xs {
|
||
margin-top: 4px;
|
||
margin-bottom: 4px;
|
||
}
|
||
.navbar-text {
|
||
margin-top: 6px;
|
||
margin-bottom: 6px;
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-text {
|
||
float: left;
|
||
margin-left: 0px;
|
||
margin-right: 0px;
|
||
}
|
||
}
|
||
@media (min-width: 541px) {
|
||
.navbar-left {
|
||
float: left !important;
|
||
float: left;
|
||
}
|
||
.navbar-right {
|
||
float: right !important;
|
||
float: right;
|
||
margin-right: 0px;
|
||
}
|
||
.navbar-right ~ .navbar-right {
|
||
margin-right: 0;
|
||
}
|
||
}
|
||
.navbar-default {
|
||
background-color: #f8f8f8;
|
||
border-color: #e7e7e7;
|
||
}
|
||
.navbar-default .navbar-brand {
|
||
color: #777;
|
||
}
|
||
.navbar-default .navbar-brand:hover,
|
||
.navbar-default .navbar-brand:focus {
|
||
color: #5e5e5e;
|
||
background-color: transparent;
|
||
}
|
||
.navbar-default .navbar-text {
|
||
color: #777;
|
||
}
|
||
.navbar-default .navbar-nav > li > a {
|
||
color: #777;
|
||
}
|
||
.navbar-default .navbar-nav > li > a:hover,
|
||
.navbar-default .navbar-nav > li > a:focus {
|
||
color: #333;
|
||
background-color: transparent;
|
||
}
|
||
.navbar-default .navbar-nav > .active > a,
|
||
.navbar-default .navbar-nav > .active > a:hover,
|
||
.navbar-default .navbar-nav > .active > a:focus {
|
||
color: #555;
|
||
background-color: #e7e7e7;
|
||
}
|
||
.navbar-default .navbar-nav > .disabled > a,
|
||
.navbar-default .navbar-nav > .disabled > a:hover,
|
||
.navbar-default .navbar-nav > .disabled > a:focus {
|
||
color: #ccc;
|
||
background-color: transparent;
|
||
}
|
||
.navbar-default .navbar-toggle {
|
||
border-color: #ddd;
|
||
}
|
||
.navbar-default .navbar-toggle:hover,
|
||
.navbar-default .navbar-toggle:focus {
|
||
background-color: #ddd;
|
||
}
|
||
.navbar-default .navbar-toggle .icon-bar {
|
||
background-color: #888;
|
||
}
|
||
.navbar-default .navbar-collapse,
|
||
.navbar-default .navbar-form {
|
||
border-color: #e7e7e7;
|
||
}
|
||
.navbar-default .navbar-nav > .open > a,
|
||
.navbar-default .navbar-nav > .open > a:hover,
|
||
.navbar-default .navbar-nav > .open > a:focus {
|
||
background-color: #e7e7e7;
|
||
color: #555;
|
||
}
|
||
@media (max-width: 540px) {
|
||
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
||
color: #777;
|
||
}
|
||
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
||
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
||
color: #333;
|
||
background-color: transparent;
|
||
}
|
||
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
||
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
||
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
||
color: #555;
|
||
background-color: #e7e7e7;
|
||
}
|
||
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
||
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
||
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
||
color: #ccc;
|
||
background-color: transparent;
|
||
}
|
||
}
|
||
.navbar-default .navbar-link {
|
||
color: #777;
|
||
}
|
||
.navbar-default .navbar-link:hover {
|
||
color: #333;
|
||
}
|
||
.navbar-default .btn-link {
|
||
color: #777;
|
||
}
|
||
.navbar-default .btn-link:hover,
|
||
.navbar-default .btn-link:focus {
|
||
color: #333;
|
||
}
|
||
.navbar-default .btn-link[disabled]:hover,
|
||
fieldset[disabled] .navbar-default .btn-link:hover,
|
||
.navbar-default .btn-link[disabled]:focus,
|
||
fieldset[disabled] .navbar-default .btn-link:focus {
|
||
color: #ccc;
|
||
}
|
||
.navbar-inverse {
|
||
background-color: #222;
|
||
border-color: #080808;
|
||
}
|
||
.navbar-inverse .navbar-brand {
|
||
color: #9d9d9d;
|
||
}
|
||
.navbar-inverse .navbar-brand:hover,
|
||
.navbar-inverse .navbar-brand:focus {
|
||
color: #fff;
|
||
background-color: transparent;
|
||
}
|
||
.navbar-inverse .navbar-text {
|
||
color: #9d9d9d;
|
||
}
|
||
.navbar-inverse .navbar-nav > li > a {
|
||
color: #9d9d9d;
|
||
}
|
||
.navbar-inverse .navbar-nav > li > a:hover,
|
||
.navbar-inverse .navbar-nav > li > a:focus {
|
||
color: #fff;
|
||
background-color: transparent;
|
||
}
|
||
.navbar-inverse .navbar-nav > .active > a,
|
||
.navbar-inverse .navbar-nav > .active > a:hover,
|
||
.navbar-inverse .navbar-nav > .active > a:focus {
|
||
color: #fff;
|
||
background-color: #080808;
|
||
}
|
||
.navbar-inverse .navbar-nav > .disabled > a,
|
||
.navbar-inverse .navbar-nav > .disabled > a:hover,
|
||
.navbar-inverse .navbar-nav > .disabled > a:focus {
|
||
color: #444;
|
||
background-color: transparent;
|
||
}
|
||
.navbar-inverse .navbar-toggle {
|
||
border-color: #333;
|
||
}
|
||
.navbar-inverse .navbar-toggle:hover,
|
||
.navbar-inverse .navbar-toggle:focus {
|
||
background-color: #333;
|
||
}
|
||
.navbar-inverse .navbar-toggle .icon-bar {
|
||
background-color: #fff;
|
||
}
|
||
.navbar-inverse .navbar-collapse,
|
||
.navbar-inverse .navbar-form {
|
||
border-color: #101010;
|
||
}
|
||
.navbar-inverse .navbar-nav > .open > a,
|
||
.navbar-inverse .navbar-nav > .open > a:hover,
|
||
.navbar-inverse .navbar-nav > .open > a:focus {
|
||
background-color: #080808;
|
||
color: #fff;
|
||
}
|
||
@media (max-width: 540px) {
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
||
border-color: #080808;
|
||
}
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
|
||
background-color: #080808;
|
||
}
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
||
color: #9d9d9d;
|
||
}
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
||
color: #fff;
|
||
background-color: transparent;
|
||
}
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
||
color: #fff;
|
||
background-color: #080808;
|
||
}
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
||
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
||
color: #444;
|
||
background-color: transparent;
|
||
}
|
||
}
|
||
.navbar-inverse .navbar-link {
|
||
color: #9d9d9d;
|
||
}
|
||
.navbar-inverse .navbar-link:hover {
|
||
color: #fff;
|
||
}
|
||
.navbar-inverse .btn-link {
|
||
color: #9d9d9d;
|
||
}
|
||
.navbar-inverse .btn-link:hover,
|
||
.navbar-inverse .btn-link:focus {
|
||
color: #fff;
|
||
}
|
||
.navbar-inverse .btn-link[disabled]:hover,
|
||
fieldset[disabled] .navbar-inverse .btn-link:hover,
|
||
.navbar-inverse .btn-link[disabled]:focus,
|
||
fieldset[disabled] .navbar-inverse .btn-link:focus {
|
||
color: #444;
|
||
}
|
||
.breadcrumb {
|
||
padding: 8px 15px;
|
||
margin-bottom: 18px;
|
||
list-style: none;
|
||
background-color: #f5f5f5;
|
||
border-radius: 2px;
|
||
}
|
||
.breadcrumb > li {
|
||
display: inline-block;
|
||
}
|
||
.breadcrumb > li + li:before {
|
||
content: "/\00a0";
|
||
padding: 0 5px;
|
||
color: #5e5e5e;
|
||
}
|
||
.breadcrumb > .active {
|
||
color: #777777;
|
||
}
|
||
.pagination {
|
||
display: inline-block;
|
||
padding-left: 0;
|
||
margin: 18px 0;
|
||
border-radius: 2px;
|
||
}
|
||
.pagination > li {
|
||
display: inline;
|
||
}
|
||
.pagination > li > a,
|
||
.pagination > li > span {
|
||
position: relative;
|
||
float: left;
|
||
padding: 6px 12px;
|
||
line-height: 1.42857143;
|
||
text-decoration: none;
|
||
color: #337ab7;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
margin-left: -1px;
|
||
}
|
||
.pagination > li:first-child > a,
|
||
.pagination > li:first-child > span {
|
||
margin-left: 0;
|
||
border-bottom-left-radius: 2px;
|
||
border-top-left-radius: 2px;
|
||
}
|
||
.pagination > li:last-child > a,
|
||
.pagination > li:last-child > span {
|
||
border-bottom-right-radius: 2px;
|
||
border-top-right-radius: 2px;
|
||
}
|
||
.pagination > li > a:hover,
|
||
.pagination > li > span:hover,
|
||
.pagination > li > a:focus,
|
||
.pagination > li > span:focus {
|
||
z-index: 2;
|
||
color: #23527c;
|
||
background-color: #eeeeee;
|
||
border-color: #ddd;
|
||
}
|
||
.pagination > .active > a,
|
||
.pagination > .active > span,
|
||
.pagination > .active > a:hover,
|
||
.pagination > .active > span:hover,
|
||
.pagination > .active > a:focus,
|
||
.pagination > .active > span:focus {
|
||
z-index: 3;
|
||
color: #fff;
|
||
background-color: #337ab7;
|
||
border-color: #337ab7;
|
||
cursor: default;
|
||
}
|
||
.pagination > .disabled > span,
|
||
.pagination > .disabled > span:hover,
|
||
.pagination > .disabled > span:focus,
|
||
.pagination > .disabled > a,
|
||
.pagination > .disabled > a:hover,
|
||
.pagination > .disabled > a:focus {
|
||
color: #777777;
|
||
background-color: #fff;
|
||
border-color: #ddd;
|
||
cursor: not-allowed;
|
||
}
|
||
.pagination-lg > li > a,
|
||
.pagination-lg > li > span {
|
||
padding: 10px 16px;
|
||
font-size: 17px;
|
||
line-height: 1.3333333;
|
||
}
|
||
.pagination-lg > li:first-child > a,
|
||
.pagination-lg > li:first-child > span {
|
||
border-bottom-left-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
}
|
||
.pagination-lg > li:last-child > a,
|
||
.pagination-lg > li:last-child > span {
|
||
border-bottom-right-radius: 3px;
|
||
border-top-right-radius: 3px;
|
||
}
|
||
.pagination-sm > li > a,
|
||
.pagination-sm > li > span {
|
||
padding: 5px 10px;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
}
|
||
.pagination-sm > li:first-child > a,
|
||
.pagination-sm > li:first-child > span {
|
||
border-bottom-left-radius: 1px;
|
||
border-top-left-radius: 1px;
|
||
}
|
||
.pagination-sm > li:last-child > a,
|
||
.pagination-sm > li:last-child > span {
|
||
border-bottom-right-radius: 1px;
|
||
border-top-right-radius: 1px;
|
||
}
|
||
.pager {
|
||
padding-left: 0;
|
||
margin: 18px 0;
|
||
list-style: none;
|
||
text-align: center;
|
||
}
|
||
.pager li {
|
||
display: inline;
|
||
}
|
||
.pager li > a,
|
||
.pager li > span {
|
||
display: inline-block;
|
||
padding: 5px 14px;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
border-radius: 15px;
|
||
}
|
||
.pager li > a:hover,
|
||
.pager li > a:focus {
|
||
text-decoration: none;
|
||
background-color: #eeeeee;
|
||
}
|
||
.pager .next > a,
|
||
.pager .next > span {
|
||
float: right;
|
||
}
|
||
.pager .previous > a,
|
||
.pager .previous > span {
|
||
float: left;
|
||
}
|
||
.pager .disabled > a,
|
||
.pager .disabled > a:hover,
|
||
.pager .disabled > a:focus,
|
||
.pager .disabled > span {
|
||
color: #777777;
|
||
background-color: #fff;
|
||
cursor: not-allowed;
|
||
}
|
||
.label {
|
||
display: inline;
|
||
padding: .2em .6em .3em;
|
||
font-size: 75%;
|
||
font-weight: bold;
|
||
line-height: 1;
|
||
color: #fff;
|
||
text-align: center;
|
||
white-space: nowrap;
|
||
vertical-align: baseline;
|
||
border-radius: .25em;
|
||
}
|
||
a.label:hover,
|
||
a.label:focus {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
cursor: pointer;
|
||
}
|
||
.label:empty {
|
||
display: none;
|
||
}
|
||
.btn .label {
|
||
position: relative;
|
||
top: -1px;
|
||
}
|
||
.label-default {
|
||
background-color: #777777;
|
||
}
|
||
.label-default[href]:hover,
|
||
.label-default[href]:focus {
|
||
background-color: #5e5e5e;
|
||
}
|
||
.label-primary {
|
||
background-color: #337ab7;
|
||
}
|
||
.label-primary[href]:hover,
|
||
.label-primary[href]:focus {
|
||
background-color: #286090;
|
||
}
|
||
.label-success {
|
||
background-color: #5cb85c;
|
||
}
|
||
.label-success[href]:hover,
|
||
.label-success[href]:focus {
|
||
background-color: #449d44;
|
||
}
|
||
.label-info {
|
||
background-color: #5bc0de;
|
||
}
|
||
.label-info[href]:hover,
|
||
.label-info[href]:focus {
|
||
background-color: #31b0d5;
|
||
}
|
||
.label-warning {
|
||
background-color: #f0ad4e;
|
||
}
|
||
.label-warning[href]:hover,
|
||
.label-warning[href]:focus {
|
||
background-color: #ec971f;
|
||
}
|
||
.label-danger {
|
||
background-color: #d9534f;
|
||
}
|
||
.label-danger[href]:hover,
|
||
.label-danger[href]:focus {
|
||
background-color: #c9302c;
|
||
}
|
||
.badge {
|
||
display: inline-block;
|
||
min-width: 10px;
|
||
padding: 3px 7px;
|
||
font-size: 12px;
|
||
font-weight: bold;
|
||
color: #fff;
|
||
line-height: 1;
|
||
vertical-align: middle;
|
||
white-space: nowrap;
|
||
text-align: center;
|
||
background-color: #777777;
|
||
border-radius: 10px;
|
||
}
|
||
.badge:empty {
|
||
display: none;
|
||
}
|
||
.btn .badge {
|
||
position: relative;
|
||
top: -1px;
|
||
}
|
||
.btn-xs .badge,
|
||
.btn-group-xs > .btn .badge {
|
||
top: 0;
|
||
padding: 1px 5px;
|
||
}
|
||
a.badge:hover,
|
||
a.badge:focus {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
cursor: pointer;
|
||
}
|
||
.list-group-item.active > .badge,
|
||
.nav-pills > .active > a > .badge {
|
||
color: #337ab7;
|
||
background-color: #fff;
|
||
}
|
||
.list-group-item > .badge {
|
||
float: right;
|
||
}
|
||
.list-group-item > .badge + .badge {
|
||
margin-right: 5px;
|
||
}
|
||
.nav-pills > li > a > .badge {
|
||
margin-left: 3px;
|
||
}
|
||
.jumbotron {
|
||
padding-top: 30px;
|
||
padding-bottom: 30px;
|
||
margin-bottom: 30px;
|
||
color: inherit;
|
||
background-color: #eeeeee;
|
||
}
|
||
.jumbotron h1,
|
||
.jumbotron .h1 {
|
||
color: inherit;
|
||
}
|
||
.jumbotron p {
|
||
margin-bottom: 15px;
|
||
font-size: 20px;
|
||
font-weight: 200;
|
||
}
|
||
.jumbotron > hr {
|
||
border-top-color: #d5d5d5;
|
||
}
|
||
.container .jumbotron,
|
||
.container-fluid .jumbotron {
|
||
border-radius: 3px;
|
||
padding-left: 0px;
|
||
padding-right: 0px;
|
||
}
|
||
.jumbotron .container {
|
||
max-width: 100%;
|
||
}
|
||
@media screen and (min-width: 768px) {
|
||
.jumbotron {
|
||
padding-top: 48px;
|
||
padding-bottom: 48px;
|
||
}
|
||
.container .jumbotron,
|
||
.container-fluid .jumbotron {
|
||
padding-left: 60px;
|
||
padding-right: 60px;
|
||
}
|
||
.jumbotron h1,
|
||
.jumbotron .h1 {
|
||
font-size: 59px;
|
||
}
|
||
}
|
||
.thumbnail {
|
||
display: block;
|
||
padding: 4px;
|
||
margin-bottom: 18px;
|
||
line-height: 1.42857143;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
border-radius: 2px;
|
||
-webkit-transition: border 0.2s ease-in-out;
|
||
-o-transition: border 0.2s ease-in-out;
|
||
transition: border 0.2s ease-in-out;
|
||
}
|
||
.thumbnail > img,
|
||
.thumbnail a > img {
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
a.thumbnail:hover,
|
||
a.thumbnail:focus,
|
||
a.thumbnail.active {
|
||
border-color: #337ab7;
|
||
}
|
||
.thumbnail .caption {
|
||
padding: 9px;
|
||
color: #000;
|
||
}
|
||
.alert {
|
||
padding: 15px;
|
||
margin-bottom: 18px;
|
||
border: 1px solid transparent;
|
||
border-radius: 2px;
|
||
}
|
||
.alert h4 {
|
||
margin-top: 0;
|
||
color: inherit;
|
||
}
|
||
.alert .alert-link {
|
||
font-weight: bold;
|
||
}
|
||
.alert > p,
|
||
.alert > ul {
|
||
margin-bottom: 0;
|
||
}
|
||
.alert > p + p {
|
||
margin-top: 5px;
|
||
}
|
||
.alert-dismissable,
|
||
.alert-dismissible {
|
||
padding-right: 35px;
|
||
}
|
||
.alert-dismissable .close,
|
||
.alert-dismissible .close {
|
||
position: relative;
|
||
top: -2px;
|
||
right: -21px;
|
||
color: inherit;
|
||
}
|
||
.alert-success {
|
||
background-color: #dff0d8;
|
||
border-color: #d6e9c6;
|
||
color: #3c763d;
|
||
}
|
||
.alert-success hr {
|
||
border-top-color: #c9e2b3;
|
||
}
|
||
.alert-success .alert-link {
|
||
color: #2b542c;
|
||
}
|
||
.alert-info {
|
||
background-color: #d9edf7;
|
||
border-color: #bce8f1;
|
||
color: #31708f;
|
||
}
|
||
.alert-info hr {
|
||
border-top-color: #a6e1ec;
|
||
}
|
||
.alert-info .alert-link {
|
||
color: #245269;
|
||
}
|
||
.alert-warning {
|
||
background-color: #fcf8e3;
|
||
border-color: #faebcc;
|
||
color: #8a6d3b;
|
||
}
|
||
.alert-warning hr {
|
||
border-top-color: #f7e1b5;
|
||
}
|
||
.alert-warning .alert-link {
|
||
color: #66512c;
|
||
}
|
||
.alert-danger {
|
||
background-color: #f2dede;
|
||
border-color: #ebccd1;
|
||
color: #a94442;
|
||
}
|
||
.alert-danger hr {
|
||
border-top-color: #e4b9c0;
|
||
}
|
||
.alert-danger .alert-link {
|
||
color: #843534;
|
||
}
|
||
@-webkit-keyframes progress-bar-stripes {
|
||
from {
|
||
background-position: 40px 0;
|
||
}
|
||
to {
|
||
background-position: 0 0;
|
||
}
|
||
}
|
||
@keyframes progress-bar-stripes {
|
||
from {
|
||
background-position: 40px 0;
|
||
}
|
||
to {
|
||
background-position: 0 0;
|
||
}
|
||
}
|
||
.progress {
|
||
overflow: hidden;
|
||
height: 18px;
|
||
margin-bottom: 18px;
|
||
background-color: #f5f5f5;
|
||
border-radius: 2px;
|
||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||
}
|
||
.progress-bar {
|
||
float: left;
|
||
width: 0%;
|
||
height: 100%;
|
||
font-size: 12px;
|
||
line-height: 18px;
|
||
color: #fff;
|
||
text-align: center;
|
||
background-color: #337ab7;
|
||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
||
-webkit-transition: width 0.6s ease;
|
||
-o-transition: width 0.6s ease;
|
||
transition: width 0.6s ease;
|
||
}
|
||
.progress-striped .progress-bar,
|
||
.progress-bar-striped {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-size: 40px 40px;
|
||
}
|
||
.progress.active .progress-bar,
|
||
.progress-bar.active {
|
||
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
||
-o-animation: progress-bar-stripes 2s linear infinite;
|
||
animation: progress-bar-stripes 2s linear infinite;
|
||
}
|
||
.progress-bar-success {
|
||
background-color: #5cb85c;
|
||
}
|
||
.progress-striped .progress-bar-success {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
.progress-bar-info {
|
||
background-color: #5bc0de;
|
||
}
|
||
.progress-striped .progress-bar-info {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
.progress-bar-warning {
|
||
background-color: #f0ad4e;
|
||
}
|
||
.progress-striped .progress-bar-warning {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
.progress-bar-danger {
|
||
background-color: #d9534f;
|
||
}
|
||
.progress-striped .progress-bar-danger {
|
||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
.media {
|
||
margin-top: 15px;
|
||
}
|
||
.media:first-child {
|
||
margin-top: 0;
|
||
}
|
||
.media,
|
||
.media-body {
|
||
zoom: 1;
|
||
overflow: hidden;
|
||
}
|
||
.media-body {
|
||
width: 10000px;
|
||
}
|
||
.media-object {
|
||
display: block;
|
||
}
|
||
.media-object.img-thumbnail {
|
||
max-width: none;
|
||
}
|
||
.media-right,
|
||
.media > .pull-right {
|
||
padding-left: 10px;
|
||
}
|
||
.media-left,
|
||
.media > .pull-left {
|
||
padding-right: 10px;
|
||
}
|
||
.media-left,
|
||
.media-right,
|
||
.media-body {
|
||
display: table-cell;
|
||
vertical-align: top;
|
||
}
|
||
.media-middle {
|
||
vertical-align: middle;
|
||
}
|
||
.media-bottom {
|
||
vertical-align: bottom;
|
||
}
|
||
.media-heading {
|
||
margin-top: 0;
|
||
margin-bottom: 5px;
|
||
}
|
||
.media-list {
|
||
padding-left: 0;
|
||
list-style: none;
|
||
}
|
||
.list-group {
|
||
margin-bottom: 20px;
|
||
padding-left: 0;
|
||
}
|
||
.list-group-item {
|
||
position: relative;
|
||
display: block;
|
||
padding: 10px 15px;
|
||
margin-bottom: -1px;
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
}
|
||
.list-group-item:first-child {
|
||
border-top-right-radius: 2px;
|
||
border-top-left-radius: 2px;
|
||
}
|
||
.list-group-item:last-child {
|
||
margin-bottom: 0;
|
||
border-bottom-right-radius: 2px;
|
||
border-bottom-left-radius: 2px;
|
||
}
|
||
a.list-group-item,
|
||
button.list-group-item {
|
||
color: #555;
|
||
}
|
||
a.list-group-item .list-group-item-heading,
|
||
button.list-group-item .list-group-item-heading {
|
||
color: #333;
|
||
}
|
||
a.list-group-item:hover,
|
||
button.list-group-item:hover,
|
||
a.list-group-item:focus,
|
||
button.list-group-item:focus {
|
||
text-decoration: none;
|
||
color: #555;
|
||
background-color: #f5f5f5;
|
||
}
|
||
button.list-group-item {
|
||
width: 100%;
|
||
text-align: left;
|
||
}
|
||
.list-group-item.disabled,
|
||
.list-group-item.disabled:hover,
|
||
.list-group-item.disabled:focus {
|
||
background-color: #eeeeee;
|
||
color: #777777;
|
||
cursor: not-allowed;
|
||
}
|
||
.list-group-item.disabled .list-group-item-heading,
|
||
.list-group-item.disabled:hover .list-group-item-heading,
|
||
.list-group-item.disabled:focus .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
.list-group-item.disabled .list-group-item-text,
|
||
.list-group-item.disabled:hover .list-group-item-text,
|
||
.list-group-item.disabled:focus .list-group-item-text {
|
||
color: #777777;
|
||
}
|
||
.list-group-item.active,
|
||
.list-group-item.active:hover,
|
||
.list-group-item.active:focus {
|
||
z-index: 2;
|
||
color: #fff;
|
||
background-color: #337ab7;
|
||
border-color: #337ab7;
|
||
}
|
||
.list-group-item.active .list-group-item-heading,
|
||
.list-group-item.active:hover .list-group-item-heading,
|
||
.list-group-item.active:focus .list-group-item-heading,
|
||
.list-group-item.active .list-group-item-heading > small,
|
||
.list-group-item.active:hover .list-group-item-heading > small,
|
||
.list-group-item.active:focus .list-group-item-heading > small,
|
||
.list-group-item.active .list-group-item-heading > .small,
|
||
.list-group-item.active:hover .list-group-item-heading > .small,
|
||
.list-group-item.active:focus .list-group-item-heading > .small {
|
||
color: inherit;
|
||
}
|
||
.list-group-item.active .list-group-item-text,
|
||
.list-group-item.active:hover .list-group-item-text,
|
||
.list-group-item.active:focus .list-group-item-text {
|
||
color: #c7ddef;
|
||
}
|
||
.list-group-item-success {
|
||
color: #3c763d;
|
||
background-color: #dff0d8;
|
||
}
|
||
a.list-group-item-success,
|
||
button.list-group-item-success {
|
||
color: #3c763d;
|
||
}
|
||
a.list-group-item-success .list-group-item-heading,
|
||
button.list-group-item-success .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
a.list-group-item-success:hover,
|
||
button.list-group-item-success:hover,
|
||
a.list-group-item-success:focus,
|
||
button.list-group-item-success:focus {
|
||
color: #3c763d;
|
||
background-color: #d0e9c6;
|
||
}
|
||
a.list-group-item-success.active,
|
||
button.list-group-item-success.active,
|
||
a.list-group-item-success.active:hover,
|
||
button.list-group-item-success.active:hover,
|
||
a.list-group-item-success.active:focus,
|
||
button.list-group-item-success.active:focus {
|
||
color: #fff;
|
||
background-color: #3c763d;
|
||
border-color: #3c763d;
|
||
}
|
||
.list-group-item-info {
|
||
color: #31708f;
|
||
background-color: #d9edf7;
|
||
}
|
||
a.list-group-item-info,
|
||
button.list-group-item-info {
|
||
color: #31708f;
|
||
}
|
||
a.list-group-item-info .list-group-item-heading,
|
||
button.list-group-item-info .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
a.list-group-item-info:hover,
|
||
button.list-group-item-info:hover,
|
||
a.list-group-item-info:focus,
|
||
button.list-group-item-info:focus {
|
||
color: #31708f;
|
||
background-color: #c4e3f3;
|
||
}
|
||
a.list-group-item-info.active,
|
||
button.list-group-item-info.active,
|
||
a.list-group-item-info.active:hover,
|
||
button.list-group-item-info.active:hover,
|
||
a.list-group-item-info.active:focus,
|
||
button.list-group-item-info.active:focus {
|
||
color: #fff;
|
||
background-color: #31708f;
|
||
border-color: #31708f;
|
||
}
|
||
.list-group-item-warning {
|
||
color: #8a6d3b;
|
||
background-color: #fcf8e3;
|
||
}
|
||
a.list-group-item-warning,
|
||
button.list-group-item-warning {
|
||
color: #8a6d3b;
|
||
}
|
||
a.list-group-item-warning .list-group-item-heading,
|
||
button.list-group-item-warning .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
a.list-group-item-warning:hover,
|
||
button.list-group-item-warning:hover,
|
||
a.list-group-item-warning:focus,
|
||
button.list-group-item-warning:focus {
|
||
color: #8a6d3b;
|
||
background-color: #faf2cc;
|
||
}
|
||
a.list-group-item-warning.active,
|
||
button.list-group-item-warning.active,
|
||
a.list-group-item-warning.active:hover,
|
||
button.list-group-item-warning.active:hover,
|
||
a.list-group-item-warning.active:focus,
|
||
button.list-group-item-warning.active:focus {
|
||
color: #fff;
|
||
background-color: #8a6d3b;
|
||
border-color: #8a6d3b;
|
||
}
|
||
.list-group-item-danger {
|
||
color: #a94442;
|
||
background-color: #f2dede;
|
||
}
|
||
a.list-group-item-danger,
|
||
button.list-group-item-danger {
|
||
color: #a94442;
|
||
}
|
||
a.list-group-item-danger .list-group-item-heading,
|
||
button.list-group-item-danger .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
a.list-group-item-danger:hover,
|
||
button.list-group-item-danger:hover,
|
||
a.list-group-item-danger:focus,
|
||
button.list-group-item-danger:focus {
|
||
color: #a94442;
|
||
background-color: #ebcccc;
|
||
}
|
||
a.list-group-item-danger.active,
|
||
button.list-group-item-danger.active,
|
||
a.list-group-item-danger.active:hover,
|
||
button.list-group-item-danger.active:hover,
|
||
a.list-group-item-danger.active:focus,
|
||
button.list-group-item-danger.active:focus {
|
||
color: #fff;
|
||
background-color: #a94442;
|
||
border-color: #a94442;
|
||
}
|
||
.list-group-item-heading {
|
||
margin-top: 0;
|
||
margin-bottom: 5px;
|
||
}
|
||
.list-group-item-text {
|
||
margin-bottom: 0;
|
||
line-height: 1.3;
|
||
}
|
||
.panel {
|
||
margin-bottom: 18px;
|
||
background-color: #fff;
|
||
border: 1px solid transparent;
|
||
border-radius: 2px;
|
||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
}
|
||
.panel-body {
|
||
padding: 15px;
|
||
}
|
||
.panel-heading {
|
||
padding: 10px 15px;
|
||
border-bottom: 1px solid transparent;
|
||
border-top-right-radius: 1px;
|
||
border-top-left-radius: 1px;
|
||
}
|
||
.panel-heading > .dropdown .dropdown-toggle {
|
||
color: inherit;
|
||
}
|
||
.panel-title {
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
font-size: 15px;
|
||
color: inherit;
|
||
}
|
||
.panel-title > a,
|
||
.panel-title > small,
|
||
.panel-title > .small,
|
||
.panel-title > small > a,
|
||
.panel-title > .small > a {
|
||
color: inherit;
|
||
}
|
||
.panel-footer {
|
||
padding: 10px 15px;
|
||
background-color: #f5f5f5;
|
||
border-top: 1px solid #ddd;
|
||
border-bottom-right-radius: 1px;
|
||
border-bottom-left-radius: 1px;
|
||
}
|
||
.panel > .list-group,
|
||
.panel > .panel-collapse > .list-group {
|
||
margin-bottom: 0;
|
||
}
|
||
.panel > .list-group .list-group-item,
|
||
.panel > .panel-collapse > .list-group .list-group-item {
|
||
border-width: 1px 0;
|
||
border-radius: 0;
|
||
}
|
||
.panel > .list-group:first-child .list-group-item:first-child,
|
||
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
|
||
border-top: 0;
|
||
border-top-right-radius: 1px;
|
||
border-top-left-radius: 1px;
|
||
}
|
||
.panel > .list-group:last-child .list-group-item:last-child,
|
||
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
|
||
border-bottom: 0;
|
||
border-bottom-right-radius: 1px;
|
||
border-bottom-left-radius: 1px;
|
||
}
|
||
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
|
||
border-top-right-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.panel-heading + .list-group .list-group-item:first-child {
|
||
border-top-width: 0;
|
||
}
|
||
.list-group + .panel-footer {
|
||
border-top-width: 0;
|
||
}
|
||
.panel > .table,
|
||
.panel > .table-responsive > .table,
|
||
.panel > .panel-collapse > .table {
|
||
margin-bottom: 0;
|
||
}
|
||
.panel > .table caption,
|
||
.panel > .table-responsive > .table caption,
|
||
.panel > .panel-collapse > .table caption {
|
||
padding-left: 15px;
|
||
padding-right: 15px;
|
||
}
|
||
.panel > .table:first-child,
|
||
.panel > .table-responsive:first-child > .table:first-child {
|
||
border-top-right-radius: 1px;
|
||
border-top-left-radius: 1px;
|
||
}
|
||
.panel > .table:first-child > thead:first-child > tr:first-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
|
||
.panel > .table:first-child > tbody:first-child > tr:first-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
|
||
border-top-left-radius: 1px;
|
||
border-top-right-radius: 1px;
|
||
}
|
||
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
||
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
||
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
||
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
|
||
border-top-left-radius: 1px;
|
||
}
|
||
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
||
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
||
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
||
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
||
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
|
||
border-top-right-radius: 1px;
|
||
}
|
||
.panel > .table:last-child,
|
||
.panel > .table-responsive:last-child > .table:last-child {
|
||
border-bottom-right-radius: 1px;
|
||
border-bottom-left-radius: 1px;
|
||
}
|
||
.panel > .table:last-child > tbody:last-child > tr:last-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
|
||
.panel > .table:last-child > tfoot:last-child > tr:last-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
|
||
border-bottom-left-radius: 1px;
|
||
border-bottom-right-radius: 1px;
|
||
}
|
||
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
||
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
||
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
||
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
|
||
border-bottom-left-radius: 1px;
|
||
}
|
||
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
||
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
||
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
||
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
||
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
|
||
border-bottom-right-radius: 1px;
|
||
}
|
||
.panel > .panel-body + .table,
|
||
.panel > .panel-body + .table-responsive,
|
||
.panel > .table + .panel-body,
|
||
.panel > .table-responsive + .panel-body {
|
||
border-top: 1px solid #ddd;
|
||
}
|
||
.panel > .table > tbody:first-child > tr:first-child th,
|
||
.panel > .table > tbody:first-child > tr:first-child td {
|
||
border-top: 0;
|
||
}
|
||
.panel > .table-bordered,
|
||
.panel > .table-responsive > .table-bordered {
|
||
border: 0;
|
||
}
|
||
.panel > .table-bordered > thead > tr > th:first-child,
|
||
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
|
||
.panel > .table-bordered > tbody > tr > th:first-child,
|
||
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
||
.panel > .table-bordered > tfoot > tr > th:first-child,
|
||
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
||
.panel > .table-bordered > thead > tr > td:first-child,
|
||
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
|
||
.panel > .table-bordered > tbody > tr > td:first-child,
|
||
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
||
.panel > .table-bordered > tfoot > tr > td:first-child,
|
||
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||
border-left: 0;
|
||
}
|
||
.panel > .table-bordered > thead > tr > th:last-child,
|
||
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
|
||
.panel > .table-bordered > tbody > tr > th:last-child,
|
||
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
||
.panel > .table-bordered > tfoot > tr > th:last-child,
|
||
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
||
.panel > .table-bordered > thead > tr > td:last-child,
|
||
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
|
||
.panel > .table-bordered > tbody > tr > td:last-child,
|
||
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
||
.panel > .table-bordered > tfoot > tr > td:last-child,
|
||
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||
border-right: 0;
|
||
}
|
||
.panel > .table-bordered > thead > tr:first-child > td,
|
||
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
||
.panel > .table-bordered > tbody > tr:first-child > td,
|
||
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
||
.panel > .table-bordered > thead > tr:first-child > th,
|
||
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
|
||
.panel > .table-bordered > tbody > tr:first-child > th,
|
||
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
|
||
border-bottom: 0;
|
||
}
|
||
.panel > .table-bordered > tbody > tr:last-child > td,
|
||
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
||
.panel > .table-bordered > tfoot > tr:last-child > td,
|
||
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
||
.panel > .table-bordered > tbody > tr:last-child > th,
|
||
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
||
.panel > .table-bordered > tfoot > tr:last-child > th,
|
||
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
|
||
border-bottom: 0;
|
||
}
|
||
.panel > .table-responsive {
|
||
border: 0;
|
||
margin-bottom: 0;
|
||
}
|
||
.panel-group {
|
||
margin-bottom: 18px;
|
||
}
|
||
.panel-group .panel {
|
||
margin-bottom: 0;
|
||
border-radius: 2px;
|
||
}
|
||
.panel-group .panel + .panel {
|
||
margin-top: 5px;
|
||
}
|
||
.panel-group .panel-heading {
|
||
border-bottom: 0;
|
||
}
|
||
.panel-group .panel-heading + .panel-collapse > .panel-body,
|
||
.panel-group .panel-heading + .panel-collapse > .list-group {
|
||
border-top: 1px solid #ddd;
|
||
}
|
||
.panel-group .panel-footer {
|
||
border-top: 0;
|
||
}
|
||
.panel-group .panel-footer + .panel-collapse .panel-body {
|
||
border-bottom: 1px solid #ddd;
|
||
}
|
||
.panel-default {
|
||
border-color: #ddd;
|
||
}
|
||
.panel-default > .panel-heading {
|
||
color: #333333;
|
||
background-color: #f5f5f5;
|
||
border-color: #ddd;
|
||
}
|
||
.panel-default > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #ddd;
|
||
}
|
||
.panel-default > .panel-heading .badge {
|
||
color: #f5f5f5;
|
||
background-color: #333333;
|
||
}
|
||
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #ddd;
|
||
}
|
||
.panel-primary {
|
||
border-color: #337ab7;
|
||
}
|
||
.panel-primary > .panel-heading {
|
||
color: #fff;
|
||
background-color: #337ab7;
|
||
border-color: #337ab7;
|
||
}
|
||
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #337ab7;
|
||
}
|
||
.panel-primary > .panel-heading .badge {
|
||
color: #337ab7;
|
||
background-color: #fff;
|
||
}
|
||
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #337ab7;
|
||
}
|
||
.panel-success {
|
||
border-color: #d6e9c6;
|
||
}
|
||
.panel-success > .panel-heading {
|
||
color: #3c763d;
|
||
background-color: #dff0d8;
|
||
border-color: #d6e9c6;
|
||
}
|
||
.panel-success > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #d6e9c6;
|
||
}
|
||
.panel-success > .panel-heading .badge {
|
||
color: #dff0d8;
|
||
background-color: #3c763d;
|
||
}
|
||
.panel-success > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #d6e9c6;
|
||
}
|
||
.panel-info {
|
||
border-color: #bce8f1;
|
||
}
|
||
.panel-info > .panel-heading {
|
||
color: #31708f;
|
||
background-color: #d9edf7;
|
||
border-color: #bce8f1;
|
||
}
|
||
.panel-info > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #bce8f1;
|
||
}
|
||
.panel-info > .panel-heading .badge {
|
||
color: #d9edf7;
|
||
background-color: #31708f;
|
||
}
|
||
.panel-info > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #bce8f1;
|
||
}
|
||
.panel-warning {
|
||
border-color: #faebcc;
|
||
}
|
||
.panel-warning > .panel-heading {
|
||
color: #8a6d3b;
|
||
background-color: #fcf8e3;
|
||
border-color: #faebcc;
|
||
}
|
||
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #faebcc;
|
||
}
|
||
.panel-warning > .panel-heading .badge {
|
||
color: #fcf8e3;
|
||
background-color: #8a6d3b;
|
||
}
|
||
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #faebcc;
|
||
}
|
||
.panel-danger {
|
||
border-color: #ebccd1;
|
||
}
|
||
.panel-danger > .panel-heading {
|
||
color: #a94442;
|
||
background-color: #f2dede;
|
||
border-color: #ebccd1;
|
||
}
|
||
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #ebccd1;
|
||
}
|
||
.panel-danger > .panel-heading .badge {
|
||
color: #f2dede;
|
||
background-color: #a94442;
|
||
}
|
||
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #ebccd1;
|
||
}
|
||
.embed-responsive {
|
||
position: relative;
|
||
display: block;
|
||
height: 0;
|
||
padding: 0;
|
||
overflow: hidden;
|
||
}
|
||
.embed-responsive .embed-responsive-item,
|
||
.embed-responsive iframe,
|
||
.embed-responsive embed,
|
||
.embed-responsive object,
|
||
.embed-responsive video {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
bottom: 0;
|
||
height: 100%;
|
||
width: 100%;
|
||
border: 0;
|
||
}
|
||
.embed-responsive-16by9 {
|
||
padding-bottom: 56.25%;
|
||
}
|
||
.embed-responsive-4by3 {
|
||
padding-bottom: 75%;
|
||
}
|
||
.well {
|
||
min-height: 20px;
|
||
padding: 19px;
|
||
margin-bottom: 20px;
|
||
background-color: #f5f5f5;
|
||
border: 1px solid #e3e3e3;
|
||
border-radius: 2px;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
}
|
||
.well blockquote {
|
||
border-color: #ddd;
|
||
border-color: rgba(0, 0, 0, 0.15);
|
||
}
|
||
.well-lg {
|
||
padding: 24px;
|
||
border-radius: 3px;
|
||
}
|
||
.well-sm {
|
||
padding: 9px;
|
||
border-radius: 1px;
|
||
}
|
||
.close {
|
||
float: right;
|
||
font-size: 19.5px;
|
||
font-weight: bold;
|
||
line-height: 1;
|
||
color: #000;
|
||
text-shadow: 0 1px 0 #fff;
|
||
opacity: 0.2;
|
||
filter: alpha(opacity=20);
|
||
}
|
||
.close:hover,
|
||
.close:focus {
|
||
color: #000;
|
||
text-decoration: none;
|
||
cursor: pointer;
|
||
opacity: 0.5;
|
||
filter: alpha(opacity=50);
|
||
}
|
||
button.close {
|
||
padding: 0;
|
||
cursor: pointer;
|
||
background: transparent;
|
||
border: 0;
|
||
-webkit-appearance: none;
|
||
}
|
||
.modal-open {
|
||
overflow: hidden;
|
||
}
|
||
.modal {
|
||
display: none;
|
||
overflow: hidden;
|
||
position: fixed;
|
||
top: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
left: 0;
|
||
z-index: 1050;
|
||
-webkit-overflow-scrolling: touch;
|
||
outline: 0;
|
||
}
|
||
.modal.fade .modal-dialog {
|
||
-webkit-transform: translate(0, -25%);
|
||
-ms-transform: translate(0, -25%);
|
||
-o-transform: translate(0, -25%);
|
||
transform: translate(0, -25%);
|
||
-webkit-transition: -webkit-transform 0.3s ease-out;
|
||
-moz-transition: -moz-transform 0.3s ease-out;
|
||
-o-transition: -o-transform 0.3s ease-out;
|
||
transition: transform 0.3s ease-out;
|
||
}
|
||
.modal.in .modal-dialog {
|
||
-webkit-transform: translate(0, 0);
|
||
-ms-transform: translate(0, 0);
|
||
-o-transform: translate(0, 0);
|
||
transform: translate(0, 0);
|
||
}
|
||
.modal-open .modal {
|
||
overflow-x: hidden;
|
||
overflow-y: auto;
|
||
}
|
||
.modal-dialog {
|
||
position: relative;
|
||
width: auto;
|
||
margin: 10px;
|
||
}
|
||
.modal-content {
|
||
position: relative;
|
||
background-color: #fff;
|
||
border: 1px solid #999;
|
||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||
border-radius: 3px;
|
||
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||
background-clip: padding-box;
|
||
outline: 0;
|
||
}
|
||
.modal-backdrop {
|
||
position: fixed;
|
||
top: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
left: 0;
|
||
z-index: 1040;
|
||
background-color: #000;
|
||
}
|
||
.modal-backdrop.fade {
|
||
opacity: 0;
|
||
filter: alpha(opacity=0);
|
||
}
|
||
.modal-backdrop.in {
|
||
opacity: 0.5;
|
||
filter: alpha(opacity=50);
|
||
}
|
||
.modal-header {
|
||
padding: 15px;
|
||
border-bottom: 1px solid #e5e5e5;
|
||
}
|
||
.modal-header .close {
|
||
margin-top: -2px;
|
||
}
|
||
.modal-title {
|
||
margin: 0;
|
||
line-height: 1.42857143;
|
||
}
|
||
.modal-body {
|
||
position: relative;
|
||
padding: 15px;
|
||
}
|
||
.modal-footer {
|
||
padding: 15px;
|
||
text-align: right;
|
||
border-top: 1px solid #e5e5e5;
|
||
}
|
||
.modal-footer .btn + .btn {
|
||
margin-left: 5px;
|
||
margin-bottom: 0;
|
||
}
|
||
.modal-footer .btn-group .btn + .btn {
|
||
margin-left: -1px;
|
||
}
|
||
.modal-footer .btn-block + .btn-block {
|
||
margin-left: 0;
|
||
}
|
||
.modal-scrollbar-measure {
|
||
position: absolute;
|
||
top: -9999px;
|
||
width: 50px;
|
||
height: 50px;
|
||
overflow: scroll;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.modal-dialog {
|
||
width: 600px;
|
||
margin: 30px auto;
|
||
}
|
||
.modal-content {
|
||
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||
}
|
||
.modal-sm {
|
||
width: 300px;
|
||
}
|
||
}
|
||
@media (min-width: 992px) {
|
||
.modal-lg {
|
||
width: 900px;
|
||
}
|
||
}
|
||
.tooltip {
|
||
position: absolute;
|
||
z-index: 1070;
|
||
display: block;
|
||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||
font-style: normal;
|
||
font-weight: normal;
|
||
letter-spacing: normal;
|
||
line-break: auto;
|
||
line-height: 1.42857143;
|
||
text-align: left;
|
||
text-align: start;
|
||
text-decoration: none;
|
||
text-shadow: none;
|
||
text-transform: none;
|
||
white-space: normal;
|
||
word-break: normal;
|
||
word-spacing: normal;
|
||
word-wrap: normal;
|
||
font-size: 12px;
|
||
opacity: 0;
|
||
filter: alpha(opacity=0);
|
||
}
|
||
.tooltip.in {
|
||
opacity: 0.9;
|
||
filter: alpha(opacity=90);
|
||
}
|
||
.tooltip.top {
|
||
margin-top: -3px;
|
||
padding: 5px 0;
|
||
}
|
||
.tooltip.right {
|
||
margin-left: 3px;
|
||
padding: 0 5px;
|
||
}
|
||
.tooltip.bottom {
|
||
margin-top: 3px;
|
||
padding: 5px 0;
|
||
}
|
||
.tooltip.left {
|
||
margin-left: -3px;
|
||
padding: 0 5px;
|
||
}
|
||
.tooltip-inner {
|
||
max-width: 200px;
|
||
padding: 3px 8px;
|
||
color: #fff;
|
||
text-align: center;
|
||
background-color: #000;
|
||
border-radius: 2px;
|
||
}
|
||
.tooltip-arrow {
|
||
position: absolute;
|
||
width: 0;
|
||
height: 0;
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
}
|
||
.tooltip.top .tooltip-arrow {
|
||
bottom: 0;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
border-width: 5px 5px 0;
|
||
border-top-color: #000;
|
||
}
|
||
.tooltip.top-left .tooltip-arrow {
|
||
bottom: 0;
|
||
right: 5px;
|
||
margin-bottom: -5px;
|
||
border-width: 5px 5px 0;
|
||
border-top-color: #000;
|
||
}
|
||
.tooltip.top-right .tooltip-arrow {
|
||
bottom: 0;
|
||
left: 5px;
|
||
margin-bottom: -5px;
|
||
border-width: 5px 5px 0;
|
||
border-top-color: #000;
|
||
}
|
||
.tooltip.right .tooltip-arrow {
|
||
top: 50%;
|
||
left: 0;
|
||
margin-top: -5px;
|
||
border-width: 5px 5px 5px 0;
|
||
border-right-color: #000;
|
||
}
|
||
.tooltip.left .tooltip-arrow {
|
||
top: 50%;
|
||
right: 0;
|
||
margin-top: -5px;
|
||
border-width: 5px 0 5px 5px;
|
||
border-left-color: #000;
|
||
}
|
||
.tooltip.bottom .tooltip-arrow {
|
||
top: 0;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
border-width: 0 5px 5px;
|
||
border-bottom-color: #000;
|
||
}
|
||
.tooltip.bottom-left .tooltip-arrow {
|
||
top: 0;
|
||
right: 5px;
|
||
margin-top: -5px;
|
||
border-width: 0 5px 5px;
|
||
border-bottom-color: #000;
|
||
}
|
||
.tooltip.bottom-right .tooltip-arrow {
|
||
top: 0;
|
||
left: 5px;
|
||
margin-top: -5px;
|
||
border-width: 0 5px 5px;
|
||
border-bottom-color: #000;
|
||
}
|
||
.popover {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: 1060;
|
||
display: none;
|
||
max-width: 276px;
|
||
padding: 1px;
|
||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||
font-style: normal;
|
||
font-weight: normal;
|
||
letter-spacing: normal;
|
||
line-break: auto;
|
||
line-height: 1.42857143;
|
||
text-align: left;
|
||
text-align: start;
|
||
text-decoration: none;
|
||
text-shadow: none;
|
||
text-transform: none;
|
||
white-space: normal;
|
||
word-break: normal;
|
||
word-spacing: normal;
|
||
word-wrap: normal;
|
||
font-size: 13px;
|
||
background-color: #fff;
|
||
background-clip: padding-box;
|
||
border: 1px solid #ccc;
|
||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||
border-radius: 3px;
|
||
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
}
|
||
.popover.top {
|
||
margin-top: -10px;
|
||
}
|
||
.popover.right {
|
||
margin-left: 10px;
|
||
}
|
||
.popover.bottom {
|
||
margin-top: 10px;
|
||
}
|
||
.popover.left {
|
||
margin-left: -10px;
|
||
}
|
||
.popover-title {
|
||
margin: 0;
|
||
padding: 8px 14px;
|
||
font-size: 13px;
|
||
background-color: #f7f7f7;
|
||
border-bottom: 1px solid #ebebeb;
|
||
border-radius: 2px 2px 0 0;
|
||
}
|
||
.popover-content {
|
||
padding: 9px 14px;
|
||
}
|
||
.popover > .arrow,
|
||
.popover > .arrow:after {
|
||
position: absolute;
|
||
display: block;
|
||
width: 0;
|
||
height: 0;
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
}
|
||
.popover > .arrow {
|
||
border-width: 11px;
|
||
}
|
||
.popover > .arrow:after {
|
||
border-width: 10px;
|
||
content: "";
|
||
}
|
||
.popover.top > .arrow {
|
||
left: 50%;
|
||
margin-left: -11px;
|
||
border-bottom-width: 0;
|
||
border-top-color: #999999;
|
||
border-top-color: rgba(0, 0, 0, 0.25);
|
||
bottom: -11px;
|
||
}
|
||
.popover.top > .arrow:after {
|
||
content: " ";
|
||
bottom: 1px;
|
||
margin-left: -10px;
|
||
border-bottom-width: 0;
|
||
border-top-color: #fff;
|
||
}
|
||
.popover.right > .arrow {
|
||
top: 50%;
|
||
left: -11px;
|
||
margin-top: -11px;
|
||
border-left-width: 0;
|
||
border-right-color: #999999;
|
||
border-right-color: rgba(0, 0, 0, 0.25);
|
||
}
|
||
.popover.right > .arrow:after {
|
||
content: " ";
|
||
left: 1px;
|
||
bottom: -10px;
|
||
border-left-width: 0;
|
||
border-right-color: #fff;
|
||
}
|
||
.popover.bottom > .arrow {
|
||
left: 50%;
|
||
margin-left: -11px;
|
||
border-top-width: 0;
|
||
border-bottom-color: #999999;
|
||
border-bottom-color: rgba(0, 0, 0, 0.25);
|
||
top: -11px;
|
||
}
|
||
.popover.bottom > .arrow:after {
|
||
content: " ";
|
||
top: 1px;
|
||
margin-left: -10px;
|
||
border-top-width: 0;
|
||
border-bottom-color: #fff;
|
||
}
|
||
.popover.left > .arrow {
|
||
top: 50%;
|
||
right: -11px;
|
||
margin-top: -11px;
|
||
border-right-width: 0;
|
||
border-left-color: #999999;
|
||
border-left-color: rgba(0, 0, 0, 0.25);
|
||
}
|
||
.popover.left > .arrow:after {
|
||
content: " ";
|
||
right: 1px;
|
||
border-right-width: 0;
|
||
border-left-color: #fff;
|
||
bottom: -10px;
|
||
}
|
||
.carousel {
|
||
position: relative;
|
||
}
|
||
.carousel-inner {
|
||
position: relative;
|
||
overflow: hidden;
|
||
width: 100%;
|
||
}
|
||
.carousel-inner > .item {
|
||
display: none;
|
||
position: relative;
|
||
-webkit-transition: 0.6s ease-in-out left;
|
||
-o-transition: 0.6s ease-in-out left;
|
||
transition: 0.6s ease-in-out left;
|
||
}
|
||
.carousel-inner > .item > img,
|
||
.carousel-inner > .item > a > img {
|
||
line-height: 1;
|
||
}
|
||
@media all and (transform-3d), (-webkit-transform-3d) {
|
||
.carousel-inner > .item {
|
||
-webkit-transition: -webkit-transform 0.6s ease-in-out;
|
||
-moz-transition: -moz-transform 0.6s ease-in-out;
|
||
-o-transition: -o-transform 0.6s ease-in-out;
|
||
transition: transform 0.6s ease-in-out;
|
||
-webkit-backface-visibility: hidden;
|
||
-moz-backface-visibility: hidden;
|
||
backface-visibility: hidden;
|
||
-webkit-perspective: 1000px;
|
||
-moz-perspective: 1000px;
|
||
perspective: 1000px;
|
||
}
|
||
.carousel-inner > .item.next,
|
||
.carousel-inner > .item.active.right {
|
||
-webkit-transform: translate3d(100%, 0, 0);
|
||
transform: translate3d(100%, 0, 0);
|
||
left: 0;
|
||
}
|
||
.carousel-inner > .item.prev,
|
||
.carousel-inner > .item.active.left {
|
||
-webkit-transform: translate3d(-100%, 0, 0);
|
||
transform: translate3d(-100%, 0, 0);
|
||
left: 0;
|
||
}
|
||
.carousel-inner > .item.next.left,
|
||
.carousel-inner > .item.prev.right,
|
||
.carousel-inner > .item.active {
|
||
-webkit-transform: translate3d(0, 0, 0);
|
||
transform: translate3d(0, 0, 0);
|
||
left: 0;
|
||
}
|
||
}
|
||
.carousel-inner > .active,
|
||
.carousel-inner > .next,
|
||
.carousel-inner > .prev {
|
||
display: block;
|
||
}
|
||
.carousel-inner > .active {
|
||
left: 0;
|
||
}
|
||
.carousel-inner > .next,
|
||
.carousel-inner > .prev {
|
||
position: absolute;
|
||
top: 0;
|
||
width: 100%;
|
||
}
|
||
.carousel-inner > .next {
|
||
left: 100%;
|
||
}
|
||
.carousel-inner > .prev {
|
||
left: -100%;
|
||
}
|
||
.carousel-inner > .next.left,
|
||
.carousel-inner > .prev.right {
|
||
left: 0;
|
||
}
|
||
.carousel-inner > .active.left {
|
||
left: -100%;
|
||
}
|
||
.carousel-inner > .active.right {
|
||
left: 100%;
|
||
}
|
||
.carousel-control {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
bottom: 0;
|
||
width: 15%;
|
||
opacity: 0.5;
|
||
filter: alpha(opacity=50);
|
||
font-size: 20px;
|
||
color: #fff;
|
||
text-align: center;
|
||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
||
background-color: rgba(0, 0, 0, 0);
|
||
}
|
||
.carousel-control.left {
|
||
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
||
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
||
background-repeat: repeat-x;
|
||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
||
}
|
||
.carousel-control.right {
|
||
left: auto;
|
||
right: 0;
|
||
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
||
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
||
background-repeat: repeat-x;
|
||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
||
}
|
||
.carousel-control:hover,
|
||
.carousel-control:focus {
|
||
outline: 0;
|
||
color: #fff;
|
||
text-decoration: none;
|
||
opacity: 0.9;
|
||
filter: alpha(opacity=90);
|
||
}
|
||
.carousel-control .icon-prev,
|
||
.carousel-control .icon-next,
|
||
.carousel-control .glyphicon-chevron-left,
|
||
.carousel-control .glyphicon-chevron-right {
|
||
position: absolute;
|
||
top: 50%;
|
||
margin-top: -10px;
|
||
z-index: 5;
|
||
display: inline-block;
|
||
}
|
||
.carousel-control .icon-prev,
|
||
.carousel-control .glyphicon-chevron-left {
|
||
left: 50%;
|
||
margin-left: -10px;
|
||
}
|
||
.carousel-control .icon-next,
|
||
.carousel-control .glyphicon-chevron-right {
|
||
right: 50%;
|
||
margin-right: -10px;
|
||
}
|
||
.carousel-control .icon-prev,
|
||
.carousel-control .icon-next {
|
||
width: 20px;
|
||
height: 20px;
|
||
line-height: 1;
|
||
font-family: serif;
|
||
}
|
||
.carousel-control .icon-prev:before {
|
||
content: '\2039';
|
||
}
|
||
.carousel-control .icon-next:before {
|
||
content: '\203a';
|
||
}
|
||
.carousel-indicators {
|
||
position: absolute;
|
||
bottom: 10px;
|
||
left: 50%;
|
||
z-index: 15;
|
||
width: 60%;
|
||
margin-left: -30%;
|
||
padding-left: 0;
|
||
list-style: none;
|
||
text-align: center;
|
||
}
|
||
.carousel-indicators li {
|
||
display: inline-block;
|
||
width: 10px;
|
||
height: 10px;
|
||
margin: 1px;
|
||
text-indent: -999px;
|
||
border: 1px solid #fff;
|
||
border-radius: 10px;
|
||
cursor: pointer;
|
||
background-color: #000 \9;
|
||
background-color: rgba(0, 0, 0, 0);
|
||
}
|
||
.carousel-indicators .active {
|
||
margin: 0;
|
||
width: 12px;
|
||
height: 12px;
|
||
background-color: #fff;
|
||
}
|
||
.carousel-caption {
|
||
position: absolute;
|
||
left: 15%;
|
||
right: 15%;
|
||
bottom: 20px;
|
||
z-index: 10;
|
||
padding-top: 20px;
|
||
padding-bottom: 20px;
|
||
color: #fff;
|
||
text-align: center;
|
||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
||
}
|
||
.carousel-caption .btn {
|
||
text-shadow: none;
|
||
}
|
||
@media screen and (min-width: 768px) {
|
||
.carousel-control .glyphicon-chevron-left,
|
||
.carousel-control .glyphicon-chevron-right,
|
||
.carousel-control .icon-prev,
|
||
.carousel-control .icon-next {
|
||
width: 30px;
|
||
height: 30px;
|
||
margin-top: -10px;
|
||
font-size: 30px;
|
||
}
|
||
.carousel-control .glyphicon-chevron-left,
|
||
.carousel-control .icon-prev {
|
||
margin-left: -10px;
|
||
}
|
||
.carousel-control .glyphicon-chevron-right,
|
||
.carousel-control .icon-next {
|
||
margin-right: -10px;
|
||
}
|
||
.carousel-caption {
|
||
left: 20%;
|
||
right: 20%;
|
||
padding-bottom: 30px;
|
||
}
|
||
.carousel-indicators {
|
||
bottom: 20px;
|
||
}
|
||
}
|
||
.clearfix:before,
|
||
.clearfix:after,
|
||
.dl-horizontal dd:before,
|
||
.dl-horizontal dd:after,
|
||
.container:before,
|
||
.container:after,
|
||
.container-fluid:before,
|
||
.container-fluid:after,
|
||
.row:before,
|
||
.row:after,
|
||
.form-horizontal .form-group:before,
|
||
.form-horizontal .form-group:after,
|
||
.btn-toolbar:before,
|
||
.btn-toolbar:after,
|
||
.btn-group-vertical > .btn-group:before,
|
||
.btn-group-vertical > .btn-group:after,
|
||
.nav:before,
|
||
.nav:after,
|
||
.navbar:before,
|
||
.navbar:after,
|
||
.navbar-header:before,
|
||
.navbar-header:after,
|
||
.navbar-collapse:before,
|
||
.navbar-collapse:after,
|
||
.pager:before,
|
||
.pager:after,
|
||
.panel-body:before,
|
||
.panel-body:after,
|
||
.modal-header:before,
|
||
.modal-header:after,
|
||
.modal-footer:before,
|
||
.modal-footer:after,
|
||
.item_buttons:before,
|
||
.item_buttons:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.clearfix:after,
|
||
.dl-horizontal dd:after,
|
||
.container:after,
|
||
.container-fluid:after,
|
||
.row:after,
|
||
.form-horizontal .form-group:after,
|
||
.btn-toolbar:after,
|
||
.btn-group-vertical > .btn-group:after,
|
||
.nav:after,
|
||
.navbar:after,
|
||
.navbar-header:after,
|
||
.navbar-collapse:after,
|
||
.pager:after,
|
||
.panel-body:after,
|
||
.modal-header:after,
|
||
.modal-footer:after,
|
||
.item_buttons:after {
|
||
clear: both;
|
||
}
|
||
.center-block {
|
||
display: block;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
.pull-right {
|
||
float: right !important;
|
||
}
|
||
.pull-left {
|
||
float: left !important;
|
||
}
|
||
.hide {
|
||
display: none !important;
|
||
}
|
||
.show {
|
||
display: block !important;
|
||
}
|
||
.invisible {
|
||
visibility: hidden;
|
||
}
|
||
.text-hide {
|
||
font: 0/0 a;
|
||
color: transparent;
|
||
text-shadow: none;
|
||
background-color: transparent;
|
||
border: 0;
|
||
}
|
||
.hidden {
|
||
display: none !important;
|
||
}
|
||
.affix {
|
||
position: fixed;
|
||
}
|
||
@-ms-viewport {
|
||
width: device-width;
|
||
}
|
||
.visible-xs,
|
||
.visible-sm,
|
||
.visible-md,
|
||
.visible-lg {
|
||
display: none !important;
|
||
}
|
||
.visible-xs-block,
|
||
.visible-xs-inline,
|
||
.visible-xs-inline-block,
|
||
.visible-sm-block,
|
||
.visible-sm-inline,
|
||
.visible-sm-inline-block,
|
||
.visible-md-block,
|
||
.visible-md-inline,
|
||
.visible-md-inline-block,
|
||
.visible-lg-block,
|
||
.visible-lg-inline,
|
||
.visible-lg-inline-block {
|
||
display: none !important;
|
||
}
|
||
@media (max-width: 767px) {
|
||
.visible-xs {
|
||
display: block !important;
|
||
}
|
||
table.visible-xs {
|
||
display: table !important;
|
||
}
|
||
tr.visible-xs {
|
||
display: table-row !important;
|
||
}
|
||
th.visible-xs,
|
||
td.visible-xs {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
@media (max-width: 767px) {
|
||
.visible-xs-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
@media (max-width: 767px) {
|
||
.visible-xs-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
@media (max-width: 767px) {
|
||
.visible-xs-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.visible-sm {
|
||
display: block !important;
|
||
}
|
||
table.visible-sm {
|
||
display: table !important;
|
||
}
|
||
tr.visible-sm {
|
||
display: table-row !important;
|
||
}
|
||
th.visible-sm,
|
||
td.visible-sm {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.visible-sm-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.visible-sm-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.visible-sm-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.visible-md {
|
||
display: block !important;
|
||
}
|
||
table.visible-md {
|
||
display: table !important;
|
||
}
|
||
tr.visible-md {
|
||
display: table-row !important;
|
||
}
|
||
th.visible-md,
|
||
td.visible-md {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.visible-md-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.visible-md-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.visible-md-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.visible-lg {
|
||
display: block !important;
|
||
}
|
||
table.visible-lg {
|
||
display: table !important;
|
||
}
|
||
tr.visible-lg {
|
||
display: table-row !important;
|
||
}
|
||
th.visible-lg,
|
||
td.visible-lg {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.visible-lg-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.visible-lg-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.visible-lg-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media (max-width: 767px) {
|
||
.hidden-xs {
|
||
display: none !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.hidden-sm {
|
||
display: none !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.hidden-md {
|
||
display: none !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.hidden-lg {
|
||
display: none !important;
|
||
}
|
||
}
|
||
.visible-print {
|
||
display: none !important;
|
||
}
|
||
@media print {
|
||
.visible-print {
|
||
display: block !important;
|
||
}
|
||
table.visible-print {
|
||
display: table !important;
|
||
}
|
||
tr.visible-print {
|
||
display: table-row !important;
|
||
}
|
||
th.visible-print,
|
||
td.visible-print {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
.visible-print-block {
|
||
display: none !important;
|
||
}
|
||
@media print {
|
||
.visible-print-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
.visible-print-inline {
|
||
display: none !important;
|
||
}
|
||
@media print {
|
||
.visible-print-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
.visible-print-inline-block {
|
||
display: none !important;
|
||
}
|
||
@media print {
|
||
.visible-print-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media print {
|
||
.hidden-print {
|
||
display: none !important;
|
||
}
|
||
}
|
||
/*!
|
||
*
|
||
* Font Awesome
|
||
*
|
||
*/
|
||
/*!
|
||
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||
*/
|
||
/* FONT PATH
|
||
* -------------------------- */
|
||
@font-face {
|
||
font-family: 'FontAwesome';
|
||
src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
|
||
src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
|
||
font-weight: normal;
|
||
font-style: normal;
|
||
}
|
||
.fa {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
}
|
||
/* makes the font 33% larger relative to the icon container */
|
||
.fa-lg {
|
||
font-size: 1.33333333em;
|
||
line-height: 0.75em;
|
||
vertical-align: -15%;
|
||
}
|
||
.fa-2x {
|
||
font-size: 2em;
|
||
}
|
||
.fa-3x {
|
||
font-size: 3em;
|
||
}
|
||
.fa-4x {
|
||
font-size: 4em;
|
||
}
|
||
.fa-5x {
|
||
font-size: 5em;
|
||
}
|
||
.fa-fw {
|
||
width: 1.28571429em;
|
||
text-align: center;
|
||
}
|
||
.fa-ul {
|
||
padding-left: 0;
|
||
margin-left: 2.14285714em;
|
||
list-style-type: none;
|
||
}
|
||
.fa-ul > li {
|
||
position: relative;
|
||
}
|
||
.fa-li {
|
||
position: absolute;
|
||
left: -2.14285714em;
|
||
width: 2.14285714em;
|
||
top: 0.14285714em;
|
||
text-align: center;
|
||
}
|
||
.fa-li.fa-lg {
|
||
left: -1.85714286em;
|
||
}
|
||
.fa-border {
|
||
padding: .2em .25em .15em;
|
||
border: solid 0.08em #eee;
|
||
border-radius: .1em;
|
||
}
|
||
.pull-right {
|
||
float: right;
|
||
}
|
||
.pull-left {
|
||
float: left;
|
||
}
|
||
.fa.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.fa.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.fa-spin {
|
||
-webkit-animation: fa-spin 2s infinite linear;
|
||
animation: fa-spin 2s infinite linear;
|
||
}
|
||
@-webkit-keyframes fa-spin {
|
||
0% {
|
||
-webkit-transform: rotate(0deg);
|
||
transform: rotate(0deg);
|
||
}
|
||
100% {
|
||
-webkit-transform: rotate(359deg);
|
||
transform: rotate(359deg);
|
||
}
|
||
}
|
||
@keyframes fa-spin {
|
||
0% {
|
||
-webkit-transform: rotate(0deg);
|
||
transform: rotate(0deg);
|
||
}
|
||
100% {
|
||
-webkit-transform: rotate(359deg);
|
||
transform: rotate(359deg);
|
||
}
|
||
}
|
||
.fa-rotate-90 {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
||
-webkit-transform: rotate(90deg);
|
||
-ms-transform: rotate(90deg);
|
||
transform: rotate(90deg);
|
||
}
|
||
.fa-rotate-180 {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||
-webkit-transform: rotate(180deg);
|
||
-ms-transform: rotate(180deg);
|
||
transform: rotate(180deg);
|
||
}
|
||
.fa-rotate-270 {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||
-webkit-transform: rotate(270deg);
|
||
-ms-transform: rotate(270deg);
|
||
transform: rotate(270deg);
|
||
}
|
||
.fa-flip-horizontal {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
||
-webkit-transform: scale(-1, 1);
|
||
-ms-transform: scale(-1, 1);
|
||
transform: scale(-1, 1);
|
||
}
|
||
.fa-flip-vertical {
|
||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
||
-webkit-transform: scale(1, -1);
|
||
-ms-transform: scale(1, -1);
|
||
transform: scale(1, -1);
|
||
}
|
||
:root .fa-rotate-90,
|
||
:root .fa-rotate-180,
|
||
:root .fa-rotate-270,
|
||
:root .fa-flip-horizontal,
|
||
:root .fa-flip-vertical {
|
||
filter: none;
|
||
}
|
||
.fa-stack {
|
||
position: relative;
|
||
display: inline-block;
|
||
width: 2em;
|
||
height: 2em;
|
||
line-height: 2em;
|
||
vertical-align: middle;
|
||
}
|
||
.fa-stack-1x,
|
||
.fa-stack-2x {
|
||
position: absolute;
|
||
left: 0;
|
||
width: 100%;
|
||
text-align: center;
|
||
}
|
||
.fa-stack-1x {
|
||
line-height: inherit;
|
||
}
|
||
.fa-stack-2x {
|
||
font-size: 2em;
|
||
}
|
||
.fa-inverse {
|
||
color: #fff;
|
||
}
|
||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
||
readers do not read off random characters that represent icons */
|
||
.fa-glass:before {
|
||
content: "\f000";
|
||
}
|
||
.fa-music:before {
|
||
content: "\f001";
|
||
}
|
||
.fa-search:before {
|
||
content: "\f002";
|
||
}
|
||
.fa-envelope-o:before {
|
||
content: "\f003";
|
||
}
|
||
.fa-heart:before {
|
||
content: "\f004";
|
||
}
|
||
.fa-star:before {
|
||
content: "\f005";
|
||
}
|
||
.fa-star-o:before {
|
||
content: "\f006";
|
||
}
|
||
.fa-user:before {
|
||
content: "\f007";
|
||
}
|
||
.fa-film:before {
|
||
content: "\f008";
|
||
}
|
||
.fa-th-large:before {
|
||
content: "\f009";
|
||
}
|
||
.fa-th:before {
|
||
content: "\f00a";
|
||
}
|
||
.fa-th-list:before {
|
||
content: "\f00b";
|
||
}
|
||
.fa-check:before {
|
||
content: "\f00c";
|
||
}
|
||
.fa-remove:before,
|
||
.fa-close:before,
|
||
.fa-times:before {
|
||
content: "\f00d";
|
||
}
|
||
.fa-search-plus:before {
|
||
content: "\f00e";
|
||
}
|
||
.fa-search-minus:before {
|
||
content: "\f010";
|
||
}
|
||
.fa-power-off:before {
|
||
content: "\f011";
|
||
}
|
||
.fa-signal:before {
|
||
content: "\f012";
|
||
}
|
||
.fa-gear:before,
|
||
.fa-cog:before {
|
||
content: "\f013";
|
||
}
|
||
.fa-trash-o:before {
|
||
content: "\f014";
|
||
}
|
||
.fa-home:before {
|
||
content: "\f015";
|
||
}
|
||
.fa-file-o:before {
|
||
content: "\f016";
|
||
}
|
||
.fa-clock-o:before {
|
||
content: "\f017";
|
||
}
|
||
.fa-road:before {
|
||
content: "\f018";
|
||
}
|
||
.fa-download:before {
|
||
content: "\f019";
|
||
}
|
||
.fa-arrow-circle-o-down:before {
|
||
content: "\f01a";
|
||
}
|
||
.fa-arrow-circle-o-up:before {
|
||
content: "\f01b";
|
||
}
|
||
.fa-inbox:before {
|
||
content: "\f01c";
|
||
}
|
||
.fa-play-circle-o:before {
|
||
content: "\f01d";
|
||
}
|
||
.fa-rotate-right:before,
|
||
.fa-repeat:before {
|
||
content: "\f01e";
|
||
}
|
||
.fa-refresh:before {
|
||
content: "\f021";
|
||
}
|
||
.fa-list-alt:before {
|
||
content: "\f022";
|
||
}
|
||
.fa-lock:before {
|
||
content: "\f023";
|
||
}
|
||
.fa-flag:before {
|
||
content: "\f024";
|
||
}
|
||
.fa-headphones:before {
|
||
content: "\f025";
|
||
}
|
||
.fa-volume-off:before {
|
||
content: "\f026";
|
||
}
|
||
.fa-volume-down:before {
|
||
content: "\f027";
|
||
}
|
||
.fa-volume-up:before {
|
||
content: "\f028";
|
||
}
|
||
.fa-qrcode:before {
|
||
content: "\f029";
|
||
}
|
||
.fa-barcode:before {
|
||
content: "\f02a";
|
||
}
|
||
.fa-tag:before {
|
||
content: "\f02b";
|
||
}
|
||
.fa-tags:before {
|
||
content: "\f02c";
|
||
}
|
||
.fa-book:before {
|
||
content: "\f02d";
|
||
}
|
||
.fa-bookmark:before {
|
||
content: "\f02e";
|
||
}
|
||
.fa-print:before {
|
||
content: "\f02f";
|
||
}
|
||
.fa-camera:before {
|
||
content: "\f030";
|
||
}
|
||
.fa-font:before {
|
||
content: "\f031";
|
||
}
|
||
.fa-bold:before {
|
||
content: "\f032";
|
||
}
|
||
.fa-italic:before {
|
||
content: "\f033";
|
||
}
|
||
.fa-text-height:before {
|
||
content: "\f034";
|
||
}
|
||
.fa-text-width:before {
|
||
content: "\f035";
|
||
}
|
||
.fa-align-left:before {
|
||
content: "\f036";
|
||
}
|
||
.fa-align-center:before {
|
||
content: "\f037";
|
||
}
|
||
.fa-align-right:before {
|
||
content: "\f038";
|
||
}
|
||
.fa-align-justify:before {
|
||
content: "\f039";
|
||
}
|
||
.fa-list:before {
|
||
content: "\f03a";
|
||
}
|
||
.fa-dedent:before,
|
||
.fa-outdent:before {
|
||
content: "\f03b";
|
||
}
|
||
.fa-indent:before {
|
||
content: "\f03c";
|
||
}
|
||
.fa-video-camera:before {
|
||
content: "\f03d";
|
||
}
|
||
.fa-photo:before,
|
||
.fa-image:before,
|
||
.fa-picture-o:before {
|
||
content: "\f03e";
|
||
}
|
||
.fa-pencil:before {
|
||
content: "\f040";
|
||
}
|
||
.fa-map-marker:before {
|
||
content: "\f041";
|
||
}
|
||
.fa-adjust:before {
|
||
content: "\f042";
|
||
}
|
||
.fa-tint:before {
|
||
content: "\f043";
|
||
}
|
||
.fa-edit:before,
|
||
.fa-pencil-square-o:before {
|
||
content: "\f044";
|
||
}
|
||
.fa-share-square-o:before {
|
||
content: "\f045";
|
||
}
|
||
.fa-check-square-o:before {
|
||
content: "\f046";
|
||
}
|
||
.fa-arrows:before {
|
||
content: "\f047";
|
||
}
|
||
.fa-step-backward:before {
|
||
content: "\f048";
|
||
}
|
||
.fa-fast-backward:before {
|
||
content: "\f049";
|
||
}
|
||
.fa-backward:before {
|
||
content: "\f04a";
|
||
}
|
||
.fa-play:before {
|
||
content: "\f04b";
|
||
}
|
||
.fa-pause:before {
|
||
content: "\f04c";
|
||
}
|
||
.fa-stop:before {
|
||
content: "\f04d";
|
||
}
|
||
.fa-forward:before {
|
||
content: "\f04e";
|
||
}
|
||
.fa-fast-forward:before {
|
||
content: "\f050";
|
||
}
|
||
.fa-step-forward:before {
|
||
content: "\f051";
|
||
}
|
||
.fa-eject:before {
|
||
content: "\f052";
|
||
}
|
||
.fa-chevron-left:before {
|
||
content: "\f053";
|
||
}
|
||
.fa-chevron-right:before {
|
||
content: "\f054";
|
||
}
|
||
.fa-plus-circle:before {
|
||
content: "\f055";
|
||
}
|
||
.fa-minus-circle:before {
|
||
content: "\f056";
|
||
}
|
||
.fa-times-circle:before {
|
||
content: "\f057";
|
||
}
|
||
.fa-check-circle:before {
|
||
content: "\f058";
|
||
}
|
||
.fa-question-circle:before {
|
||
content: "\f059";
|
||
}
|
||
.fa-info-circle:before {
|
||
content: "\f05a";
|
||
}
|
||
.fa-crosshairs:before {
|
||
content: "\f05b";
|
||
}
|
||
.fa-times-circle-o:before {
|
||
content: "\f05c";
|
||
}
|
||
.fa-check-circle-o:before {
|
||
content: "\f05d";
|
||
}
|
||
.fa-ban:before {
|
||
content: "\f05e";
|
||
}
|
||
.fa-arrow-left:before {
|
||
content: "\f060";
|
||
}
|
||
.fa-arrow-right:before {
|
||
content: "\f061";
|
||
}
|
||
.fa-arrow-up:before {
|
||
content: "\f062";
|
||
}
|
||
.fa-arrow-down:before {
|
||
content: "\f063";
|
||
}
|
||
.fa-mail-forward:before,
|
||
.fa-share:before {
|
||
content: "\f064";
|
||
}
|
||
.fa-expand:before {
|
||
content: "\f065";
|
||
}
|
||
.fa-compress:before {
|
||
content: "\f066";
|
||
}
|
||
.fa-plus:before {
|
||
content: "\f067";
|
||
}
|
||
.fa-minus:before {
|
||
content: "\f068";
|
||
}
|
||
.fa-asterisk:before {
|
||
content: "\f069";
|
||
}
|
||
.fa-exclamation-circle:before {
|
||
content: "\f06a";
|
||
}
|
||
.fa-gift:before {
|
||
content: "\f06b";
|
||
}
|
||
.fa-leaf:before {
|
||
content: "\f06c";
|
||
}
|
||
.fa-fire:before {
|
||
content: "\f06d";
|
||
}
|
||
.fa-eye:before {
|
||
content: "\f06e";
|
||
}
|
||
.fa-eye-slash:before {
|
||
content: "\f070";
|
||
}
|
||
.fa-warning:before,
|
||
.fa-exclamation-triangle:before {
|
||
content: "\f071";
|
||
}
|
||
.fa-plane:before {
|
||
content: "\f072";
|
||
}
|
||
.fa-calendar:before {
|
||
content: "\f073";
|
||
}
|
||
.fa-random:before {
|
||
content: "\f074";
|
||
}
|
||
.fa-comment:before {
|
||
content: "\f075";
|
||
}
|
||
.fa-magnet:before {
|
||
content: "\f076";
|
||
}
|
||
.fa-chevron-up:before {
|
||
content: "\f077";
|
||
}
|
||
.fa-chevron-down:before {
|
||
content: "\f078";
|
||
}
|
||
.fa-retweet:before {
|
||
content: "\f079";
|
||
}
|
||
.fa-shopping-cart:before {
|
||
content: "\f07a";
|
||
}
|
||
.fa-folder:before {
|
||
content: "\f07b";
|
||
}
|
||
.fa-folder-open:before {
|
||
content: "\f07c";
|
||
}
|
||
.fa-arrows-v:before {
|
||
content: "\f07d";
|
||
}
|
||
.fa-arrows-h:before {
|
||
content: "\f07e";
|
||
}
|
||
.fa-bar-chart-o:before,
|
||
.fa-bar-chart:before {
|
||
content: "\f080";
|
||
}
|
||
.fa-twitter-square:before {
|
||
content: "\f081";
|
||
}
|
||
.fa-facebook-square:before {
|
||
content: "\f082";
|
||
}
|
||
.fa-camera-retro:before {
|
||
content: "\f083";
|
||
}
|
||
.fa-key:before {
|
||
content: "\f084";
|
||
}
|
||
.fa-gears:before,
|
||
.fa-cogs:before {
|
||
content: "\f085";
|
||
}
|
||
.fa-comments:before {
|
||
content: "\f086";
|
||
}
|
||
.fa-thumbs-o-up:before {
|
||
content: "\f087";
|
||
}
|
||
.fa-thumbs-o-down:before {
|
||
content: "\f088";
|
||
}
|
||
.fa-star-half:before {
|
||
content: "\f089";
|
||
}
|
||
.fa-heart-o:before {
|
||
content: "\f08a";
|
||
}
|
||
.fa-sign-out:before {
|
||
content: "\f08b";
|
||
}
|
||
.fa-linkedin-square:before {
|
||
content: "\f08c";
|
||
}
|
||
.fa-thumb-tack:before {
|
||
content: "\f08d";
|
||
}
|
||
.fa-external-link:before {
|
||
content: "\f08e";
|
||
}
|
||
.fa-sign-in:before {
|
||
content: "\f090";
|
||
}
|
||
.fa-trophy:before {
|
||
content: "\f091";
|
||
}
|
||
.fa-github-square:before {
|
||
content: "\f092";
|
||
}
|
||
.fa-upload:before {
|
||
content: "\f093";
|
||
}
|
||
.fa-lemon-o:before {
|
||
content: "\f094";
|
||
}
|
||
.fa-phone:before {
|
||
content: "\f095";
|
||
}
|
||
.fa-square-o:before {
|
||
content: "\f096";
|
||
}
|
||
.fa-bookmark-o:before {
|
||
content: "\f097";
|
||
}
|
||
.fa-phone-square:before {
|
||
content: "\f098";
|
||
}
|
||
.fa-twitter:before {
|
||
content: "\f099";
|
||
}
|
||
.fa-facebook:before {
|
||
content: "\f09a";
|
||
}
|
||
.fa-github:before {
|
||
content: "\f09b";
|
||
}
|
||
.fa-unlock:before {
|
||
content: "\f09c";
|
||
}
|
||
.fa-credit-card:before {
|
||
content: "\f09d";
|
||
}
|
||
.fa-rss:before {
|
||
content: "\f09e";
|
||
}
|
||
.fa-hdd-o:before {
|
||
content: "\f0a0";
|
||
}
|
||
.fa-bullhorn:before {
|
||
content: "\f0a1";
|
||
}
|
||
.fa-bell:before {
|
||
content: "\f0f3";
|
||
}
|
||
.fa-certificate:before {
|
||
content: "\f0a3";
|
||
}
|
||
.fa-hand-o-right:before {
|
||
content: "\f0a4";
|
||
}
|
||
.fa-hand-o-left:before {
|
||
content: "\f0a5";
|
||
}
|
||
.fa-hand-o-up:before {
|
||
content: "\f0a6";
|
||
}
|
||
.fa-hand-o-down:before {
|
||
content: "\f0a7";
|
||
}
|
||
.fa-arrow-circle-left:before {
|
||
content: "\f0a8";
|
||
}
|
||
.fa-arrow-circle-right:before {
|
||
content: "\f0a9";
|
||
}
|
||
.fa-arrow-circle-up:before {
|
||
content: "\f0aa";
|
||
}
|
||
.fa-arrow-circle-down:before {
|
||
content: "\f0ab";
|
||
}
|
||
.fa-globe:before {
|
||
content: "\f0ac";
|
||
}
|
||
.fa-wrench:before {
|
||
content: "\f0ad";
|
||
}
|
||
.fa-tasks:before {
|
||
content: "\f0ae";
|
||
}
|
||
.fa-filter:before {
|
||
content: "\f0b0";
|
||
}
|
||
.fa-briefcase:before {
|
||
content: "\f0b1";
|
||
}
|
||
.fa-arrows-alt:before {
|
||
content: "\f0b2";
|
||
}
|
||
.fa-group:before,
|
||
.fa-users:before {
|
||
content: "\f0c0";
|
||
}
|
||
.fa-chain:before,
|
||
.fa-link:before {
|
||
content: "\f0c1";
|
||
}
|
||
.fa-cloud:before {
|
||
content: "\f0c2";
|
||
}
|
||
.fa-flask:before {
|
||
content: "\f0c3";
|
||
}
|
||
.fa-cut:before,
|
||
.fa-scissors:before {
|
||
content: "\f0c4";
|
||
}
|
||
.fa-copy:before,
|
||
.fa-files-o:before {
|
||
content: "\f0c5";
|
||
}
|
||
.fa-paperclip:before {
|
||
content: "\f0c6";
|
||
}
|
||
.fa-save:before,
|
||
.fa-floppy-o:before {
|
||
content: "\f0c7";
|
||
}
|
||
.fa-square:before {
|
||
content: "\f0c8";
|
||
}
|
||
.fa-navicon:before,
|
||
.fa-reorder:before,
|
||
.fa-bars:before {
|
||
content: "\f0c9";
|
||
}
|
||
.fa-list-ul:before {
|
||
content: "\f0ca";
|
||
}
|
||
.fa-list-ol:before {
|
||
content: "\f0cb";
|
||
}
|
||
.fa-strikethrough:before {
|
||
content: "\f0cc";
|
||
}
|
||
.fa-underline:before {
|
||
content: "\f0cd";
|
||
}
|
||
.fa-table:before {
|
||
content: "\f0ce";
|
||
}
|
||
.fa-magic:before {
|
||
content: "\f0d0";
|
||
}
|
||
.fa-truck:before {
|
||
content: "\f0d1";
|
||
}
|
||
.fa-pinterest:before {
|
||
content: "\f0d2";
|
||
}
|
||
.fa-pinterest-square:before {
|
||
content: "\f0d3";
|
||
}
|
||
.fa-google-plus-square:before {
|
||
content: "\f0d4";
|
||
}
|
||
.fa-google-plus:before {
|
||
content: "\f0d5";
|
||
}
|
||
.fa-money:before {
|
||
content: "\f0d6";
|
||
}
|
||
.fa-caret-down:before {
|
||
content: "\f0d7";
|
||
}
|
||
.fa-caret-up:before {
|
||
content: "\f0d8";
|
||
}
|
||
.fa-caret-left:before {
|
||
content: "\f0d9";
|
||
}
|
||
.fa-caret-right:before {
|
||
content: "\f0da";
|
||
}
|
||
.fa-columns:before {
|
||
content: "\f0db";
|
||
}
|
||
.fa-unsorted:before,
|
||
.fa-sort:before {
|
||
content: "\f0dc";
|
||
}
|
||
.fa-sort-down:before,
|
||
.fa-sort-desc:before {
|
||
content: "\f0dd";
|
||
}
|
||
.fa-sort-up:before,
|
||
.fa-sort-asc:before {
|
||
content: "\f0de";
|
||
}
|
||
.fa-envelope:before {
|
||
content: "\f0e0";
|
||
}
|
||
.fa-linkedin:before {
|
||
content: "\f0e1";
|
||
}
|
||
.fa-rotate-left:before,
|
||
.fa-undo:before {
|
||
content: "\f0e2";
|
||
}
|
||
.fa-legal:before,
|
||
.fa-gavel:before {
|
||
content: "\f0e3";
|
||
}
|
||
.fa-dashboard:before,
|
||
.fa-tachometer:before {
|
||
content: "\f0e4";
|
||
}
|
||
.fa-comment-o:before {
|
||
content: "\f0e5";
|
||
}
|
||
.fa-comments-o:before {
|
||
content: "\f0e6";
|
||
}
|
||
.fa-flash:before,
|
||
.fa-bolt:before {
|
||
content: "\f0e7";
|
||
}
|
||
.fa-sitemap:before {
|
||
content: "\f0e8";
|
||
}
|
||
.fa-umbrella:before {
|
||
content: "\f0e9";
|
||
}
|
||
.fa-paste:before,
|
||
.fa-clipboard:before {
|
||
content: "\f0ea";
|
||
}
|
||
.fa-lightbulb-o:before {
|
||
content: "\f0eb";
|
||
}
|
||
.fa-exchange:before {
|
||
content: "\f0ec";
|
||
}
|
||
.fa-cloud-download:before {
|
||
content: "\f0ed";
|
||
}
|
||
.fa-cloud-upload:before {
|
||
content: "\f0ee";
|
||
}
|
||
.fa-user-md:before {
|
||
content: "\f0f0";
|
||
}
|
||
.fa-stethoscope:before {
|
||
content: "\f0f1";
|
||
}
|
||
.fa-suitcase:before {
|
||
content: "\f0f2";
|
||
}
|
||
.fa-bell-o:before {
|
||
content: "\f0a2";
|
||
}
|
||
.fa-coffee:before {
|
||
content: "\f0f4";
|
||
}
|
||
.fa-cutlery:before {
|
||
content: "\f0f5";
|
||
}
|
||
.fa-file-text-o:before {
|
||
content: "\f0f6";
|
||
}
|
||
.fa-building-o:before {
|
||
content: "\f0f7";
|
||
}
|
||
.fa-hospital-o:before {
|
||
content: "\f0f8";
|
||
}
|
||
.fa-ambulance:before {
|
||
content: "\f0f9";
|
||
}
|
||
.fa-medkit:before {
|
||
content: "\f0fa";
|
||
}
|
||
.fa-fighter-jet:before {
|
||
content: "\f0fb";
|
||
}
|
||
.fa-beer:before {
|
||
content: "\f0fc";
|
||
}
|
||
.fa-h-square:before {
|
||
content: "\f0fd";
|
||
}
|
||
.fa-plus-square:before {
|
||
content: "\f0fe";
|
||
}
|
||
.fa-angle-double-left:before {
|
||
content: "\f100";
|
||
}
|
||
.fa-angle-double-right:before {
|
||
content: "\f101";
|
||
}
|
||
.fa-angle-double-up:before {
|
||
content: "\f102";
|
||
}
|
||
.fa-angle-double-down:before {
|
||
content: "\f103";
|
||
}
|
||
.fa-angle-left:before {
|
||
content: "\f104";
|
||
}
|
||
.fa-angle-right:before {
|
||
content: "\f105";
|
||
}
|
||
.fa-angle-up:before {
|
||
content: "\f106";
|
||
}
|
||
.fa-angle-down:before {
|
||
content: "\f107";
|
||
}
|
||
.fa-desktop:before {
|
||
content: "\f108";
|
||
}
|
||
.fa-laptop:before {
|
||
content: "\f109";
|
||
}
|
||
.fa-tablet:before {
|
||
content: "\f10a";
|
||
}
|
||
.fa-mobile-phone:before,
|
||
.fa-mobile:before {
|
||
content: "\f10b";
|
||
}
|
||
.fa-circle-o:before {
|
||
content: "\f10c";
|
||
}
|
||
.fa-quote-left:before {
|
||
content: "\f10d";
|
||
}
|
||
.fa-quote-right:before {
|
||
content: "\f10e";
|
||
}
|
||
.fa-spinner:before {
|
||
content: "\f110";
|
||
}
|
||
.fa-circle:before {
|
||
content: "\f111";
|
||
}
|
||
.fa-mail-reply:before,
|
||
.fa-reply:before {
|
||
content: "\f112";
|
||
}
|
||
.fa-github-alt:before {
|
||
content: "\f113";
|
||
}
|
||
.fa-folder-o:before {
|
||
content: "\f114";
|
||
}
|
||
.fa-folder-open-o:before {
|
||
content: "\f115";
|
||
}
|
||
.fa-smile-o:before {
|
||
content: "\f118";
|
||
}
|
||
.fa-frown-o:before {
|
||
content: "\f119";
|
||
}
|
||
.fa-meh-o:before {
|
||
content: "\f11a";
|
||
}
|
||
.fa-gamepad:before {
|
||
content: "\f11b";
|
||
}
|
||
.fa-keyboard-o:before {
|
||
content: "\f11c";
|
||
}
|
||
.fa-flag-o:before {
|
||
content: "\f11d";
|
||
}
|
||
.fa-flag-checkered:before {
|
||
content: "\f11e";
|
||
}
|
||
.fa-terminal:before {
|
||
content: "\f120";
|
||
}
|
||
.fa-code:before {
|
||
content: "\f121";
|
||
}
|
||
.fa-mail-reply-all:before,
|
||
.fa-reply-all:before {
|
||
content: "\f122";
|
||
}
|
||
.fa-star-half-empty:before,
|
||
.fa-star-half-full:before,
|
||
.fa-star-half-o:before {
|
||
content: "\f123";
|
||
}
|
||
.fa-location-arrow:before {
|
||
content: "\f124";
|
||
}
|
||
.fa-crop:before {
|
||
content: "\f125";
|
||
}
|
||
.fa-code-fork:before {
|
||
content: "\f126";
|
||
}
|
||
.fa-unlink:before,
|
||
.fa-chain-broken:before {
|
||
content: "\f127";
|
||
}
|
||
.fa-question:before {
|
||
content: "\f128";
|
||
}
|
||
.fa-info:before {
|
||
content: "\f129";
|
||
}
|
||
.fa-exclamation:before {
|
||
content: "\f12a";
|
||
}
|
||
.fa-superscript:before {
|
||
content: "\f12b";
|
||
}
|
||
.fa-subscript:before {
|
||
content: "\f12c";
|
||
}
|
||
.fa-eraser:before {
|
||
content: "\f12d";
|
||
}
|
||
.fa-puzzle-piece:before {
|
||
content: "\f12e";
|
||
}
|
||
.fa-microphone:before {
|
||
content: "\f130";
|
||
}
|
||
.fa-microphone-slash:before {
|
||
content: "\f131";
|
||
}
|
||
.fa-shield:before {
|
||
content: "\f132";
|
||
}
|
||
.fa-calendar-o:before {
|
||
content: "\f133";
|
||
}
|
||
.fa-fire-extinguisher:before {
|
||
content: "\f134";
|
||
}
|
||
.fa-rocket:before {
|
||
content: "\f135";
|
||
}
|
||
.fa-maxcdn:before {
|
||
content: "\f136";
|
||
}
|
||
.fa-chevron-circle-left:before {
|
||
content: "\f137";
|
||
}
|
||
.fa-chevron-circle-right:before {
|
||
content: "\f138";
|
||
}
|
||
.fa-chevron-circle-up:before {
|
||
content: "\f139";
|
||
}
|
||
.fa-chevron-circle-down:before {
|
||
content: "\f13a";
|
||
}
|
||
.fa-html5:before {
|
||
content: "\f13b";
|
||
}
|
||
.fa-css3:before {
|
||
content: "\f13c";
|
||
}
|
||
.fa-anchor:before {
|
||
content: "\f13d";
|
||
}
|
||
.fa-unlock-alt:before {
|
||
content: "\f13e";
|
||
}
|
||
.fa-bullseye:before {
|
||
content: "\f140";
|
||
}
|
||
.fa-ellipsis-h:before {
|
||
content: "\f141";
|
||
}
|
||
.fa-ellipsis-v:before {
|
||
content: "\f142";
|
||
}
|
||
.fa-rss-square:before {
|
||
content: "\f143";
|
||
}
|
||
.fa-play-circle:before {
|
||
content: "\f144";
|
||
}
|
||
.fa-ticket:before {
|
||
content: "\f145";
|
||
}
|
||
.fa-minus-square:before {
|
||
content: "\f146";
|
||
}
|
||
.fa-minus-square-o:before {
|
||
content: "\f147";
|
||
}
|
||
.fa-level-up:before {
|
||
content: "\f148";
|
||
}
|
||
.fa-level-down:before {
|
||
content: "\f149";
|
||
}
|
||
.fa-check-square:before {
|
||
content: "\f14a";
|
||
}
|
||
.fa-pencil-square:before {
|
||
content: "\f14b";
|
||
}
|
||
.fa-external-link-square:before {
|
||
content: "\f14c";
|
||
}
|
||
.fa-share-square:before {
|
||
content: "\f14d";
|
||
}
|
||
.fa-compass:before {
|
||
content: "\f14e";
|
||
}
|
||
.fa-toggle-down:before,
|
||
.fa-caret-square-o-down:before {
|
||
content: "\f150";
|
||
}
|
||
.fa-toggle-up:before,
|
||
.fa-caret-square-o-up:before {
|
||
content: "\f151";
|
||
}
|
||
.fa-toggle-right:before,
|
||
.fa-caret-square-o-right:before {
|
||
content: "\f152";
|
||
}
|
||
.fa-euro:before,
|
||
.fa-eur:before {
|
||
content: "\f153";
|
||
}
|
||
.fa-gbp:before {
|
||
content: "\f154";
|
||
}
|
||
.fa-dollar:before,
|
||
.fa-usd:before {
|
||
content: "\f155";
|
||
}
|
||
.fa-rupee:before,
|
||
.fa-inr:before {
|
||
content: "\f156";
|
||
}
|
||
.fa-cny:before,
|
||
.fa-rmb:before,
|
||
.fa-yen:before,
|
||
.fa-jpy:before {
|
||
content: "\f157";
|
||
}
|
||
.fa-ruble:before,
|
||
.fa-rouble:before,
|
||
.fa-rub:before {
|
||
content: "\f158";
|
||
}
|
||
.fa-won:before,
|
||
.fa-krw:before {
|
||
content: "\f159";
|
||
}
|
||
.fa-bitcoin:before,
|
||
.fa-btc:before {
|
||
content: "\f15a";
|
||
}
|
||
.fa-file:before {
|
||
content: "\f15b";
|
||
}
|
||
.fa-file-text:before {
|
||
content: "\f15c";
|
||
}
|
||
.fa-sort-alpha-asc:before {
|
||
content: "\f15d";
|
||
}
|
||
.fa-sort-alpha-desc:before {
|
||
content: "\f15e";
|
||
}
|
||
.fa-sort-amount-asc:before {
|
||
content: "\f160";
|
||
}
|
||
.fa-sort-amount-desc:before {
|
||
content: "\f161";
|
||
}
|
||
.fa-sort-numeric-asc:before {
|
||
content: "\f162";
|
||
}
|
||
.fa-sort-numeric-desc:before {
|
||
content: "\f163";
|
||
}
|
||
.fa-thumbs-up:before {
|
||
content: "\f164";
|
||
}
|
||
.fa-thumbs-down:before {
|
||
content: "\f165";
|
||
}
|
||
.fa-youtube-square:before {
|
||
content: "\f166";
|
||
}
|
||
.fa-youtube:before {
|
||
content: "\f167";
|
||
}
|
||
.fa-xing:before {
|
||
content: "\f168";
|
||
}
|
||
.fa-xing-square:before {
|
||
content: "\f169";
|
||
}
|
||
.fa-youtube-play:before {
|
||
content: "\f16a";
|
||
}
|
||
.fa-dropbox:before {
|
||
content: "\f16b";
|
||
}
|
||
.fa-stack-overflow:before {
|
||
content: "\f16c";
|
||
}
|
||
.fa-instagram:before {
|
||
content: "\f16d";
|
||
}
|
||
.fa-flickr:before {
|
||
content: "\f16e";
|
||
}
|
||
.fa-adn:before {
|
||
content: "\f170";
|
||
}
|
||
.fa-bitbucket:before {
|
||
content: "\f171";
|
||
}
|
||
.fa-bitbucket-square:before {
|
||
content: "\f172";
|
||
}
|
||
.fa-tumblr:before {
|
||
content: "\f173";
|
||
}
|
||
.fa-tumblr-square:before {
|
||
content: "\f174";
|
||
}
|
||
.fa-long-arrow-down:before {
|
||
content: "\f175";
|
||
}
|
||
.fa-long-arrow-up:before {
|
||
content: "\f176";
|
||
}
|
||
.fa-long-arrow-left:before {
|
||
content: "\f177";
|
||
}
|
||
.fa-long-arrow-right:before {
|
||
content: "\f178";
|
||
}
|
||
.fa-apple:before {
|
||
content: "\f179";
|
||
}
|
||
.fa-windows:before {
|
||
content: "\f17a";
|
||
}
|
||
.fa-android:before {
|
||
content: "\f17b";
|
||
}
|
||
.fa-linux:before {
|
||
content: "\f17c";
|
||
}
|
||
.fa-dribbble:before {
|
||
content: "\f17d";
|
||
}
|
||
.fa-skype:before {
|
||
content: "\f17e";
|
||
}
|
||
.fa-foursquare:before {
|
||
content: "\f180";
|
||
}
|
||
.fa-trello:before {
|
||
content: "\f181";
|
||
}
|
||
.fa-female:before {
|
||
content: "\f182";
|
||
}
|
||
.fa-male:before {
|
||
content: "\f183";
|
||
}
|
||
.fa-gittip:before {
|
||
content: "\f184";
|
||
}
|
||
.fa-sun-o:before {
|
||
content: "\f185";
|
||
}
|
||
.fa-moon-o:before {
|
||
content: "\f186";
|
||
}
|
||
.fa-archive:before {
|
||
content: "\f187";
|
||
}
|
||
.fa-bug:before {
|
||
content: "\f188";
|
||
}
|
||
.fa-vk:before {
|
||
content: "\f189";
|
||
}
|
||
.fa-weibo:before {
|
||
content: "\f18a";
|
||
}
|
||
.fa-renren:before {
|
||
content: "\f18b";
|
||
}
|
||
.fa-pagelines:before {
|
||
content: "\f18c";
|
||
}
|
||
.fa-stack-exchange:before {
|
||
content: "\f18d";
|
||
}
|
||
.fa-arrow-circle-o-right:before {
|
||
content: "\f18e";
|
||
}
|
||
.fa-arrow-circle-o-left:before {
|
||
content: "\f190";
|
||
}
|
||
.fa-toggle-left:before,
|
||
.fa-caret-square-o-left:before {
|
||
content: "\f191";
|
||
}
|
||
.fa-dot-circle-o:before {
|
||
content: "\f192";
|
||
}
|
||
.fa-wheelchair:before {
|
||
content: "\f193";
|
||
}
|
||
.fa-vimeo-square:before {
|
||
content: "\f194";
|
||
}
|
||
.fa-turkish-lira:before,
|
||
.fa-try:before {
|
||
content: "\f195";
|
||
}
|
||
.fa-plus-square-o:before {
|
||
content: "\f196";
|
||
}
|
||
.fa-space-shuttle:before {
|
||
content: "\f197";
|
||
}
|
||
.fa-slack:before {
|
||
content: "\f198";
|
||
}
|
||
.fa-envelope-square:before {
|
||
content: "\f199";
|
||
}
|
||
.fa-wordpress:before {
|
||
content: "\f19a";
|
||
}
|
||
.fa-openid:before {
|
||
content: "\f19b";
|
||
}
|
||
.fa-institution:before,
|
||
.fa-bank:before,
|
||
.fa-university:before {
|
||
content: "\f19c";
|
||
}
|
||
.fa-mortar-board:before,
|
||
.fa-graduation-cap:before {
|
||
content: "\f19d";
|
||
}
|
||
.fa-yahoo:before {
|
||
content: "\f19e";
|
||
}
|
||
.fa-google:before {
|
||
content: "\f1a0";
|
||
}
|
||
.fa-reddit:before {
|
||
content: "\f1a1";
|
||
}
|
||
.fa-reddit-square:before {
|
||
content: "\f1a2";
|
||
}
|
||
.fa-stumbleupon-circle:before {
|
||
content: "\f1a3";
|
||
}
|
||
.fa-stumbleupon:before {
|
||
content: "\f1a4";
|
||
}
|
||
.fa-delicious:before {
|
||
content: "\f1a5";
|
||
}
|
||
.fa-digg:before {
|
||
content: "\f1a6";
|
||
}
|
||
.fa-pied-piper:before {
|
||
content: "\f1a7";
|
||
}
|
||
.fa-pied-piper-alt:before {
|
||
content: "\f1a8";
|
||
}
|
||
.fa-drupal:before {
|
||
content: "\f1a9";
|
||
}
|
||
.fa-joomla:before {
|
||
content: "\f1aa";
|
||
}
|
||
.fa-language:before {
|
||
content: "\f1ab";
|
||
}
|
||
.fa-fax:before {
|
||
content: "\f1ac";
|
||
}
|
||
.fa-building:before {
|
||
content: "\f1ad";
|
||
}
|
||
.fa-child:before {
|
||
content: "\f1ae";
|
||
}
|
||
.fa-paw:before {
|
||
content: "\f1b0";
|
||
}
|
||
.fa-spoon:before {
|
||
content: "\f1b1";
|
||
}
|
||
.fa-cube:before {
|
||
content: "\f1b2";
|
||
}
|
||
.fa-cubes:before {
|
||
content: "\f1b3";
|
||
}
|
||
.fa-behance:before {
|
||
content: "\f1b4";
|
||
}
|
||
.fa-behance-square:before {
|
||
content: "\f1b5";
|
||
}
|
||
.fa-steam:before {
|
||
content: "\f1b6";
|
||
}
|
||
.fa-steam-square:before {
|
||
content: "\f1b7";
|
||
}
|
||
.fa-recycle:before {
|
||
content: "\f1b8";
|
||
}
|
||
.fa-automobile:before,
|
||
.fa-car:before {
|
||
content: "\f1b9";
|
||
}
|
||
.fa-cab:before,
|
||
.fa-taxi:before {
|
||
content: "\f1ba";
|
||
}
|
||
.fa-tree:before {
|
||
content: "\f1bb";
|
||
}
|
||
.fa-spotify:before {
|
||
content: "\f1bc";
|
||
}
|
||
.fa-deviantart:before {
|
||
content: "\f1bd";
|
||
}
|
||
.fa-soundcloud:before {
|
||
content: "\f1be";
|
||
}
|
||
.fa-database:before {
|
||
content: "\f1c0";
|
||
}
|
||
.fa-file-pdf-o:before {
|
||
content: "\f1c1";
|
||
}
|
||
.fa-file-word-o:before {
|
||
content: "\f1c2";
|
||
}
|
||
.fa-file-excel-o:before {
|
||
content: "\f1c3";
|
||
}
|
||
.fa-file-powerpoint-o:before {
|
||
content: "\f1c4";
|
||
}
|
||
.fa-file-photo-o:before,
|
||
.fa-file-picture-o:before,
|
||
.fa-file-image-o:before {
|
||
content: "\f1c5";
|
||
}
|
||
.fa-file-zip-o:before,
|
||
.fa-file-archive-o:before {
|
||
content: "\f1c6";
|
||
}
|
||
.fa-file-sound-o:before,
|
||
.fa-file-audio-o:before {
|
||
content: "\f1c7";
|
||
}
|
||
.fa-file-movie-o:before,
|
||
.fa-file-video-o:before {
|
||
content: "\f1c8";
|
||
}
|
||
.fa-file-code-o:before {
|
||
content: "\f1c9";
|
||
}
|
||
.fa-vine:before {
|
||
content: "\f1ca";
|
||
}
|
||
.fa-codepen:before {
|
||
content: "\f1cb";
|
||
}
|
||
.fa-jsfiddle:before {
|
||
content: "\f1cc";
|
||
}
|
||
.fa-life-bouy:before,
|
||
.fa-life-buoy:before,
|
||
.fa-life-saver:before,
|
||
.fa-support:before,
|
||
.fa-life-ring:before {
|
||
content: "\f1cd";
|
||
}
|
||
.fa-circle-o-notch:before {
|
||
content: "\f1ce";
|
||
}
|
||
.fa-ra:before,
|
||
.fa-rebel:before {
|
||
content: "\f1d0";
|
||
}
|
||
.fa-ge:before,
|
||
.fa-empire:before {
|
||
content: "\f1d1";
|
||
}
|
||
.fa-git-square:before {
|
||
content: "\f1d2";
|
||
}
|
||
.fa-git:before {
|
||
content: "\f1d3";
|
||
}
|
||
.fa-hacker-news:before {
|
||
content: "\f1d4";
|
||
}
|
||
.fa-tencent-weibo:before {
|
||
content: "\f1d5";
|
||
}
|
||
.fa-qq:before {
|
||
content: "\f1d6";
|
||
}
|
||
.fa-wechat:before,
|
||
.fa-weixin:before {
|
||
content: "\f1d7";
|
||
}
|
||
.fa-send:before,
|
||
.fa-paper-plane:before {
|
||
content: "\f1d8";
|
||
}
|
||
.fa-send-o:before,
|
||
.fa-paper-plane-o:before {
|
||
content: "\f1d9";
|
||
}
|
||
.fa-history:before {
|
||
content: "\f1da";
|
||
}
|
||
.fa-circle-thin:before {
|
||
content: "\f1db";
|
||
}
|
||
.fa-header:before {
|
||
content: "\f1dc";
|
||
}
|
||
.fa-paragraph:before {
|
||
content: "\f1dd";
|
||
}
|
||
.fa-sliders:before {
|
||
content: "\f1de";
|
||
}
|
||
.fa-share-alt:before {
|
||
content: "\f1e0";
|
||
}
|
||
.fa-share-alt-square:before {
|
||
content: "\f1e1";
|
||
}
|
||
.fa-bomb:before {
|
||
content: "\f1e2";
|
||
}
|
||
.fa-soccer-ball-o:before,
|
||
.fa-futbol-o:before {
|
||
content: "\f1e3";
|
||
}
|
||
.fa-tty:before {
|
||
content: "\f1e4";
|
||
}
|
||
.fa-binoculars:before {
|
||
content: "\f1e5";
|
||
}
|
||
.fa-plug:before {
|
||
content: "\f1e6";
|
||
}
|
||
.fa-slideshare:before {
|
||
content: "\f1e7";
|
||
}
|
||
.fa-twitch:before {
|
||
content: "\f1e8";
|
||
}
|
||
.fa-yelp:before {
|
||
content: "\f1e9";
|
||
}
|
||
.fa-newspaper-o:before {
|
||
content: "\f1ea";
|
||
}
|
||
.fa-wifi:before {
|
||
content: "\f1eb";
|
||
}
|
||
.fa-calculator:before {
|
||
content: "\f1ec";
|
||
}
|
||
.fa-paypal:before {
|
||
content: "\f1ed";
|
||
}
|
||
.fa-google-wallet:before {
|
||
content: "\f1ee";
|
||
}
|
||
.fa-cc-visa:before {
|
||
content: "\f1f0";
|
||
}
|
||
.fa-cc-mastercard:before {
|
||
content: "\f1f1";
|
||
}
|
||
.fa-cc-discover:before {
|
||
content: "\f1f2";
|
||
}
|
||
.fa-cc-amex:before {
|
||
content: "\f1f3";
|
||
}
|
||
.fa-cc-paypal:before {
|
||
content: "\f1f4";
|
||
}
|
||
.fa-cc-stripe:before {
|
||
content: "\f1f5";
|
||
}
|
||
.fa-bell-slash:before {
|
||
content: "\f1f6";
|
||
}
|
||
.fa-bell-slash-o:before {
|
||
content: "\f1f7";
|
||
}
|
||
.fa-trash:before {
|
||
content: "\f1f8";
|
||
}
|
||
.fa-copyright:before {
|
||
content: "\f1f9";
|
||
}
|
||
.fa-at:before {
|
||
content: "\f1fa";
|
||
}
|
||
.fa-eyedropper:before {
|
||
content: "\f1fb";
|
||
}
|
||
.fa-paint-brush:before {
|
||
content: "\f1fc";
|
||
}
|
||
.fa-birthday-cake:before {
|
||
content: "\f1fd";
|
||
}
|
||
.fa-area-chart:before {
|
||
content: "\f1fe";
|
||
}
|
||
.fa-pie-chart:before {
|
||
content: "\f200";
|
||
}
|
||
.fa-line-chart:before {
|
||
content: "\f201";
|
||
}
|
||
.fa-lastfm:before {
|
||
content: "\f202";
|
||
}
|
||
.fa-lastfm-square:before {
|
||
content: "\f203";
|
||
}
|
||
.fa-toggle-off:before {
|
||
content: "\f204";
|
||
}
|
||
.fa-toggle-on:before {
|
||
content: "\f205";
|
||
}
|
||
.fa-bicycle:before {
|
||
content: "\f206";
|
||
}
|
||
.fa-bus:before {
|
||
content: "\f207";
|
||
}
|
||
.fa-ioxhost:before {
|
||
content: "\f208";
|
||
}
|
||
.fa-angellist:before {
|
||
content: "\f209";
|
||
}
|
||
.fa-cc:before {
|
||
content: "\f20a";
|
||
}
|
||
.fa-shekel:before,
|
||
.fa-sheqel:before,
|
||
.fa-ils:before {
|
||
content: "\f20b";
|
||
}
|
||
.fa-meanpath:before {
|
||
content: "\f20c";
|
||
}
|
||
/*!
|
||
*
|
||
* IPython base
|
||
*
|
||
*/
|
||
.modal.fade .modal-dialog {
|
||
-webkit-transform: translate(0, 0);
|
||
-ms-transform: translate(0, 0);
|
||
-o-transform: translate(0, 0);
|
||
transform: translate(0, 0);
|
||
}
|
||
code {
|
||
color: #000;
|
||
}
|
||
pre {
|
||
font-size: inherit;
|
||
line-height: inherit;
|
||
}
|
||
label {
|
||
font-weight: normal;
|
||
}
|
||
/* Make the page background atleast 100% the height of the view port */
|
||
/* Make the page itself atleast 70% the height of the view port */
|
||
.border-box-sizing {
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
}
|
||
.corner-all {
|
||
border-radius: 2px;
|
||
}
|
||
.no-padding {
|
||
padding: 0px;
|
||
}
|
||
/* Flexible box model classes */
|
||
/* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
|
||
/* This file is a compatability layer. It allows the usage of flexible box
|
||
model layouts accross multiple browsers, including older browsers. The newest,
|
||
universal implementation of the flexible box model is used when available (see
|
||
`Modern browsers` comments below). Browsers that are known to implement this
|
||
new spec completely include:
|
||
|
||
Firefox 28.0+
|
||
Chrome 29.0+
|
||
Internet Explorer 11+
|
||
Opera 17.0+
|
||
|
||
Browsers not listed, including Safari, are supported via the styling under the
|
||
`Old browsers` comments below.
|
||
*/
|
||
.hbox {
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: horizontal;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: horizontal;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: horizontal;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: stretch;
|
||
}
|
||
.hbox > * {
|
||
/* Old browsers */
|
||
-webkit-box-flex: 0;
|
||
-moz-box-flex: 0;
|
||
box-flex: 0;
|
||
/* Modern browsers */
|
||
flex: none;
|
||
}
|
||
.vbox {
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: vertical;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: vertical;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
}
|
||
.vbox > * {
|
||
/* Old browsers */
|
||
-webkit-box-flex: 0;
|
||
-moz-box-flex: 0;
|
||
box-flex: 0;
|
||
/* Modern browsers */
|
||
flex: none;
|
||
}
|
||
.hbox.reverse,
|
||
.vbox.reverse,
|
||
.reverse {
|
||
/* Old browsers */
|
||
-webkit-box-direction: reverse;
|
||
-moz-box-direction: reverse;
|
||
box-direction: reverse;
|
||
/* Modern browsers */
|
||
flex-direction: row-reverse;
|
||
}
|
||
.hbox.box-flex0,
|
||
.vbox.box-flex0,
|
||
.box-flex0 {
|
||
/* Old browsers */
|
||
-webkit-box-flex: 0;
|
||
-moz-box-flex: 0;
|
||
box-flex: 0;
|
||
/* Modern browsers */
|
||
flex: none;
|
||
width: auto;
|
||
}
|
||
.hbox.box-flex1,
|
||
.vbox.box-flex1,
|
||
.box-flex1 {
|
||
/* Old browsers */
|
||
-webkit-box-flex: 1;
|
||
-moz-box-flex: 1;
|
||
box-flex: 1;
|
||
/* Modern browsers */
|
||
flex: 1;
|
||
}
|
||
.hbox.box-flex,
|
||
.vbox.box-flex,
|
||
.box-flex {
|
||
/* Old browsers */
|
||
/* Old browsers */
|
||
-webkit-box-flex: 1;
|
||
-moz-box-flex: 1;
|
||
box-flex: 1;
|
||
/* Modern browsers */
|
||
flex: 1;
|
||
}
|
||
.hbox.box-flex2,
|
||
.vbox.box-flex2,
|
||
.box-flex2 {
|
||
/* Old browsers */
|
||
-webkit-box-flex: 2;
|
||
-moz-box-flex: 2;
|
||
box-flex: 2;
|
||
/* Modern browsers */
|
||
flex: 2;
|
||
}
|
||
.box-group1 {
|
||
/* Deprecated */
|
||
-webkit-box-flex-group: 1;
|
||
-moz-box-flex-group: 1;
|
||
box-flex-group: 1;
|
||
}
|
||
.box-group2 {
|
||
/* Deprecated */
|
||
-webkit-box-flex-group: 2;
|
||
-moz-box-flex-group: 2;
|
||
box-flex-group: 2;
|
||
}
|
||
.hbox.start,
|
||
.vbox.start,
|
||
.start {
|
||
/* Old browsers */
|
||
-webkit-box-pack: start;
|
||
-moz-box-pack: start;
|
||
box-pack: start;
|
||
/* Modern browsers */
|
||
justify-content: flex-start;
|
||
}
|
||
.hbox.end,
|
||
.vbox.end,
|
||
.end {
|
||
/* Old browsers */
|
||
-webkit-box-pack: end;
|
||
-moz-box-pack: end;
|
||
box-pack: end;
|
||
/* Modern browsers */
|
||
justify-content: flex-end;
|
||
}
|
||
.hbox.center,
|
||
.vbox.center,
|
||
.center {
|
||
/* Old browsers */
|
||
-webkit-box-pack: center;
|
||
-moz-box-pack: center;
|
||
box-pack: center;
|
||
/* Modern browsers */
|
||
justify-content: center;
|
||
}
|
||
.hbox.baseline,
|
||
.vbox.baseline,
|
||
.baseline {
|
||
/* Old browsers */
|
||
-webkit-box-pack: baseline;
|
||
-moz-box-pack: baseline;
|
||
box-pack: baseline;
|
||
/* Modern browsers */
|
||
justify-content: baseline;
|
||
}
|
||
.hbox.stretch,
|
||
.vbox.stretch,
|
||
.stretch {
|
||
/* Old browsers */
|
||
-webkit-box-pack: stretch;
|
||
-moz-box-pack: stretch;
|
||
box-pack: stretch;
|
||
/* Modern browsers */
|
||
justify-content: stretch;
|
||
}
|
||
.hbox.align-start,
|
||
.vbox.align-start,
|
||
.align-start {
|
||
/* Old browsers */
|
||
-webkit-box-align: start;
|
||
-moz-box-align: start;
|
||
box-align: start;
|
||
/* Modern browsers */
|
||
align-items: flex-start;
|
||
}
|
||
.hbox.align-end,
|
||
.vbox.align-end,
|
||
.align-end {
|
||
/* Old browsers */
|
||
-webkit-box-align: end;
|
||
-moz-box-align: end;
|
||
box-align: end;
|
||
/* Modern browsers */
|
||
align-items: flex-end;
|
||
}
|
||
.hbox.align-center,
|
||
.vbox.align-center,
|
||
.align-center {
|
||
/* Old browsers */
|
||
-webkit-box-align: center;
|
||
-moz-box-align: center;
|
||
box-align: center;
|
||
/* Modern browsers */
|
||
align-items: center;
|
||
}
|
||
.hbox.align-baseline,
|
||
.vbox.align-baseline,
|
||
.align-baseline {
|
||
/* Old browsers */
|
||
-webkit-box-align: baseline;
|
||
-moz-box-align: baseline;
|
||
box-align: baseline;
|
||
/* Modern browsers */
|
||
align-items: baseline;
|
||
}
|
||
.hbox.align-stretch,
|
||
.vbox.align-stretch,
|
||
.align-stretch {
|
||
/* Old browsers */
|
||
-webkit-box-align: stretch;
|
||
-moz-box-align: stretch;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
align-items: stretch;
|
||
}
|
||
div.error {
|
||
margin: 2em;
|
||
text-align: center;
|
||
}
|
||
div.error > h1 {
|
||
font-size: 500%;
|
||
line-height: normal;
|
||
}
|
||
div.error > p {
|
||
font-size: 200%;
|
||
line-height: normal;
|
||
}
|
||
div.traceback-wrapper {
|
||
text-align: left;
|
||
max-width: 800px;
|
||
margin: auto;
|
||
}
|
||
/**
|
||
* Primary styles
|
||
*
|
||
* Author: Jupyter Development Team
|
||
*/
|
||
body {
|
||
background-color: #fff;
|
||
/* This makes sure that the body covers the entire window and needs to
|
||
be in a different element than the display: box in wrapper below */
|
||
position: absolute;
|
||
left: 0px;
|
||
right: 0px;
|
||
top: 0px;
|
||
bottom: 0px;
|
||
overflow: visible;
|
||
}
|
||
body > #header {
|
||
/* Initially hidden to prevent FLOUC */
|
||
display: none;
|
||
background-color: #fff;
|
||
/* Display over codemirror */
|
||
position: relative;
|
||
z-index: 100;
|
||
}
|
||
body > #header #header-container {
|
||
padding-bottom: 5px;
|
||
padding-top: 5px;
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
}
|
||
body > #header .header-bar {
|
||
width: 100%;
|
||
height: 1px;
|
||
background: #e7e7e7;
|
||
margin-bottom: -1px;
|
||
}
|
||
@media print {
|
||
body > #header {
|
||
display: none !important;
|
||
}
|
||
}
|
||
#header-spacer {
|
||
width: 100%;
|
||
visibility: hidden;
|
||
}
|
||
@media print {
|
||
#header-spacer {
|
||
display: none;
|
||
}
|
||
}
|
||
#ipython_notebook {
|
||
padding-left: 0px;
|
||
padding-top: 1px;
|
||
padding-bottom: 1px;
|
||
}
|
||
@media (max-width: 991px) {
|
||
#ipython_notebook {
|
||
margin-left: 10px;
|
||
}
|
||
}
|
||
[dir="rtl"] #ipython_notebook {
|
||
float: right !important;
|
||
}
|
||
#noscript {
|
||
width: auto;
|
||
padding-top: 16px;
|
||
padding-bottom: 16px;
|
||
text-align: center;
|
||
font-size: 22px;
|
||
color: red;
|
||
font-weight: bold;
|
||
}
|
||
#ipython_notebook img {
|
||
height: 28px;
|
||
}
|
||
#site {
|
||
width: 100%;
|
||
display: none;
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
overflow: auto;
|
||
}
|
||
@media print {
|
||
#site {
|
||
height: auto !important;
|
||
}
|
||
}
|
||
/* Smaller buttons */
|
||
.ui-button .ui-button-text {
|
||
padding: 0.2em 0.8em;
|
||
font-size: 77%;
|
||
}
|
||
input.ui-button {
|
||
padding: 0.3em 0.9em;
|
||
}
|
||
span#login_widget {
|
||
float: right;
|
||
}
|
||
span#login_widget > .button,
|
||
#logout {
|
||
color: #333;
|
||
background-color: #fff;
|
||
border-color: #ccc;
|
||
}
|
||
span#login_widget > .button:focus,
|
||
#logout:focus,
|
||
span#login_widget > .button.focus,
|
||
#logout.focus {
|
||
color: #333;
|
||
background-color: #e6e6e6;
|
||
border-color: #8c8c8c;
|
||
}
|
||
span#login_widget > .button:hover,
|
||
#logout:hover {
|
||
color: #333;
|
||
background-color: #e6e6e6;
|
||
border-color: #adadad;
|
||
}
|
||
span#login_widget > .button:active,
|
||
#logout:active,
|
||
span#login_widget > .button.active,
|
||
#logout.active,
|
||
.open > .dropdown-togglespan#login_widget > .button,
|
||
.open > .dropdown-toggle#logout {
|
||
color: #333;
|
||
background-color: #e6e6e6;
|
||
border-color: #adadad;
|
||
}
|
||
span#login_widget > .button:active:hover,
|
||
#logout:active:hover,
|
||
span#login_widget > .button.active:hover,
|
||
#logout.active:hover,
|
||
.open > .dropdown-togglespan#login_widget > .button:hover,
|
||
.open > .dropdown-toggle#logout:hover,
|
||
span#login_widget > .button:active:focus,
|
||
#logout:active:focus,
|
||
span#login_widget > .button.active:focus,
|
||
#logout.active:focus,
|
||
.open > .dropdown-togglespan#login_widget > .button:focus,
|
||
.open > .dropdown-toggle#logout:focus,
|
||
span#login_widget > .button:active.focus,
|
||
#logout:active.focus,
|
||
span#login_widget > .button.active.focus,
|
||
#logout.active.focus,
|
||
.open > .dropdown-togglespan#login_widget > .button.focus,
|
||
.open > .dropdown-toggle#logout.focus {
|
||
color: #333;
|
||
background-color: #d4d4d4;
|
||
border-color: #8c8c8c;
|
||
}
|
||
span#login_widget > .button:active,
|
||
#logout:active,
|
||
span#login_widget > .button.active,
|
||
#logout.active,
|
||
.open > .dropdown-togglespan#login_widget > .button,
|
||
.open > .dropdown-toggle#logout {
|
||
background-image: none;
|
||
}
|
||
span#login_widget > .button.disabled:hover,
|
||
#logout.disabled:hover,
|
||
span#login_widget > .button[disabled]:hover,
|
||
#logout[disabled]:hover,
|
||
fieldset[disabled] span#login_widget > .button:hover,
|
||
fieldset[disabled] #logout:hover,
|
||
span#login_widget > .button.disabled:focus,
|
||
#logout.disabled:focus,
|
||
span#login_widget > .button[disabled]:focus,
|
||
#logout[disabled]:focus,
|
||
fieldset[disabled] span#login_widget > .button:focus,
|
||
fieldset[disabled] #logout:focus,
|
||
span#login_widget > .button.disabled.focus,
|
||
#logout.disabled.focus,
|
||
span#login_widget > .button[disabled].focus,
|
||
#logout[disabled].focus,
|
||
fieldset[disabled] span#login_widget > .button.focus,
|
||
fieldset[disabled] #logout.focus {
|
||
background-color: #fff;
|
||
border-color: #ccc;
|
||
}
|
||
span#login_widget > .button .badge,
|
||
#logout .badge {
|
||
color: #fff;
|
||
background-color: #333;
|
||
}
|
||
.nav-header {
|
||
text-transform: none;
|
||
}
|
||
#header > span {
|
||
margin-top: 10px;
|
||
}
|
||
.modal_stretch .modal-dialog {
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: vertical;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: vertical;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
min-height: 80vh;
|
||
}
|
||
.modal_stretch .modal-dialog .modal-body {
|
||
max-height: calc(100vh - 200px);
|
||
overflow: auto;
|
||
flex: 1;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.modal .modal-dialog {
|
||
width: 700px;
|
||
}
|
||
}
|
||
@media (min-width: 768px) {
|
||
select.form-control {
|
||
margin-left: 12px;
|
||
margin-right: 12px;
|
||
}
|
||
}
|
||
/*!
|
||
*
|
||
* IPython auth
|
||
*
|
||
*/
|
||
.center-nav {
|
||
display: inline-block;
|
||
margin-bottom: -4px;
|
||
}
|
||
/*!
|
||
*
|
||
* IPython tree view
|
||
*
|
||
*/
|
||
/* We need an invisible input field on top of the sentense*/
|
||
/* "Drag file onto the list ..." */
|
||
.alternate_upload {
|
||
background-color: none;
|
||
display: inline;
|
||
}
|
||
.alternate_upload.form {
|
||
padding: 0;
|
||
margin: 0;
|
||
}
|
||
.alternate_upload input.fileinput {
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
display: inline;
|
||
opacity: 0;
|
||
z-index: 2;
|
||
width: 12ex;
|
||
margin-right: -12ex;
|
||
}
|
||
.alternate_upload .btn-upload {
|
||
height: 22px;
|
||
}
|
||
/**
|
||
* Primary styles
|
||
*
|
||
* Author: Jupyter Development Team
|
||
*/
|
||
[dir="rtl"] #tabs li {
|
||
float: right;
|
||
}
|
||
ul#tabs {
|
||
margin-bottom: 4px;
|
||
}
|
||
[dir="rtl"] ul#tabs {
|
||
margin-right: 0px;
|
||
}
|
||
ul#tabs a {
|
||
padding-top: 6px;
|
||
padding-bottom: 4px;
|
||
}
|
||
ul.breadcrumb a:focus,
|
||
ul.breadcrumb a:hover {
|
||
text-decoration: none;
|
||
}
|
||
ul.breadcrumb i.icon-home {
|
||
font-size: 16px;
|
||
margin-right: 4px;
|
||
}
|
||
ul.breadcrumb span {
|
||
color: #5e5e5e;
|
||
}
|
||
.list_toolbar {
|
||
padding: 4px 0 4px 0;
|
||
vertical-align: middle;
|
||
}
|
||
.list_toolbar .tree-buttons {
|
||
padding-top: 1px;
|
||
}
|
||
[dir="rtl"] .list_toolbar .tree-buttons {
|
||
float: left !important;
|
||
}
|
||
[dir="rtl"] .list_toolbar .pull-right {
|
||
padding-top: 1px;
|
||
float: left !important;
|
||
}
|
||
[dir="rtl"] .list_toolbar .pull-left {
|
||
float: right !important;
|
||
}
|
||
.dynamic-buttons {
|
||
padding-top: 3px;
|
||
display: inline-block;
|
||
}
|
||
.list_toolbar [class*="span"] {
|
||
min-height: 24px;
|
||
}
|
||
.list_header {
|
||
font-weight: bold;
|
||
background-color: #EEE;
|
||
}
|
||
.list_placeholder {
|
||
font-weight: bold;
|
||
padding-top: 4px;
|
||
padding-bottom: 4px;
|
||
padding-left: 7px;
|
||
padding-right: 7px;
|
||
}
|
||
.list_container {
|
||
margin-top: 4px;
|
||
margin-bottom: 20px;
|
||
border: 1px solid #ddd;
|
||
border-radius: 2px;
|
||
}
|
||
.list_container > div {
|
||
border-bottom: 1px solid #ddd;
|
||
}
|
||
.list_container > div:hover .list-item {
|
||
background-color: red;
|
||
}
|
||
.list_container > div:last-child {
|
||
border: none;
|
||
}
|
||
.list_item:hover .list_item {
|
||
background-color: #ddd;
|
||
}
|
||
.list_item a {
|
||
text-decoration: none;
|
||
}
|
||
.list_item:hover {
|
||
background-color: #fafafa;
|
||
}
|
||
.list_header > div,
|
||
.list_item > div {
|
||
padding-top: 4px;
|
||
padding-bottom: 4px;
|
||
padding-left: 7px;
|
||
padding-right: 7px;
|
||
line-height: 22px;
|
||
}
|
||
.list_header > div input,
|
||
.list_item > div input {
|
||
margin-right: 7px;
|
||
margin-left: 14px;
|
||
vertical-align: baseline;
|
||
line-height: 22px;
|
||
position: relative;
|
||
top: -1px;
|
||
}
|
||
.list_header > div .item_link,
|
||
.list_item > div .item_link {
|
||
margin-left: -1px;
|
||
vertical-align: baseline;
|
||
line-height: 22px;
|
||
}
|
||
.new-file input[type=checkbox] {
|
||
visibility: hidden;
|
||
}
|
||
.item_name {
|
||
line-height: 22px;
|
||
height: 24px;
|
||
}
|
||
.item_icon {
|
||
font-size: 14px;
|
||
color: #5e5e5e;
|
||
margin-right: 7px;
|
||
margin-left: 7px;
|
||
line-height: 22px;
|
||
vertical-align: baseline;
|
||
}
|
||
.item_buttons {
|
||
line-height: 1em;
|
||
margin-left: -5px;
|
||
}
|
||
.item_buttons .btn,
|
||
.item_buttons .btn-group,
|
||
.item_buttons .input-group {
|
||
float: left;
|
||
}
|
||
.item_buttons > .btn,
|
||
.item_buttons > .btn-group,
|
||
.item_buttons > .input-group {
|
||
margin-left: 5px;
|
||
}
|
||
.item_buttons .btn {
|
||
min-width: 13ex;
|
||
}
|
||
.item_buttons .running-indicator {
|
||
padding-top: 4px;
|
||
color: #5cb85c;
|
||
}
|
||
.item_buttons .kernel-name {
|
||
padding-top: 4px;
|
||
color: #5bc0de;
|
||
margin-right: 7px;
|
||
float: left;
|
||
}
|
||
.toolbar_info {
|
||
height: 24px;
|
||
line-height: 24px;
|
||
}
|
||
.list_item input:not([type=checkbox]) {
|
||
padding-top: 3px;
|
||
padding-bottom: 3px;
|
||
height: 22px;
|
||
line-height: 14px;
|
||
margin: 0px;
|
||
}
|
||
.highlight_text {
|
||
color: blue;
|
||
}
|
||
#project_name {
|
||
display: inline-block;
|
||
padding-left: 7px;
|
||
margin-left: -2px;
|
||
}
|
||
#project_name > .breadcrumb {
|
||
padding: 0px;
|
||
margin-bottom: 0px;
|
||
background-color: transparent;
|
||
font-weight: bold;
|
||
}
|
||
#tree-selector {
|
||
padding-right: 0px;
|
||
}
|
||
[dir="rtl"] #tree-selector a {
|
||
float: right;
|
||
}
|
||
#button-select-all {
|
||
min-width: 50px;
|
||
}
|
||
#select-all {
|
||
margin-left: 7px;
|
||
margin-right: 2px;
|
||
}
|
||
.menu_icon {
|
||
margin-right: 2px;
|
||
}
|
||
.tab-content .row {
|
||
margin-left: 0px;
|
||
margin-right: 0px;
|
||
}
|
||
.folder_icon:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f114";
|
||
}
|
||
.folder_icon:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.folder_icon:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.notebook_icon:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f02d";
|
||
position: relative;
|
||
top: -1px;
|
||
}
|
||
.notebook_icon:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.notebook_icon:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.running_notebook_icon:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f02d";
|
||
position: relative;
|
||
top: -1px;
|
||
color: #5cb85c;
|
||
}
|
||
.running_notebook_icon:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.running_notebook_icon:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.file_icon:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f016";
|
||
position: relative;
|
||
top: -2px;
|
||
}
|
||
.file_icon:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.file_icon:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
#notebook_toolbar .pull-right {
|
||
padding-top: 0px;
|
||
margin-right: -1px;
|
||
}
|
||
ul#new-menu {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
[dir="rtl"] #new-menu {
|
||
text-align: right;
|
||
}
|
||
.kernel-menu-icon {
|
||
padding-right: 12px;
|
||
width: 24px;
|
||
content: "\f096";
|
||
}
|
||
.kernel-menu-icon:before {
|
||
content: "\f096";
|
||
}
|
||
.kernel-menu-icon-current:before {
|
||
content: "\f00c";
|
||
}
|
||
#tab_content {
|
||
padding-top: 20px;
|
||
}
|
||
#running .panel-group .panel {
|
||
margin-top: 3px;
|
||
margin-bottom: 1em;
|
||
}
|
||
#running .panel-group .panel .panel-heading {
|
||
background-color: #EEE;
|
||
padding-top: 4px;
|
||
padding-bottom: 4px;
|
||
padding-left: 7px;
|
||
padding-right: 7px;
|
||
line-height: 22px;
|
||
}
|
||
#running .panel-group .panel .panel-heading a:focus,
|
||
#running .panel-group .panel .panel-heading a:hover {
|
||
text-decoration: none;
|
||
}
|
||
#running .panel-group .panel .panel-body {
|
||
padding: 0px;
|
||
}
|
||
#running .panel-group .panel .panel-body .list_container {
|
||
margin-top: 0px;
|
||
margin-bottom: 0px;
|
||
border: 0px;
|
||
border-radius: 0px;
|
||
}
|
||
#running .panel-group .panel .panel-body .list_container .list_item {
|
||
border-bottom: 1px solid #ddd;
|
||
}
|
||
#running .panel-group .panel .panel-body .list_container .list_item:last-child {
|
||
border-bottom: 0px;
|
||
}
|
||
[dir="rtl"] #running .col-sm-8 {
|
||
float: right !important;
|
||
}
|
||
.delete-button {
|
||
display: none;
|
||
}
|
||
.duplicate-button {
|
||
display: none;
|
||
}
|
||
.rename-button {
|
||
display: none;
|
||
}
|
||
.shutdown-button {
|
||
display: none;
|
||
}
|
||
.dynamic-instructions {
|
||
display: inline-block;
|
||
padding-top: 4px;
|
||
}
|
||
/*!
|
||
*
|
||
* IPython text editor webapp
|
||
*
|
||
*/
|
||
.selected-keymap i.fa {
|
||
padding: 0px 5px;
|
||
}
|
||
.selected-keymap i.fa:before {
|
||
content: "\f00c";
|
||
}
|
||
#mode-menu {
|
||
overflow: auto;
|
||
max-height: 20em;
|
||
}
|
||
.edit_app #header {
|
||
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
}
|
||
.edit_app #menubar .navbar {
|
||
/* Use a negative 1 bottom margin, so the border overlaps the border of the
|
||
header */
|
||
margin-bottom: -1px;
|
||
}
|
||
.dirty-indicator {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
width: 20px;
|
||
}
|
||
.dirty-indicator.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.dirty-indicator.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.dirty-indicator-dirty {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
width: 20px;
|
||
}
|
||
.dirty-indicator-dirty.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.dirty-indicator-dirty.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.dirty-indicator-clean {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
width: 20px;
|
||
}
|
||
.dirty-indicator-clean.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.dirty-indicator-clean.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.dirty-indicator-clean:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f00c";
|
||
}
|
||
.dirty-indicator-clean:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.dirty-indicator-clean:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
#filename {
|
||
font-size: 16pt;
|
||
display: table;
|
||
padding: 0px 5px;
|
||
}
|
||
#current-mode {
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
#texteditor-backdrop {
|
||
padding-top: 20px;
|
||
padding-bottom: 20px;
|
||
}
|
||
@media not print {
|
||
#texteditor-backdrop {
|
||
background-color: #EEE;
|
||
}
|
||
}
|
||
@media print {
|
||
#texteditor-backdrop #texteditor-container .CodeMirror-gutter,
|
||
#texteditor-backdrop #texteditor-container .CodeMirror-gutters {
|
||
background-color: #fff;
|
||
}
|
||
}
|
||
@media not print {
|
||
#texteditor-backdrop #texteditor-container .CodeMirror-gutter,
|
||
#texteditor-backdrop #texteditor-container .CodeMirror-gutters {
|
||
background-color: #fff;
|
||
}
|
||
}
|
||
@media not print {
|
||
#texteditor-backdrop #texteditor-container {
|
||
padding: 0px;
|
||
background-color: #fff;
|
||
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
}
|
||
}
|
||
/*!
|
||
*
|
||
* IPython notebook
|
||
*
|
||
*/
|
||
/* CSS font colors for translated ANSI colors. */
|
||
.ansibold {
|
||
font-weight: bold;
|
||
}
|
||
/* use dark versions for foreground, to improve visibility */
|
||
.ansiblack {
|
||
color: black;
|
||
}
|
||
.ansired {
|
||
color: darkred;
|
||
}
|
||
.ansigreen {
|
||
color: darkgreen;
|
||
}
|
||
.ansiyellow {
|
||
color: #c4a000;
|
||
}
|
||
.ansiblue {
|
||
color: darkblue;
|
||
}
|
||
.ansipurple {
|
||
color: darkviolet;
|
||
}
|
||
.ansicyan {
|
||
color: steelblue;
|
||
}
|
||
.ansigray {
|
||
color: gray;
|
||
}
|
||
/* and light for background, for the same reason */
|
||
.ansibgblack {
|
||
background-color: black;
|
||
}
|
||
.ansibgred {
|
||
background-color: red;
|
||
}
|
||
.ansibggreen {
|
||
background-color: green;
|
||
}
|
||
.ansibgyellow {
|
||
background-color: yellow;
|
||
}
|
||
.ansibgblue {
|
||
background-color: blue;
|
||
}
|
||
.ansibgpurple {
|
||
background-color: magenta;
|
||
}
|
||
.ansibgcyan {
|
||
background-color: cyan;
|
||
}
|
||
.ansibggray {
|
||
background-color: gray;
|
||
}
|
||
div.cell {
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: vertical;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: vertical;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
border-radius: 2px;
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
border-width: 1px;
|
||
border-style: solid;
|
||
border-color: transparent;
|
||
width: 100%;
|
||
padding: 5px;
|
||
/* This acts as a spacer between cells, that is outside the border */
|
||
margin: 0px;
|
||
outline: none;
|
||
border-left-width: 1px;
|
||
padding-left: 5px;
|
||
background: linear-gradient(to right, transparent -40px, transparent 1px, transparent 1px, transparent 100%);
|
||
}
|
||
div.cell.jupyter-soft-selected {
|
||
border-left-color: #90CAF9;
|
||
border-left-color: #E3F2FD;
|
||
border-left-width: 1px;
|
||
padding-left: 5px;
|
||
border-right-color: #E3F2FD;
|
||
border-right-width: 1px;
|
||
background: #E3F2FD;
|
||
}
|
||
@media print {
|
||
div.cell.jupyter-soft-selected {
|
||
border-color: transparent;
|
||
}
|
||
}
|
||
div.cell.selected {
|
||
border-color: #ababab;
|
||
border-left-width: 0px;
|
||
padding-left: 6px;
|
||
background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 5px, transparent 5px, transparent 100%);
|
||
}
|
||
@media print {
|
||
div.cell.selected {
|
||
border-color: transparent;
|
||
}
|
||
}
|
||
div.cell.selected.jupyter-soft-selected {
|
||
border-left-width: 0;
|
||
padding-left: 6px;
|
||
background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 7px, #E3F2FD 7px, #E3F2FD 100%);
|
||
}
|
||
.edit_mode div.cell.selected {
|
||
border-color: #66BB6A;
|
||
border-left-width: 0px;
|
||
padding-left: 6px;
|
||
background: linear-gradient(to right, #66BB6A -40px, #66BB6A 5px, transparent 5px, transparent 100%);
|
||
}
|
||
@media print {
|
||
.edit_mode div.cell.selected {
|
||
border-color: transparent;
|
||
}
|
||
}
|
||
.prompt {
|
||
/* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
|
||
min-width: 14ex;
|
||
/* This padding is tuned to match the padding on the CodeMirror editor. */
|
||
padding: 0.4em;
|
||
margin: 0px;
|
||
font-family: monospace;
|
||
text-align: right;
|
||
/* This has to match that of the the CodeMirror class line-height below */
|
||
line-height: 1.21429em;
|
||
/* Don't highlight prompt number selection */
|
||
-webkit-touch-callout: none;
|
||
-webkit-user-select: none;
|
||
-khtml-user-select: none;
|
||
-moz-user-select: none;
|
||
-ms-user-select: none;
|
||
user-select: none;
|
||
/* Use default cursor */
|
||
cursor: default;
|
||
}
|
||
@media (max-width: 540px) {
|
||
.prompt {
|
||
text-align: left;
|
||
}
|
||
}
|
||
div.inner_cell {
|
||
min-width: 0;
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: vertical;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: vertical;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
/* Old browsers */
|
||
-webkit-box-flex: 1;
|
||
-moz-box-flex: 1;
|
||
box-flex: 1;
|
||
/* Modern browsers */
|
||
flex: 1;
|
||
}
|
||
/* input_area and input_prompt must match in top border and margin for alignment */
|
||
div.input_area {
|
||
border: 1px solid #cfcfcf;
|
||
border-radius: 2px;
|
||
background: #f7f7f7;
|
||
line-height: 1.21429em;
|
||
}
|
||
/* This is needed so that empty prompt areas can collapse to zero height when there
|
||
is no content in the output_subarea and the prompt. The main purpose of this is
|
||
to make sure that empty JavaScript output_subareas have no height. */
|
||
div.prompt:empty {
|
||
padding-top: 0;
|
||
padding-bottom: 0;
|
||
}
|
||
div.unrecognized_cell {
|
||
padding: 5px 5px 5px 0px;
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: horizontal;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: horizontal;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: horizontal;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: stretch;
|
||
}
|
||
div.unrecognized_cell .inner_cell {
|
||
border-radius: 2px;
|
||
padding: 5px;
|
||
font-weight: bold;
|
||
color: red;
|
||
border: 1px solid #cfcfcf;
|
||
background: #eaeaea;
|
||
}
|
||
div.unrecognized_cell .inner_cell a {
|
||
color: inherit;
|
||
text-decoration: none;
|
||
}
|
||
div.unrecognized_cell .inner_cell a:hover {
|
||
color: inherit;
|
||
text-decoration: none;
|
||
}
|
||
@media (max-width: 540px) {
|
||
div.unrecognized_cell > div.prompt {
|
||
display: none;
|
||
}
|
||
}
|
||
div.code_cell {
|
||
/* avoid page breaking on code cells when printing */
|
||
}
|
||
@media print {
|
||
div.code_cell {
|
||
page-break-inside: avoid;
|
||
}
|
||
}
|
||
/* any special styling for code cells that are currently running goes here */
|
||
div.input {
|
||
page-break-inside: avoid;
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: horizontal;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: horizontal;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: horizontal;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: stretch;
|
||
}
|
||
@media (max-width: 540px) {
|
||
div.input {
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: vertical;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: vertical;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
}
|
||
}
|
||
/* input_area and input_prompt must match in top border and margin for alignment */
|
||
div.input_prompt {
|
||
color: #303F9F;
|
||
border-top: 1px solid transparent;
|
||
}
|
||
div.input_area > div.highlight {
|
||
margin: 0.4em;
|
||
border: none;
|
||
padding: 0px;
|
||
background-color: transparent;
|
||
}
|
||
div.input_area > div.highlight > pre {
|
||
margin: 0px;
|
||
border: none;
|
||
padding: 0px;
|
||
background-color: transparent;
|
||
}
|
||
/* The following gets added to the <head> if it is detected that the user has a
|
||
* monospace font with inconsistent normal/bold/italic height. See
|
||
* notebookmain.js. Such fonts will have keywords vertically offset with
|
||
* respect to the rest of the text. The user should select a better font.
|
||
* See: https://github.com/ipython/ipython/issues/1503
|
||
*
|
||
* .CodeMirror span {
|
||
* vertical-align: bottom;
|
||
* }
|
||
*/
|
||
.CodeMirror {
|
||
line-height: 1.21429em;
|
||
/* Changed from 1em to our global default */
|
||
font-size: 14px;
|
||
height: auto;
|
||
/* Changed to auto to autogrow */
|
||
background: none;
|
||
/* Changed from white to allow our bg to show through */
|
||
}
|
||
.CodeMirror-scroll {
|
||
/* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
|
||
/* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
|
||
overflow-y: hidden;
|
||
overflow-x: auto;
|
||
}
|
||
.CodeMirror-lines {
|
||
/* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
|
||
/* we have set a different line-height and want this to scale with that. */
|
||
padding: 0.4em;
|
||
}
|
||
.CodeMirror-linenumber {
|
||
padding: 0 8px 0 4px;
|
||
}
|
||
.CodeMirror-gutters {
|
||
border-bottom-left-radius: 2px;
|
||
border-top-left-radius: 2px;
|
||
}
|
||
.CodeMirror pre {
|
||
/* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
|
||
/* .CodeMirror-lines */
|
||
padding: 0;
|
||
border: 0;
|
||
border-radius: 0;
|
||
}
|
||
/*
|
||
|
||
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
||
Adapted from GitHub theme
|
||
|
||
*/
|
||
.highlight-base {
|
||
color: #000;
|
||
}
|
||
.highlight-variable {
|
||
color: #000;
|
||
}
|
||
.highlight-variable-2 {
|
||
color: #1a1a1a;
|
||
}
|
||
.highlight-variable-3 {
|
||
color: #333333;
|
||
}
|
||
.highlight-string {
|
||
color: #BA2121;
|
||
}
|
||
.highlight-comment {
|
||
color: #408080;
|
||
font-style: italic;
|
||
}
|
||
.highlight-number {
|
||
color: #080;
|
||
}
|
||
.highlight-atom {
|
||
color: #88F;
|
||
}
|
||
.highlight-keyword {
|
||
color: #008000;
|
||
font-weight: bold;
|
||
}
|
||
.highlight-builtin {
|
||
color: #008000;
|
||
}
|
||
.highlight-error {
|
||
color: #f00;
|
||
}
|
||
.highlight-operator {
|
||
color: #AA22FF;
|
||
font-weight: bold;
|
||
}
|
||
.highlight-meta {
|
||
color: #AA22FF;
|
||
}
|
||
/* previously not defined, copying from default codemirror */
|
||
.highlight-def {
|
||
color: #00f;
|
||
}
|
||
.highlight-string-2 {
|
||
color: #f50;
|
||
}
|
||
.highlight-qualifier {
|
||
color: #555;
|
||
}
|
||
.highlight-bracket {
|
||
color: #997;
|
||
}
|
||
.highlight-tag {
|
||
color: #170;
|
||
}
|
||
.highlight-attribute {
|
||
color: #00c;
|
||
}
|
||
.highlight-header {
|
||
color: blue;
|
||
}
|
||
.highlight-quote {
|
||
color: #090;
|
||
}
|
||
.highlight-link {
|
||
color: #00c;
|
||
}
|
||
/* apply the same style to codemirror */
|
||
.cm-s-ipython span.cm-keyword {
|
||
color: #008000;
|
||
font-weight: bold;
|
||
}
|
||
.cm-s-ipython span.cm-atom {
|
||
color: #88F;
|
||
}
|
||
.cm-s-ipython span.cm-number {
|
||
color: #080;
|
||
}
|
||
.cm-s-ipython span.cm-def {
|
||
color: #00f;
|
||
}
|
||
.cm-s-ipython span.cm-variable {
|
||
color: #000;
|
||
}
|
||
.cm-s-ipython span.cm-operator {
|
||
color: #AA22FF;
|
||
font-weight: bold;
|
||
}
|
||
.cm-s-ipython span.cm-variable-2 {
|
||
color: #1a1a1a;
|
||
}
|
||
.cm-s-ipython span.cm-variable-3 {
|
||
color: #333333;
|
||
}
|
||
.cm-s-ipython span.cm-comment {
|
||
color: #408080;
|
||
font-style: italic;
|
||
}
|
||
.cm-s-ipython span.cm-string {
|
||
color: #BA2121;
|
||
}
|
||
.cm-s-ipython span.cm-string-2 {
|
||
color: #f50;
|
||
}
|
||
.cm-s-ipython span.cm-meta {
|
||
color: #AA22FF;
|
||
}
|
||
.cm-s-ipython span.cm-qualifier {
|
||
color: #555;
|
||
}
|
||
.cm-s-ipython span.cm-builtin {
|
||
color: #008000;
|
||
}
|
||
.cm-s-ipython span.cm-bracket {
|
||
color: #997;
|
||
}
|
||
.cm-s-ipython span.cm-tag {
|
||
color: #170;
|
||
}
|
||
.cm-s-ipython span.cm-attribute {
|
||
color: #00c;
|
||
}
|
||
.cm-s-ipython span.cm-header {
|
||
color: blue;
|
||
}
|
||
.cm-s-ipython span.cm-quote {
|
||
color: #090;
|
||
}
|
||
.cm-s-ipython span.cm-link {
|
||
color: #00c;
|
||
}
|
||
.cm-s-ipython span.cm-error {
|
||
color: #f00;
|
||
}
|
||
.cm-s-ipython span.cm-tab {
|
||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
|
||
background-position: right;
|
||
background-repeat: no-repeat;
|
||
}
|
||
div.output_wrapper {
|
||
/* this position must be relative to enable descendents to be absolute within it */
|
||
position: relative;
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: vertical;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: vertical;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
z-index: 1;
|
||
}
|
||
/* class for the output area when it should be height-limited */
|
||
div.output_scroll {
|
||
/* ideally, this would be max-height, but FF barfs all over that */
|
||
height: 24em;
|
||
/* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
|
||
width: 100%;
|
||
overflow: auto;
|
||
border-radius: 2px;
|
||
-webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
|
||
box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
|
||
display: block;
|
||
}
|
||
/* output div while it is collapsed */
|
||
div.output_collapsed {
|
||
margin: 0px;
|
||
padding: 0px;
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: vertical;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: vertical;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
}
|
||
div.out_prompt_overlay {
|
||
height: 100%;
|
||
padding: 0px 0.4em;
|
||
position: absolute;
|
||
border-radius: 2px;
|
||
}
|
||
div.out_prompt_overlay:hover {
|
||
/* use inner shadow to get border that is computed the same on WebKit/FF */
|
||
-webkit-box-shadow: inset 0 0 1px #000;
|
||
box-shadow: inset 0 0 1px #000;
|
||
background: rgba(240, 240, 240, 0.5);
|
||
}
|
||
div.output_prompt {
|
||
color: #D84315;
|
||
}
|
||
/* This class is the outer container of all output sections. */
|
||
div.output_area {
|
||
padding: 0px;
|
||
page-break-inside: avoid;
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: horizontal;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: horizontal;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: horizontal;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: stretch;
|
||
}
|
||
div.output_area .MathJax_Display {
|
||
text-align: left !important;
|
||
}
|
||
div.output_area .rendered_html table {
|
||
margin-left: 0;
|
||
margin-right: 0;
|
||
}
|
||
div.output_area .rendered_html img {
|
||
margin-left: 0;
|
||
margin-right: 0;
|
||
}
|
||
div.output_area img,
|
||
div.output_area svg {
|
||
max-width: 100%;
|
||
height: auto;
|
||
}
|
||
div.output_area img.unconfined,
|
||
div.output_area svg.unconfined {
|
||
max-width: none;
|
||
}
|
||
/* This is needed to protect the pre formating from global settings such
|
||
as that of bootstrap */
|
||
.output {
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: vertical;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: vertical;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
}
|
||
@media (max-width: 540px) {
|
||
div.output_area {
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: vertical;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: vertical;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
}
|
||
}
|
||
div.output_area pre {
|
||
margin: 0;
|
||
padding: 0;
|
||
border: 0;
|
||
vertical-align: baseline;
|
||
color: black;
|
||
background-color: transparent;
|
||
border-radius: 0;
|
||
}
|
||
/* This class is for the output subarea inside the output_area and after
|
||
the prompt div. */
|
||
div.output_subarea {
|
||
overflow-x: auto;
|
||
padding: 0.4em;
|
||
/* Old browsers */
|
||
-webkit-box-flex: 1;
|
||
-moz-box-flex: 1;
|
||
box-flex: 1;
|
||
/* Modern browsers */
|
||
flex: 1;
|
||
max-width: calc(100% - 14ex);
|
||
}
|
||
div.output_scroll div.output_subarea {
|
||
overflow-x: visible;
|
||
}
|
||
/* The rest of the output_* classes are for special styling of the different
|
||
output types */
|
||
/* all text output has this class: */
|
||
div.output_text {
|
||
text-align: left;
|
||
color: #000;
|
||
/* This has to match that of the the CodeMirror class line-height below */
|
||
line-height: 1.21429em;
|
||
}
|
||
/* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
|
||
div.output_stderr {
|
||
background: #fdd;
|
||
/* very light red background for stderr */
|
||
}
|
||
div.output_latex {
|
||
text-align: left;
|
||
}
|
||
/* Empty output_javascript divs should have no height */
|
||
div.output_javascript:empty {
|
||
padding: 0;
|
||
}
|
||
.js-error {
|
||
color: darkred;
|
||
}
|
||
/* raw_input styles */
|
||
div.raw_input_container {
|
||
line-height: 1.21429em;
|
||
padding-top: 5px;
|
||
}
|
||
pre.raw_input_prompt {
|
||
/* nothing needed here. */
|
||
}
|
||
input.raw_input {
|
||
font-family: monospace;
|
||
font-size: inherit;
|
||
color: inherit;
|
||
width: auto;
|
||
/* make sure input baseline aligns with prompt */
|
||
vertical-align: baseline;
|
||
/* padding + margin = 0.5em between prompt and cursor */
|
||
padding: 0em 0.25em;
|
||
margin: 0em 0.25em;
|
||
}
|
||
input.raw_input:focus {
|
||
box-shadow: none;
|
||
}
|
||
p.p-space {
|
||
margin-bottom: 10px;
|
||
}
|
||
div.output_unrecognized {
|
||
padding: 5px;
|
||
font-weight: bold;
|
||
color: red;
|
||
}
|
||
div.output_unrecognized a {
|
||
color: inherit;
|
||
text-decoration: none;
|
||
}
|
||
div.output_unrecognized a:hover {
|
||
color: inherit;
|
||
text-decoration: none;
|
||
}
|
||
.rendered_html {
|
||
color: #000;
|
||
/* any extras will just be numbers: */
|
||
}
|
||
.rendered_html em {
|
||
font-style: italic;
|
||
}
|
||
.rendered_html strong {
|
||
font-weight: bold;
|
||
}
|
||
.rendered_html u {
|
||
text-decoration: underline;
|
||
}
|
||
.rendered_html :link {
|
||
text-decoration: underline;
|
||
}
|
||
.rendered_html :visited {
|
||
text-decoration: underline;
|
||
}
|
||
.rendered_html h1 {
|
||
font-size: 185.7%;
|
||
margin: 1.08em 0 0 0;
|
||
font-weight: bold;
|
||
line-height: 1.0;
|
||
}
|
||
.rendered_html h2 {
|
||
font-size: 157.1%;
|
||
margin: 1.27em 0 0 0;
|
||
font-weight: bold;
|
||
line-height: 1.0;
|
||
}
|
||
.rendered_html h3 {
|
||
font-size: 128.6%;
|
||
margin: 1.55em 0 0 0;
|
||
font-weight: bold;
|
||
line-height: 1.0;
|
||
}
|
||
.rendered_html h4 {
|
||
font-size: 100%;
|
||
margin: 2em 0 0 0;
|
||
font-weight: bold;
|
||
line-height: 1.0;
|
||
}
|
||
.rendered_html h5 {
|
||
font-size: 100%;
|
||
margin: 2em 0 0 0;
|
||
font-weight: bold;
|
||
line-height: 1.0;
|
||
font-style: italic;
|
||
}
|
||
.rendered_html h6 {
|
||
font-size: 100%;
|
||
margin: 2em 0 0 0;
|
||
font-weight: bold;
|
||
line-height: 1.0;
|
||
font-style: italic;
|
||
}
|
||
.rendered_html h1:first-child {
|
||
margin-top: 0.538em;
|
||
}
|
||
.rendered_html h2:first-child {
|
||
margin-top: 0.636em;
|
||
}
|
||
.rendered_html h3:first-child {
|
||
margin-top: 0.777em;
|
||
}
|
||
.rendered_html h4:first-child {
|
||
margin-top: 1em;
|
||
}
|
||
.rendered_html h5:first-child {
|
||
margin-top: 1em;
|
||
}
|
||
.rendered_html h6:first-child {
|
||
margin-top: 1em;
|
||
}
|
||
.rendered_html ul {
|
||
list-style: disc;
|
||
margin: 0em 2em;
|
||
padding-left: 0px;
|
||
}
|
||
.rendered_html ul ul {
|
||
list-style: square;
|
||
margin: 0em 2em;
|
||
}
|
||
.rendered_html ul ul ul {
|
||
list-style: circle;
|
||
margin: 0em 2em;
|
||
}
|
||
.rendered_html ol {
|
||
list-style: decimal;
|
||
margin: 0em 2em;
|
||
padding-left: 0px;
|
||
}
|
||
.rendered_html ol ol {
|
||
list-style: upper-alpha;
|
||
margin: 0em 2em;
|
||
}
|
||
.rendered_html ol ol ol {
|
||
list-style: lower-alpha;
|
||
margin: 0em 2em;
|
||
}
|
||
.rendered_html ol ol ol ol {
|
||
list-style: lower-roman;
|
||
margin: 0em 2em;
|
||
}
|
||
.rendered_html ol ol ol ol ol {
|
||
list-style: decimal;
|
||
margin: 0em 2em;
|
||
}
|
||
.rendered_html * + ul {
|
||
margin-top: 1em;
|
||
}
|
||
.rendered_html * + ol {
|
||
margin-top: 1em;
|
||
}
|
||
.rendered_html hr {
|
||
color: black;
|
||
background-color: black;
|
||
}
|
||
.rendered_html pre {
|
||
margin: 1em 2em;
|
||
}
|
||
.rendered_html pre,
|
||
.rendered_html code {
|
||
border: 0;
|
||
background-color: #fff;
|
||
color: #000;
|
||
font-size: 100%;
|
||
padding: 0px;
|
||
}
|
||
.rendered_html blockquote {
|
||
margin: 1em 2em;
|
||
}
|
||
.rendered_html table {
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
border: 1px solid black;
|
||
border-collapse: collapse;
|
||
}
|
||
.rendered_html tr,
|
||
.rendered_html th,
|
||
.rendered_html td {
|
||
border: 1px solid black;
|
||
border-collapse: collapse;
|
||
margin: 1em 2em;
|
||
}
|
||
.rendered_html td,
|
||
.rendered_html th {
|
||
text-align: left;
|
||
vertical-align: middle;
|
||
padding: 4px;
|
||
}
|
||
.rendered_html th {
|
||
font-weight: bold;
|
||
}
|
||
.rendered_html * + table {
|
||
margin-top: 1em;
|
||
}
|
||
.rendered_html p {
|
||
text-align: left;
|
||
}
|
||
.rendered_html * + p {
|
||
margin-top: 1em;
|
||
}
|
||
.rendered_html img {
|
||
display: block;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
.rendered_html * + img {
|
||
margin-top: 1em;
|
||
}
|
||
.rendered_html img,
|
||
.rendered_html svg {
|
||
max-width: 100%;
|
||
height: auto;
|
||
}
|
||
.rendered_html img.unconfined,
|
||
.rendered_html svg.unconfined {
|
||
max-width: none;
|
||
}
|
||
div.text_cell {
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: horizontal;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: horizontal;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: horizontal;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: stretch;
|
||
}
|
||
@media (max-width: 540px) {
|
||
div.text_cell > div.prompt {
|
||
display: none;
|
||
}
|
||
}
|
||
div.text_cell_render {
|
||
/*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
|
||
outline: none;
|
||
resize: none;
|
||
width: inherit;
|
||
border-style: none;
|
||
padding: 0.5em 0.5em 0.5em 0.4em;
|
||
color: #000;
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
}
|
||
a.anchor-link:link {
|
||
text-decoration: none;
|
||
padding: 0px 20px;
|
||
visibility: hidden;
|
||
}
|
||
h1:hover .anchor-link,
|
||
h2:hover .anchor-link,
|
||
h3:hover .anchor-link,
|
||
h4:hover .anchor-link,
|
||
h5:hover .anchor-link,
|
||
h6:hover .anchor-link {
|
||
visibility: visible;
|
||
}
|
||
.text_cell.rendered .input_area {
|
||
display: none;
|
||
}
|
||
.text_cell.rendered .rendered_html {
|
||
overflow-x: auto;
|
||
overflow-y: hidden;
|
||
}
|
||
.text_cell.unrendered .text_cell_render {
|
||
display: none;
|
||
}
|
||
.cm-header-1,
|
||
.cm-header-2,
|
||
.cm-header-3,
|
||
.cm-header-4,
|
||
.cm-header-5,
|
||
.cm-header-6 {
|
||
font-weight: bold;
|
||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||
}
|
||
.cm-header-1 {
|
||
font-size: 185.7%;
|
||
}
|
||
.cm-header-2 {
|
||
font-size: 157.1%;
|
||
}
|
||
.cm-header-3 {
|
||
font-size: 128.6%;
|
||
}
|
||
.cm-header-4 {
|
||
font-size: 110%;
|
||
}
|
||
.cm-header-5 {
|
||
font-size: 100%;
|
||
font-style: italic;
|
||
}
|
||
.cm-header-6 {
|
||
font-size: 100%;
|
||
font-style: italic;
|
||
}
|
||
/*!
|
||
*
|
||
* IPython notebook webapp
|
||
*
|
||
*/
|
||
@media (max-width: 767px) {
|
||
.notebook_app {
|
||
padding-left: 0px;
|
||
padding-right: 0px;
|
||
}
|
||
}
|
||
#ipython-main-app {
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
height: 100%;
|
||
}
|
||
div#notebook_panel {
|
||
margin: 0px;
|
||
padding: 0px;
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
height: 100%;
|
||
}
|
||
div#notebook {
|
||
font-size: 14px;
|
||
line-height: 20px;
|
||
overflow-y: hidden;
|
||
overflow-x: auto;
|
||
width: 100%;
|
||
/* This spaces the page away from the edge of the notebook area */
|
||
padding-top: 20px;
|
||
margin: 0px;
|
||
outline: none;
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
min-height: 100%;
|
||
}
|
||
@media not print {
|
||
#notebook-container {
|
||
padding: 15px;
|
||
background-color: #fff;
|
||
min-height: 0;
|
||
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
}
|
||
}
|
||
@media print {
|
||
#notebook-container {
|
||
width: 100%;
|
||
}
|
||
}
|
||
div.ui-widget-content {
|
||
border: 1px solid #ababab;
|
||
outline: none;
|
||
}
|
||
pre.dialog {
|
||
background-color: #f7f7f7;
|
||
border: 1px solid #ddd;
|
||
border-radius: 2px;
|
||
padding: 0.4em;
|
||
padding-left: 2em;
|
||
}
|
||
p.dialog {
|
||
padding: 0.2em;
|
||
}
|
||
/* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
|
||
to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
|
||
*/
|
||
pre,
|
||
code,
|
||
kbd,
|
||
samp {
|
||
white-space: pre-wrap;
|
||
}
|
||
#fonttest {
|
||
font-family: monospace;
|
||
}
|
||
p {
|
||
margin-bottom: 0;
|
||
}
|
||
.end_space {
|
||
min-height: 100px;
|
||
transition: height .2s ease;
|
||
}
|
||
.notebook_app > #header {
|
||
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
}
|
||
@media not print {
|
||
.notebook_app {
|
||
background-color: #EEE;
|
||
}
|
||
}
|
||
kbd {
|
||
border-style: solid;
|
||
border-width: 1px;
|
||
box-shadow: none;
|
||
margin: 2px;
|
||
padding-left: 2px;
|
||
padding-right: 2px;
|
||
padding-top: 1px;
|
||
padding-bottom: 1px;
|
||
}
|
||
/* CSS for the cell toolbar */
|
||
.celltoolbar {
|
||
border: thin solid #CFCFCF;
|
||
border-bottom: none;
|
||
background: #EEE;
|
||
border-radius: 2px 2px 0px 0px;
|
||
width: 100%;
|
||
height: 29px;
|
||
padding-right: 4px;
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: horizontal;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: horizontal;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: horizontal;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: stretch;
|
||
/* Old browsers */
|
||
-webkit-box-pack: end;
|
||
-moz-box-pack: end;
|
||
box-pack: end;
|
||
/* Modern browsers */
|
||
justify-content: flex-end;
|
||
display: -webkit-flex;
|
||
}
|
||
@media print {
|
||
.celltoolbar {
|
||
display: none;
|
||
}
|
||
}
|
||
.ctb_hideshow {
|
||
display: none;
|
||
vertical-align: bottom;
|
||
}
|
||
/* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
|
||
Cell toolbars are only shown when the ctb_global_show class is also set.
|
||
*/
|
||
.ctb_global_show .ctb_show.ctb_hideshow {
|
||
display: block;
|
||
}
|
||
.ctb_global_show .ctb_show + .input_area,
|
||
.ctb_global_show .ctb_show + div.text_cell_input,
|
||
.ctb_global_show .ctb_show ~ div.text_cell_render {
|
||
border-top-right-radius: 0px;
|
||
border-top-left-radius: 0px;
|
||
}
|
||
.ctb_global_show .ctb_show ~ div.text_cell_render {
|
||
border: 1px solid #cfcfcf;
|
||
}
|
||
.celltoolbar {
|
||
font-size: 87%;
|
||
padding-top: 3px;
|
||
}
|
||
.celltoolbar select {
|
||
display: block;
|
||
width: 100%;
|
||
height: 32px;
|
||
padding: 6px 12px;
|
||
font-size: 13px;
|
||
line-height: 1.42857143;
|
||
color: #555555;
|
||
background-color: #fff;
|
||
background-image: none;
|
||
border: 1px solid #ccc;
|
||
border-radius: 2px;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||
height: 30px;
|
||
padding: 5px 10px;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
border-radius: 1px;
|
||
width: inherit;
|
||
font-size: inherit;
|
||
height: 22px;
|
||
padding: 0px;
|
||
display: inline-block;
|
||
}
|
||
.celltoolbar select:focus {
|
||
border-color: #66afe9;
|
||
outline: 0;
|
||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||
}
|
||
.celltoolbar select::-moz-placeholder {
|
||
color: #999;
|
||
opacity: 1;
|
||
}
|
||
.celltoolbar select:-ms-input-placeholder {
|
||
color: #999;
|
||
}
|
||
.celltoolbar select::-webkit-input-placeholder {
|
||
color: #999;
|
||
}
|
||
.celltoolbar select::-ms-expand {
|
||
border: 0;
|
||
background-color: transparent;
|
||
}
|
||
.celltoolbar select[disabled],
|
||
.celltoolbar select[readonly],
|
||
fieldset[disabled] .celltoolbar select {
|
||
background-color: #eeeeee;
|
||
opacity: 1;
|
||
}
|
||
.celltoolbar select[disabled],
|
||
fieldset[disabled] .celltoolbar select {
|
||
cursor: not-allowed;
|
||
}
|
||
textarea.celltoolbar select {
|
||
height: auto;
|
||
}
|
||
select.celltoolbar select {
|
||
height: 30px;
|
||
line-height: 30px;
|
||
}
|
||
textarea.celltoolbar select,
|
||
select[multiple].celltoolbar select {
|
||
height: auto;
|
||
}
|
||
.celltoolbar label {
|
||
margin-left: 5px;
|
||
margin-right: 5px;
|
||
}
|
||
.completions {
|
||
position: absolute;
|
||
z-index: 110;
|
||
overflow: hidden;
|
||
border: 1px solid #ababab;
|
||
border-radius: 2px;
|
||
-webkit-box-shadow: 0px 6px 10px -1px #adadad;
|
||
box-shadow: 0px 6px 10px -1px #adadad;
|
||
line-height: 1;
|
||
}
|
||
.completions select {
|
||
background: white;
|
||
outline: none;
|
||
border: none;
|
||
padding: 0px;
|
||
margin: 0px;
|
||
overflow: auto;
|
||
font-family: monospace;
|
||
font-size: 110%;
|
||
color: #000;
|
||
width: auto;
|
||
}
|
||
.completions select option.context {
|
||
color: #286090;
|
||
}
|
||
#kernel_logo_widget {
|
||
float: right !important;
|
||
float: right;
|
||
}
|
||
#kernel_logo_widget .current_kernel_logo {
|
||
display: none;
|
||
margin-top: -1px;
|
||
margin-bottom: -1px;
|
||
width: 32px;
|
||
height: 32px;
|
||
}
|
||
#menubar {
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
margin-top: 1px;
|
||
}
|
||
#menubar .navbar {
|
||
border-top: 1px;
|
||
border-radius: 0px 0px 2px 2px;
|
||
margin-bottom: 0px;
|
||
}
|
||
#menubar .navbar-toggle {
|
||
float: left;
|
||
padding-top: 7px;
|
||
padding-bottom: 7px;
|
||
border: none;
|
||
}
|
||
#menubar .navbar-collapse {
|
||
clear: left;
|
||
}
|
||
.nav-wrapper {
|
||
border-bottom: 1px solid #e7e7e7;
|
||
}
|
||
i.menu-icon {
|
||
padding-top: 4px;
|
||
}
|
||
ul#help_menu li a {
|
||
overflow: hidden;
|
||
padding-right: 2.2em;
|
||
}
|
||
ul#help_menu li a i {
|
||
margin-right: -1.2em;
|
||
}
|
||
.dropdown-submenu {
|
||
position: relative;
|
||
}
|
||
.dropdown-submenu > .dropdown-menu {
|
||
top: 0;
|
||
left: 100%;
|
||
margin-top: -6px;
|
||
margin-left: -1px;
|
||
}
|
||
.dropdown-submenu:hover > .dropdown-menu {
|
||
display: block;
|
||
}
|
||
.dropdown-submenu > a:after {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
display: block;
|
||
content: "\f0da";
|
||
float: right;
|
||
color: #333333;
|
||
margin-top: 2px;
|
||
margin-right: -10px;
|
||
}
|
||
.dropdown-submenu > a:after.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.dropdown-submenu > a:after.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.dropdown-submenu:hover > a:after {
|
||
color: #262626;
|
||
}
|
||
.dropdown-submenu.pull-left {
|
||
float: none;
|
||
}
|
||
.dropdown-submenu.pull-left > .dropdown-menu {
|
||
left: -100%;
|
||
margin-left: 10px;
|
||
}
|
||
#notification_area {
|
||
float: right !important;
|
||
float: right;
|
||
z-index: 10;
|
||
}
|
||
.indicator_area {
|
||
float: right !important;
|
||
float: right;
|
||
color: #777;
|
||
margin-left: 5px;
|
||
margin-right: 5px;
|
||
width: 11px;
|
||
z-index: 10;
|
||
text-align: center;
|
||
width: auto;
|
||
}
|
||
#kernel_indicator {
|
||
float: right !important;
|
||
float: right;
|
||
color: #777;
|
||
margin-left: 5px;
|
||
margin-right: 5px;
|
||
width: 11px;
|
||
z-index: 10;
|
||
text-align: center;
|
||
width: auto;
|
||
border-left: 1px solid;
|
||
}
|
||
#kernel_indicator .kernel_indicator_name {
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
#modal_indicator {
|
||
float: right !important;
|
||
float: right;
|
||
color: #777;
|
||
margin-left: 5px;
|
||
margin-right: 5px;
|
||
width: 11px;
|
||
z-index: 10;
|
||
text-align: center;
|
||
width: auto;
|
||
}
|
||
#readonly-indicator {
|
||
float: right !important;
|
||
float: right;
|
||
color: #777;
|
||
margin-left: 5px;
|
||
margin-right: 5px;
|
||
width: 11px;
|
||
z-index: 10;
|
||
text-align: center;
|
||
width: auto;
|
||
margin-top: 2px;
|
||
margin-bottom: 0px;
|
||
margin-left: 0px;
|
||
margin-right: 0px;
|
||
display: none;
|
||
}
|
||
.modal_indicator:before {
|
||
width: 1.28571429em;
|
||
text-align: center;
|
||
}
|
||
.edit_mode .modal_indicator:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f040";
|
||
}
|
||
.edit_mode .modal_indicator:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.edit_mode .modal_indicator:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.command_mode .modal_indicator:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: ' ';
|
||
}
|
||
.command_mode .modal_indicator:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.command_mode .modal_indicator:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.kernel_idle_icon:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f10c";
|
||
}
|
||
.kernel_idle_icon:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.kernel_idle_icon:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.kernel_busy_icon:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f111";
|
||
}
|
||
.kernel_busy_icon:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.kernel_busy_icon:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.kernel_dead_icon:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f1e2";
|
||
}
|
||
.kernel_dead_icon:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.kernel_dead_icon:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.kernel_disconnected_icon:before {
|
||
display: inline-block;
|
||
font: normal normal normal 14px/1 FontAwesome;
|
||
font-size: inherit;
|
||
text-rendering: auto;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
content: "\f127";
|
||
}
|
||
.kernel_disconnected_icon:before.pull-left {
|
||
margin-right: .3em;
|
||
}
|
||
.kernel_disconnected_icon:before.pull-right {
|
||
margin-left: .3em;
|
||
}
|
||
.notification_widget {
|
||
color: #777;
|
||
z-index: 10;
|
||
background: rgba(240, 240, 240, 0.5);
|
||
margin-right: 4px;
|
||
color: #333;
|
||
background-color: #fff;
|
||
border-color: #ccc;
|
||
}
|
||
.notification_widget:focus,
|
||
.notification_widget.focus {
|
||
color: #333;
|
||
background-color: #e6e6e6;
|
||
border-color: #8c8c8c;
|
||
}
|
||
.notification_widget:hover {
|
||
color: #333;
|
||
background-color: #e6e6e6;
|
||
border-color: #adadad;
|
||
}
|
||
.notification_widget:active,
|
||
.notification_widget.active,
|
||
.open > .dropdown-toggle.notification_widget {
|
||
color: #333;
|
||
background-color: #e6e6e6;
|
||
border-color: #adadad;
|
||
}
|
||
.notification_widget:active:hover,
|
||
.notification_widget.active:hover,
|
||
.open > .dropdown-toggle.notification_widget:hover,
|
||
.notification_widget:active:focus,
|
||
.notification_widget.active:focus,
|
||
.open > .dropdown-toggle.notification_widget:focus,
|
||
.notification_widget:active.focus,
|
||
.notification_widget.active.focus,
|
||
.open > .dropdown-toggle.notification_widget.focus {
|
||
color: #333;
|
||
background-color: #d4d4d4;
|
||
border-color: #8c8c8c;
|
||
}
|
||
.notification_widget:active,
|
||
.notification_widget.active,
|
||
.open > .dropdown-toggle.notification_widget {
|
||
background-image: none;
|
||
}
|
||
.notification_widget.disabled:hover,
|
||
.notification_widget[disabled]:hover,
|
||
fieldset[disabled] .notification_widget:hover,
|
||
.notification_widget.disabled:focus,
|
||
.notification_widget[disabled]:focus,
|
||
fieldset[disabled] .notification_widget:focus,
|
||
.notification_widget.disabled.focus,
|
||
.notification_widget[disabled].focus,
|
||
fieldset[disabled] .notification_widget.focus {
|
||
background-color: #fff;
|
||
border-color: #ccc;
|
||
}
|
||
.notification_widget .badge {
|
||
color: #fff;
|
||
background-color: #333;
|
||
}
|
||
.notification_widget.warning {
|
||
color: #fff;
|
||
background-color: #f0ad4e;
|
||
border-color: #eea236;
|
||
}
|
||
.notification_widget.warning:focus,
|
||
.notification_widget.warning.focus {
|
||
color: #fff;
|
||
background-color: #ec971f;
|
||
border-color: #985f0d;
|
||
}
|
||
.notification_widget.warning:hover {
|
||
color: #fff;
|
||
background-color: #ec971f;
|
||
border-color: #d58512;
|
||
}
|
||
.notification_widget.warning:active,
|
||
.notification_widget.warning.active,
|
||
.open > .dropdown-toggle.notification_widget.warning {
|
||
color: #fff;
|
||
background-color: #ec971f;
|
||
border-color: #d58512;
|
||
}
|
||
.notification_widget.warning:active:hover,
|
||
.notification_widget.warning.active:hover,
|
||
.open > .dropdown-toggle.notification_widget.warning:hover,
|
||
.notification_widget.warning:active:focus,
|
||
.notification_widget.warning.active:focus,
|
||
.open > .dropdown-toggle.notification_widget.warning:focus,
|
||
.notification_widget.warning:active.focus,
|
||
.notification_widget.warning.active.focus,
|
||
.open > .dropdown-toggle.notification_widget.warning.focus {
|
||
color: #fff;
|
||
background-color: #d58512;
|
||
border-color: #985f0d;
|
||
}
|
||
.notification_widget.warning:active,
|
||
.notification_widget.warning.active,
|
||
.open > .dropdown-toggle.notification_widget.warning {
|
||
background-image: none;
|
||
}
|
||
.notification_widget.warning.disabled:hover,
|
||
.notification_widget.warning[disabled]:hover,
|
||
fieldset[disabled] .notification_widget.warning:hover,
|
||
.notification_widget.warning.disabled:focus,
|
||
.notification_widget.warning[disabled]:focus,
|
||
fieldset[disabled] .notification_widget.warning:focus,
|
||
.notification_widget.warning.disabled.focus,
|
||
.notification_widget.warning[disabled].focus,
|
||
fieldset[disabled] .notification_widget.warning.focus {
|
||
background-color: #f0ad4e;
|
||
border-color: #eea236;
|
||
}
|
||
.notification_widget.warning .badge {
|
||
color: #f0ad4e;
|
||
background-color: #fff;
|
||
}
|
||
.notification_widget.success {
|
||
color: #fff;
|
||
background-color: #5cb85c;
|
||
border-color: #4cae4c;
|
||
}
|
||
.notification_widget.success:focus,
|
||
.notification_widget.success.focus {
|
||
color: #fff;
|
||
background-color: #449d44;
|
||
border-color: #255625;
|
||
}
|
||
.notification_widget.success:hover {
|
||
color: #fff;
|
||
background-color: #449d44;
|
||
border-color: #398439;
|
||
}
|
||
.notification_widget.success:active,
|
||
.notification_widget.success.active,
|
||
.open > .dropdown-toggle.notification_widget.success {
|
||
color: #fff;
|
||
background-color: #449d44;
|
||
border-color: #398439;
|
||
}
|
||
.notification_widget.success:active:hover,
|
||
.notification_widget.success.active:hover,
|
||
.open > .dropdown-toggle.notification_widget.success:hover,
|
||
.notification_widget.success:active:focus,
|
||
.notification_widget.success.active:focus,
|
||
.open > .dropdown-toggle.notification_widget.success:focus,
|
||
.notification_widget.success:active.focus,
|
||
.notification_widget.success.active.focus,
|
||
.open > .dropdown-toggle.notification_widget.success.focus {
|
||
color: #fff;
|
||
background-color: #398439;
|
||
border-color: #255625;
|
||
}
|
||
.notification_widget.success:active,
|
||
.notification_widget.success.active,
|
||
.open > .dropdown-toggle.notification_widget.success {
|
||
background-image: none;
|
||
}
|
||
.notification_widget.success.disabled:hover,
|
||
.notification_widget.success[disabled]:hover,
|
||
fieldset[disabled] .notification_widget.success:hover,
|
||
.notification_widget.success.disabled:focus,
|
||
.notification_widget.success[disabled]:focus,
|
||
fieldset[disabled] .notification_widget.success:focus,
|
||
.notification_widget.success.disabled.focus,
|
||
.notification_widget.success[disabled].focus,
|
||
fieldset[disabled] .notification_widget.success.focus {
|
||
background-color: #5cb85c;
|
||
border-color: #4cae4c;
|
||
}
|
||
.notification_widget.success .badge {
|
||
color: #5cb85c;
|
||
background-color: #fff;
|
||
}
|
||
.notification_widget.info {
|
||
color: #fff;
|
||
background-color: #5bc0de;
|
||
border-color: #46b8da;
|
||
}
|
||
.notification_widget.info:focus,
|
||
.notification_widget.info.focus {
|
||
color: #fff;
|
||
background-color: #31b0d5;
|
||
border-color: #1b6d85;
|
||
}
|
||
.notification_widget.info:hover {
|
||
color: #fff;
|
||
background-color: #31b0d5;
|
||
border-color: #269abc;
|
||
}
|
||
.notification_widget.info:active,
|
||
.notification_widget.info.active,
|
||
.open > .dropdown-toggle.notification_widget.info {
|
||
color: #fff;
|
||
background-color: #31b0d5;
|
||
border-color: #269abc;
|
||
}
|
||
.notification_widget.info:active:hover,
|
||
.notification_widget.info.active:hover,
|
||
.open > .dropdown-toggle.notification_widget.info:hover,
|
||
.notification_widget.info:active:focus,
|
||
.notification_widget.info.active:focus,
|
||
.open > .dropdown-toggle.notification_widget.info:focus,
|
||
.notification_widget.info:active.focus,
|
||
.notification_widget.info.active.focus,
|
||
.open > .dropdown-toggle.notification_widget.info.focus {
|
||
color: #fff;
|
||
background-color: #269abc;
|
||
border-color: #1b6d85;
|
||
}
|
||
.notification_widget.info:active,
|
||
.notification_widget.info.active,
|
||
.open > .dropdown-toggle.notification_widget.info {
|
||
background-image: none;
|
||
}
|
||
.notification_widget.info.disabled:hover,
|
||
.notification_widget.info[disabled]:hover,
|
||
fieldset[disabled] .notification_widget.info:hover,
|
||
.notification_widget.info.disabled:focus,
|
||
.notification_widget.info[disabled]:focus,
|
||
fieldset[disabled] .notification_widget.info:focus,
|
||
.notification_widget.info.disabled.focus,
|
||
.notification_widget.info[disabled].focus,
|
||
fieldset[disabled] .notification_widget.info.focus {
|
||
background-color: #5bc0de;
|
||
border-color: #46b8da;
|
||
}
|
||
.notification_widget.info .badge {
|
||
color: #5bc0de;
|
||
background-color: #fff;
|
||
}
|
||
.notification_widget.danger {
|
||
color: #fff;
|
||
background-color: #d9534f;
|
||
border-color: #d43f3a;
|
||
}
|
||
.notification_widget.danger:focus,
|
||
.notification_widget.danger.focus {
|
||
color: #fff;
|
||
background-color: #c9302c;
|
||
border-color: #761c19;
|
||
}
|
||
.notification_widget.danger:hover {
|
||
color: #fff;
|
||
background-color: #c9302c;
|
||
border-color: #ac2925;
|
||
}
|
||
.notification_widget.danger:active,
|
||
.notification_widget.danger.active,
|
||
.open > .dropdown-toggle.notification_widget.danger {
|
||
color: #fff;
|
||
background-color: #c9302c;
|
||
border-color: #ac2925;
|
||
}
|
||
.notification_widget.danger:active:hover,
|
||
.notification_widget.danger.active:hover,
|
||
.open > .dropdown-toggle.notification_widget.danger:hover,
|
||
.notification_widget.danger:active:focus,
|
||
.notification_widget.danger.active:focus,
|
||
.open > .dropdown-toggle.notification_widget.danger:focus,
|
||
.notification_widget.danger:active.focus,
|
||
.notification_widget.danger.active.focus,
|
||
.open > .dropdown-toggle.notification_widget.danger.focus {
|
||
color: #fff;
|
||
background-color: #ac2925;
|
||
border-color: #761c19;
|
||
}
|
||
.notification_widget.danger:active,
|
||
.notification_widget.danger.active,
|
||
.open > .dropdown-toggle.notification_widget.danger {
|
||
background-image: none;
|
||
}
|
||
.notification_widget.danger.disabled:hover,
|
||
.notification_widget.danger[disabled]:hover,
|
||
fieldset[disabled] .notification_widget.danger:hover,
|
||
.notification_widget.danger.disabled:focus,
|
||
.notification_widget.danger[disabled]:focus,
|
||
fieldset[disabled] .notification_widget.danger:focus,
|
||
.notification_widget.danger.disabled.focus,
|
||
.notification_widget.danger[disabled].focus,
|
||
fieldset[disabled] .notification_widget.danger.focus {
|
||
background-color: #d9534f;
|
||
border-color: #d43f3a;
|
||
}
|
||
.notification_widget.danger .badge {
|
||
color: #d9534f;
|
||
background-color: #fff;
|
||
}
|
||
div#pager {
|
||
background-color: #fff;
|
||
font-size: 14px;
|
||
line-height: 20px;
|
||
overflow: hidden;
|
||
display: none;
|
||
position: fixed;
|
||
bottom: 0px;
|
||
width: 100%;
|
||
max-height: 50%;
|
||
padding-top: 8px;
|
||
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
/* Display over codemirror */
|
||
z-index: 100;
|
||
/* Hack which prevents jquery ui resizable from changing top. */
|
||
top: auto !important;
|
||
}
|
||
div#pager pre {
|
||
line-height: 1.21429em;
|
||
color: #000;
|
||
background-color: #f7f7f7;
|
||
padding: 0.4em;
|
||
}
|
||
div#pager #pager-button-area {
|
||
position: absolute;
|
||
top: 8px;
|
||
right: 20px;
|
||
}
|
||
div#pager #pager-contents {
|
||
position: relative;
|
||
overflow: auto;
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
div#pager #pager-contents #pager-container {
|
||
position: relative;
|
||
padding: 15px 0px;
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
}
|
||
div#pager .ui-resizable-handle {
|
||
top: 0px;
|
||
height: 8px;
|
||
background: #f7f7f7;
|
||
border-top: 1px solid #cfcfcf;
|
||
border-bottom: 1px solid #cfcfcf;
|
||
/* This injects handle bars (a short, wide = symbol) for
|
||
the resize handle. */
|
||
}
|
||
div#pager .ui-resizable-handle::after {
|
||
content: '';
|
||
top: 2px;
|
||
left: 50%;
|
||
height: 3px;
|
||
width: 30px;
|
||
margin-left: -15px;
|
||
position: absolute;
|
||
border-top: 1px solid #cfcfcf;
|
||
}
|
||
.quickhelp {
|
||
/* Old browsers */
|
||
display: -webkit-box;
|
||
-webkit-box-orient: horizontal;
|
||
-webkit-box-align: stretch;
|
||
display: -moz-box;
|
||
-moz-box-orient: horizontal;
|
||
-moz-box-align: stretch;
|
||
display: box;
|
||
box-orient: horizontal;
|
||
box-align: stretch;
|
||
/* Modern browsers */
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: stretch;
|
||
line-height: 1.8em;
|
||
}
|
||
.shortcut_key {
|
||
display: inline-block;
|
||
width: 21ex;
|
||
text-align: right;
|
||
font-family: monospace;
|
||
}
|
||
.shortcut_descr {
|
||
display: inline-block;
|
||
/* Old browsers */
|
||
-webkit-box-flex: 1;
|
||
-moz-box-flex: 1;
|
||
box-flex: 1;
|
||
/* Modern browsers */
|
||
flex: 1;
|
||
}
|
||
span.save_widget {
|
||
margin-top: 6px;
|
||
}
|
||
span.save_widget span.filename {
|
||
height: 1em;
|
||
line-height: 1em;
|
||
padding: 3px;
|
||
margin-left: 16px;
|
||
border: none;
|
||
font-size: 146.5%;
|
||
border-radius: 2px;
|
||
}
|
||
span.save_widget span.filename:hover {
|
||
background-color: #e6e6e6;
|
||
}
|
||
span.checkpoint_status,
|
||
span.autosave_status {
|
||
font-size: small;
|
||
}
|
||
@media (max-width: 767px) {
|
||
span.save_widget {
|
||
font-size: small;
|
||
}
|
||
span.checkpoint_status,
|
||
span.autosave_status {
|
||
display: none;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
span.checkpoint_status {
|
||
display: none;
|
||
}
|
||
span.autosave_status {
|
||
font-size: x-small;
|
||
}
|
||
}
|
||
.toolbar {
|
||
padding: 0px;
|
||
margin-left: -5px;
|
||
margin-top: 2px;
|
||
margin-bottom: 5px;
|
||
box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-webkit-box-sizing: border-box;
|
||
}
|
||
.toolbar select,
|
||
.toolbar label {
|
||
width: auto;
|
||
vertical-align: middle;
|
||
margin-right: 2px;
|
||
margin-bottom: 0px;
|
||
display: inline;
|
||
font-size: 92%;
|
||
margin-left: 0.3em;
|
||
margin-right: 0.3em;
|
||
padding: 0px;
|
||
padding-top: 3px;
|
||
}
|
||
.toolbar .btn {
|
||
padding: 2px 8px;
|
||
}
|
||
.toolbar .btn-group {
|
||
margin-top: 0px;
|
||
margin-left: 5px;
|
||
}
|
||
#maintoolbar {
|
||
margin-bottom: -3px;
|
||
margin-top: -8px;
|
||
border: 0px;
|
||
min-height: 27px;
|
||
margin-left: 0px;
|
||
padding-top: 11px;
|
||
padding-bottom: 3px;
|
||
}
|
||
#maintoolbar .navbar-text {
|
||
float: none;
|
||
vertical-align: middle;
|
||
text-align: right;
|
||
margin-left: 5px;
|
||
margin-right: 0px;
|
||
margin-top: 0px;
|
||
}
|
||
.select-xs {
|
||
height: 24px;
|
||
}
|
||
.pulse,
|
||
.dropdown-menu > li > a.pulse,
|
||
li.pulse > a.dropdown-toggle,
|
||
li.pulse.open > a.dropdown-toggle {
|
||
background-color: #F37626;
|
||
color: white;
|
||
}
|
||
/**
|
||
* Primary styles
|
||
*
|
||
* Author: Jupyter Development Team
|
||
*/
|
||
/** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
|
||
* of chance of beeing generated from the ../less/[samename].less file, you can
|
||
* try to get back the less file by reverting somme commit in history
|
||
**/
|
||
/*
|
||
* We'll try to get something pretty, so we
|
||
* have some strange css to have the scroll bar on
|
||
* the left with fix button on the top right of the tooltip
|
||
*/
|
||
@-moz-keyframes fadeOut {
|
||
from {
|
||
opacity: 1;
|
||
}
|
||
to {
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@-webkit-keyframes fadeOut {
|
||
from {
|
||
opacity: 1;
|
||
}
|
||
to {
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@-moz-keyframes fadeIn {
|
||
from {
|
||
opacity: 0;
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
@-webkit-keyframes fadeIn {
|
||
from {
|
||
opacity: 0;
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
/*properties of tooltip after "expand"*/
|
||
.bigtooltip {
|
||
overflow: auto;
|
||
height: 200px;
|
||
-webkit-transition-property: height;
|
||
-webkit-transition-duration: 500ms;
|
||
-moz-transition-property: height;
|
||
-moz-transition-duration: 500ms;
|
||
transition-property: height;
|
||
transition-duration: 500ms;
|
||
}
|
||
/*properties of tooltip before "expand"*/
|
||
.smalltooltip {
|
||
-webkit-transition-property: height;
|
||
-webkit-transition-duration: 500ms;
|
||
-moz-transition-property: height;
|
||
-moz-transition-duration: 500ms;
|
||
transition-property: height;
|
||
transition-duration: 500ms;
|
||
text-overflow: ellipsis;
|
||
overflow: hidden;
|
||
height: 80px;
|
||
}
|
||
.tooltipbuttons {
|
||
position: absolute;
|
||
padding-right: 15px;
|
||
top: 0px;
|
||
right: 0px;
|
||
}
|
||
.tooltiptext {
|
||
/*avoid the button to overlap on some docstring*/
|
||
padding-right: 30px;
|
||
}
|
||
.ipython_tooltip {
|
||
max-width: 700px;
|
||
/*fade-in animation when inserted*/
|
||
-webkit-animation: fadeOut 400ms;
|
||
-moz-animation: fadeOut 400ms;
|
||
animation: fadeOut 400ms;
|
||
-webkit-animation: fadeIn 400ms;
|
||
-moz-animation: fadeIn 400ms;
|
||
animation: fadeIn 400ms;
|
||
vertical-align: middle;
|
||
background-color: #f7f7f7;
|
||
overflow: visible;
|
||
border: #ababab 1px solid;
|
||
outline: none;
|
||
padding: 3px;
|
||
margin: 0px;
|
||
padding-left: 7px;
|
||
font-family: monospace;
|
||
min-height: 50px;
|
||
-moz-box-shadow: 0px 6px 10px -1px #adadad;
|
||
-webkit-box-shadow: 0px 6px 10px -1px #adadad;
|
||
box-shadow: 0px 6px 10px -1px #adadad;
|
||
border-radius: 2px;
|
||
position: absolute;
|
||
z-index: 1000;
|
||
}
|
||
.ipython_tooltip a {
|
||
float: right;
|
||
}
|
||
.ipython_tooltip .tooltiptext pre {
|
||
border: 0;
|
||
border-radius: 0;
|
||
font-size: 100%;
|
||
background-color: #f7f7f7;
|
||
}
|
||
.pretooltiparrow {
|
||
left: 0px;
|
||
margin: 0px;
|
||
top: -16px;
|
||
width: 40px;
|
||
height: 16px;
|
||
overflow: hidden;
|
||
position: absolute;
|
||
}
|
||
.pretooltiparrow:before {
|
||
background-color: #f7f7f7;
|
||
border: 1px #ababab solid;
|
||
z-index: 11;
|
||
content: "";
|
||
position: absolute;
|
||
left: 15px;
|
||
top: 10px;
|
||
width: 25px;
|
||
height: 25px;
|
||
-webkit-transform: rotate(45deg);
|
||
-moz-transform: rotate(45deg);
|
||
-ms-transform: rotate(45deg);
|
||
-o-transform: rotate(45deg);
|
||
}
|
||
ul.typeahead-list i {
|
||
margin-left: -10px;
|
||
width: 18px;
|
||
}
|
||
ul.typeahead-list {
|
||
max-height: 80vh;
|
||
overflow: auto;
|
||
}
|
||
ul.typeahead-list > li > a {
|
||
/** Firefox bug **/
|
||
/* see https://github.com/jupyter/notebook/issues/559 */
|
||
white-space: normal;
|
||
}
|
||
.cmd-palette .modal-body {
|
||
padding: 7px;
|
||
}
|
||
.cmd-palette form {
|
||
background: white;
|
||
}
|
||
.cmd-palette input {
|
||
outline: none;
|
||
}
|
||
.no-shortcut {
|
||
display: none;
|
||
}
|
||
.command-shortcut:before {
|
||
content: "(command)";
|
||
padding-right: 3px;
|
||
color: #777777;
|
||
}
|
||
.edit-shortcut:before {
|
||
content: "(edit)";
|
||
padding-right: 3px;
|
||
color: #777777;
|
||
}
|
||
#find-and-replace #replace-preview .match,
|
||
#find-and-replace #replace-preview .insert {
|
||
background-color: #BBDEFB;
|
||
border-color: #90CAF9;
|
||
border-style: solid;
|
||
border-width: 1px;
|
||
border-radius: 0px;
|
||
}
|
||
#find-and-replace #replace-preview .replace .match {
|
||
background-color: #FFCDD2;
|
||
border-color: #EF9A9A;
|
||
border-radius: 0px;
|
||
}
|
||
#find-and-replace #replace-preview .replace .insert {
|
||
background-color: #C8E6C9;
|
||
border-color: #A5D6A7;
|
||
border-radius: 0px;
|
||
}
|
||
#find-and-replace #replace-preview {
|
||
max-height: 60vh;
|
||
overflow: auto;
|
||
}
|
||
#find-and-replace #replace-preview pre {
|
||
padding: 5px 10px;
|
||
}
|
||
.terminal-app {
|
||
background: #EEE;
|
||
}
|
||
.terminal-app #header {
|
||
background: #fff;
|
||
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
|
||
}
|
||
.terminal-app .terminal {
|
||
width: 100%;
|
||
float: left;
|
||
font-family: monospace;
|
||
color: white;
|
||
background: black;
|
||
padding: 0.4em;
|
||
border-radius: 2px;
|
||
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
|
||
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
|
||
}
|
||
.terminal-app .terminal,
|
||
.terminal-app .terminal dummy-screen {
|
||
line-height: 1em;
|
||
font-size: 14px;
|
||
}
|
||
.terminal-app .terminal .xterm-rows {
|
||
padding: 10px;
|
||
}
|
||
.terminal-app .terminal-cursor {
|
||
color: black;
|
||
background: white;
|
||
}
|
||
.terminal-app #terminado-container {
|
||
margin-top: 20px;
|
||
}
|
||
/*# sourceMappingURL=style.min.css.map */
|
||
</style>
|
||
<style type="text/css">
|
||
.highlight .hll { background-color: #ffffcc }
|
||
.highlight { background: #f8f8f8; }
|
||
.highlight .c { color: #408080; font-style: italic } /* Comment */
|
||
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
||
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
|
||
.highlight .o { color: #666666 } /* Operator */
|
||
.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
|
||
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
|
||
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
|
||
.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
|
||
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
|
||
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
|
||
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
||
.highlight .go { color: #888888 } /* Generic.Output */
|
||
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
||
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
||
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
||
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
||
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
|
||
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
||
.highlight .kt { color: #B00040 } /* Keyword.Type */
|
||
.highlight .m { color: #666666 } /* Literal.Number */
|
||
.highlight .s { color: #BA2121 } /* Literal.String */
|
||
.highlight .na { color: #7D9029 } /* Name.Attribute */
|
||
.highlight .nb { color: #008000 } /* Name.Builtin */
|
||
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
|
||
.highlight .no { color: #880000 } /* Name.Constant */
|
||
.highlight .nd { color: #AA22FF } /* Name.Decorator */
|
||
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
|
||
.highlight .nf { color: #0000FF } /* Name.Function */
|
||
.highlight .nl { color: #A0A000 } /* Name.Label */
|
||
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
||
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
||
.highlight .nv { color: #19177C } /* Name.Variable */
|
||
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||
.highlight .mb { color: #666666 } /* Literal.Number.Bin */
|
||
.highlight .mf { color: #666666 } /* Literal.Number.Float */
|
||
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
|
||
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
|
||
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
|
||
.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
|
||
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
|
||
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
|
||
.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
|
||
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
|
||
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
|
||
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
||
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
|
||
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
|
||
.highlight .sx { color: #008000 } /* Literal.String.Other */
|
||
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
|
||
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
|
||
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
|
||
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
|
||
.highlight .fm { color: #0000FF } /* Name.Function.Magic */
|
||
.highlight .vc { color: #19177C } /* Name.Variable.Class */
|
||
.highlight .vg { color: #19177C } /* Name.Variable.Global */
|
||
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
|
||
.highlight .vm { color: #19177C } /* Name.Variable.Magic */
|
||
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
|
||
</style>
|
||
<style type="text/css">
|
||
|
||
/* Temporary definitions which will become obsolete with Notebook release 5.0 */
|
||
.ansi-black-fg { color: #3E424D; }
|
||
.ansi-black-bg { background-color: #3E424D; }
|
||
.ansi-black-intense-fg { color: #282C36; }
|
||
.ansi-black-intense-bg { background-color: #282C36; }
|
||
.ansi-red-fg { color: #E75C58; }
|
||
.ansi-red-bg { background-color: #E75C58; }
|
||
.ansi-red-intense-fg { color: #B22B31; }
|
||
.ansi-red-intense-bg { background-color: #B22B31; }
|
||
.ansi-green-fg { color: #00A250; }
|
||
.ansi-green-bg { background-color: #00A250; }
|
||
.ansi-green-intense-fg { color: #007427; }
|
||
.ansi-green-intense-bg { background-color: #007427; }
|
||
.ansi-yellow-fg { color: #DDB62B; }
|
||
.ansi-yellow-bg { background-color: #DDB62B; }
|
||
.ansi-yellow-intense-fg { color: #B27D12; }
|
||
.ansi-yellow-intense-bg { background-color: #B27D12; }
|
||
.ansi-blue-fg { color: #208FFB; }
|
||
.ansi-blue-bg { background-color: #208FFB; }
|
||
.ansi-blue-intense-fg { color: #0065CA; }
|
||
.ansi-blue-intense-bg { background-color: #0065CA; }
|
||
.ansi-magenta-fg { color: #D160C4; }
|
||
.ansi-magenta-bg { background-color: #D160C4; }
|
||
.ansi-magenta-intense-fg { color: #A03196; }
|
||
.ansi-magenta-intense-bg { background-color: #A03196; }
|
||
.ansi-cyan-fg { color: #60C6C8; }
|
||
.ansi-cyan-bg { background-color: #60C6C8; }
|
||
.ansi-cyan-intense-fg { color: #258F8F; }
|
||
.ansi-cyan-intense-bg { background-color: #258F8F; }
|
||
.ansi-white-fg { color: #C5C1B4; }
|
||
.ansi-white-bg { background-color: #C5C1B4; }
|
||
.ansi-white-intense-fg { color: #A1A6B2; }
|
||
.ansi-white-intense-bg { background-color: #A1A6B2; }
|
||
|
||
.ansi-bold { font-weight: bold; }
|
||
|
||
</style>
|
||
|
||
|
||
<style type="text/css">
|
||
/* Overrides of notebook CSS for static HTML export */
|
||
body {
|
||
overflow: visible;
|
||
padding: 8px;
|
||
}
|
||
|
||
div#notebook {
|
||
overflow: visible;
|
||
border-top: none;
|
||
}@media print {
|
||
div.cell {
|
||
display: block;
|
||
page-break-inside: avoid;
|
||
}
|
||
div.output_wrapper {
|
||
display: block;
|
||
page-break-inside: avoid;
|
||
}
|
||
div.output {
|
||
display: block;
|
||
page-break-inside: avoid;
|
||
}
|
||
}
|
||
</style>
|
||
|
||
<!-- Custom stylesheet, it must be in the same directory as the html file -->
|
||
<link rel="stylesheet" href="custom.css">
|
||
|
||
<!-- Loading mathjax macro -->
|
||
<!-- Load mathjax -->
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML"></script>
|
||
<!-- MathJax configuration -->
|
||
<script type="text/x-mathjax-config">
|
||
MathJax.Hub.Config({
|
||
tex2jax: {
|
||
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
|
||
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
|
||
processEscapes: true,
|
||
processEnvironments: true
|
||
},
|
||
// Center justify equations in code and markdown cells. Elsewhere
|
||
// we use CSS to left justify single line equations in code cells.
|
||
displayAlign: 'center',
|
||
"HTML-CSS": {
|
||
styles: {'.MathJax_Display': {"margin": 0}},
|
||
linebreaks: { automatic: true }
|
||
}
|
||
});
|
||
</script>
|
||
<!-- End of mathjax configuration --></head>
|
||
<body>
|
||
<div tabindex="-1" id="notebook" class="border-box-sizing">
|
||
<div class="container" id="notebook-container">
|
||
|
||
<div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
|
||
</div>
|
||
<div class="inner_cell">
|
||
<div class="text_cell_render border-box-sizing rendered_html">
|
||
<h1 id="Sentiment-Analysis-with-Logistic-Regression">Sentiment Analysis with Logistic Regression<a class="anchor-link" href="#Sentiment-Analysis-with-Logistic-Regression">¶</a></h1><p>This gives a simple example of explaining a linear logistic regression sentiment analysis model using shap. Note that with a linear model the SHAP value for feature i for the prediction $f(x)$ (assuming feature independence) is just $\phi_i = \beta_i \cdot (x_i - E[x_i])$. Since we are explaining a logistic regression model the units of the SHAP values will be in the log-odds space.</p>
|
||
<p>The dataset we use is the classic IMDB dataset from <a href="http://www.aclweb.org/anthology/P11-1015">this paper</a>. It is interesting when explaining the model how words that are absent from the text are sometimes just as important as those that are present.</p>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [1]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="kn">import</span> <span class="nn">sklearn</span>
|
||
<span class="kn">from</span> <span class="nn">sklearn.feature_extraction.text</span> <span class="k">import</span> <span class="n">TfidfVectorizer</span>
|
||
<span class="kn">from</span> <span class="nn">sklearn.model_selection</span> <span class="k">import</span> <span class="n">train_test_split</span>
|
||
<span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span>
|
||
<span class="kn">import</span> <span class="nn">shap</span>
|
||
|
||
<span class="n">shap</span><span class="o">.</span><span class="n">initjs</span><span class="p">()</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="output_wrapper">
|
||
<div class="output">
|
||
|
||
|
||
<div class="output_area">
|
||
|
||
<div class="prompt"></div>
|
||
|
||
|
||
|
||
<div class="output_html rendered_html output_subarea ">
|
||
<div align='center'><img src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAWCAYAAAA1vze2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAdxJREFUeNq0Vt1Rg0AQJjcpgBJiBWIFkgoMFYhPPAIVECogPuYpdJBYgXQQrMCUkA50V7+d2ZwXuXPGm9khHLu3f9+3l1nkWNvtNqfHLgpfQ1EUS3tz5nAQ0+NIsiAZSc6eDlI8M3J00B/mDuUKDk6kfOebAgW3pkdD0pFcODGW4gKKvOrAUm04MA4QDt1OEIXU9hDigfS5rC1eS5T90gltck1Xrizo257kgySZcNRzgCSxCvgiE9nckPJo2b/B2AcEkk2OwL8bD8gmOKR1GPbaCUqxEgTq0tLvgb6zfo7+DgYGkkWL2tqLDV4RSITfbHPPfJKIrWz4nJQTMPAWA7IbD6imcNaDeDfgk+4No+wZr40BL3g9eQJJCFqRQ54KiSt72lsLpE3o3MCBSxDuq4yOckU2hKXRuwBH3OyMR4g1UpyTYw6mlmBqNdUXRM1NfyF5EPI6JkcpIDBIX8jX6DR/6ckAZJ0wEAdLR8DEk6OfC1Pp8BKo6TQIwPJbvJ6toK5lmuvJoRtfK6Ym1iRYIarRo2UyYHvRN5qpakR3yoizWrouoyuXXQqI185LCw07op5ZyCRGL99h24InP0e9xdQukEKVmhzrqZuRIfwISB//cP3Wk3f8f/yR+BRgAHu00HjLcEQBAAAAAElFTkSuQmCC' /></div><script>!function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,e),i.l=!0,i.exports}var n={};e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=189)}([function(t,e,n){"use strict";function r(t,e,n,r,o,a,u,c){if(i(e),!t){var s;if(void 0===e)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,o,a,u,c],f=0;s=new Error(e.replace(/%s/g,function(){return l[f++]})),s.name="Invariant Violation"}throw s.framesToPop=1,s}}var i=function(t){};t.exports=r},function(t,e,n){"use strict";function r(t){for(var e=arguments.length-1,n="Minified React error #"+t+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+t,r=0;r<e;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);n+=" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";var i=new Error(n);throw i.name="Invariant Violation",i.framesToPop=1,i}t.exports=r},function(t,e,n){"use strict";var r=n(11),i=r;t.exports=i},function(t,e,n){"use strict";function r(t){if(null===t||void 0===t)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(t)}/*
|
||
object-assign
|
||
(c) Sindre Sorhus
|
||
@license MIT
|
||
*/
|
||
var i=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;t.exports=function(){try{if(!Object.assign)return!1;var t=new String("abc");if(t[5]="de","5"===Object.getOwnPropertyNames(t)[0])return!1;for(var e={},n=0;n<10;n++)e["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(e).map(function(t){return e[t]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(t){r[t]=t}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(t){return!1}}()?Object.assign:function(t,e){for(var n,u,c=r(t),s=1;s<arguments.length;s++){n=Object(arguments[s]);for(var l in n)o.call(n,l)&&(c[l]=n[l]);if(i){u=i(n);for(var f=0;f<u.length;f++)a.call(n,u[f])&&(c[u[f]]=n[u[f]])}}return c}},function(t,e,n){"use strict";function r(t,e){return 1===t.nodeType&&t.getAttribute(d)===String(e)||8===t.nodeType&&t.nodeValue===" react-text: "+e+" "||8===t.nodeType&&t.nodeValue===" react-empty: "+e+" "}function i(t){for(var e;e=t._renderedComponent;)t=e;return t}function o(t,e){var n=i(t);n._hostNode=e,e[g]=n}function a(t){var e=t._hostNode;e&&(delete e[g],t._hostNode=null)}function u(t,e){if(!(t._flags&v.hasCachedChildNodes)){var n=t._renderedChildren,a=e.firstChild;t:for(var u in n)if(n.hasOwnProperty(u)){var c=n[u],s=i(c)._domID;if(0!==s){for(;null!==a;a=a.nextSibling)if(r(a,s)){o(c,a);continue t}f("32",s)}}t._flags|=v.hasCachedChildNodes}}function c(t){if(t[g])return t[g];for(var e=[];!t[g];){if(e.push(t),!t.parentNode)return null;t=t.parentNode}for(var n,r;t&&(r=t[g]);t=e.pop())n=r,e.length&&u(r,t);return n}function s(t){var e=c(t);return null!=e&&e._hostNode===t?e:null}function l(t){if(void 0===t._hostNode&&f("33"),t._hostNode)return t._hostNode;for(var e=[];!t._hostNode;)e.push(t),t._hostParent||f("34"),t=t._hostParent;for(;e.length;t=e.pop())u(t,t._hostNode);return t._hostNode}var f=n(1),p=n(21),h=n(161),d=(n(0),p.ID_ATTRIBUTE_NAME),v=h,g="__reactInternalInstance$"+Math.random().toString(36).slice(2),m={getClosestInstanceFromNode:c,getInstanceFromNode:s,getNodeFromInstance:l,precacheChildNodes:u,precacheNode:o,uncacheNode:a};t.exports=m},function(t,e,n){"use strict";function r(t,e,n,a){function u(e){return t(e=new Date(+e)),e}return u.floor=u,u.ceil=function(n){return t(n=new Date(n-1)),e(n,1),t(n),n},u.round=function(t){var e=u(t),n=u.ceil(t);return t-e<n-t?e:n},u.offset=function(t,n){return e(t=new Date(+t),null==n?1:Math.floor(n)),t},u.range=function(n,r,i){var o,a=[];if(n=u.ceil(n),i=null==i?1:Math.floor(i),!(n<r&&i>0))return a;do{a.push(o=new Date(+n)),e(n,i),t(n)}while(o<n&&n<r);return a},u.filter=function(n){return r(function(e){if(e>=e)for(;t(e),!n(e);)e.setTime(e-1)},function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;e(t,-1),!n(t););else for(;--r>=0;)for(;e(t,1),!n(t););})},n&&(u.count=function(e,r){return i.setTime(+e),o.setTime(+r),t(i),t(o),Math.floor(n(i,o))},u.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?u.filter(a?function(e){return a(e)%t==0}:function(e){return u.count(0,e)%t==0}):u:null}),u}e.a=r;var i=new Date,o=new Date},function(t,e,n){"use strict";var r=!("undefined"==typeof window||!window.document||!window.document.createElement),i={canUseDOM:r,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:r&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:r&&!!window.screen,isInWorker:!r};t.exports=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(101);n.d(e,"bisect",function(){return r.a}),n.d(e,"bisectRight",function(){return r.b}),n.d(e,"bisectLeft",function(){return r.c});var i=n(19);n.d(e,"ascending",function(){return i.a});var o=n(102);n.d(e,"bisector",function(){return o.a});var a=n(193);n.d(e,"cross",function(){return a.a});var u=n(194);n.d(e,"descending",function(){return u.a});var c=n(103);n.d(e,"deviation",function(){return c.a});var s=n(104);n.d(e,"extent",function(){return s.a});var l=n(195);n.d(e,"histogram",function(){return l.a});var f=n(205);n.d(e,"thresholdFreedmanDiaconis",function(){return f.a});var p=n(206);n.d(e,"thresholdScott",function(){return p.a});var h=n(108);n.d(e,"thresholdSturges",function(){return h.a});var d=n(197);n.d(e,"max",function(){return d.a});var v=n(198);n.d(e,"mean",function(){return v.a});var g=n(199);n.d(e,"median",function(){return g.a});var m=n(200);n.d(e,"merge",function(){return m.a});var y=n(105);n.d(e,"min",function(){return y.a});var _=n(106);n.d(e,"pairs",function(){return _.a});var b=n(201);n.d(e,"permute",function(){return b.a});var x=n(59);n.d(e,"quantile",function(){return x.a});var w=n(107);n.d(e,"range",function(){return w.a});var C=n(202);n.d(e,"scan",function(){return C.a});var k=n(203);n.d(e,"shuffle",function(){return k.a});var E=n(204);n.d(e,"sum",function(){return E.a});var M=n(109);n.d(e,"ticks",function(){return M.a}),n.d(e,"tickIncrement",function(){return M.b}),n.d(e,"tickStep",function(){return M.c});var T=n(110);n.d(e,"transpose",function(){return T.a});var S=n(111);n.d(e,"variance",function(){return S.a});var N=n(207);n.d(e,"zip",function(){return N.a})},function(t,e,n){"use strict";function r(t,e){this._groups=t,this._parents=e}function i(){return new r([[document.documentElement]],R)}n.d(e,"c",function(){return R}),e.b=r;var o=n(283),a=n(284),u=n(272),c=n(266),s=n(132),l=n(271),f=n(276),p=n(279),h=n(286),d=n(263),v=n(278),g=n(277),m=n(285),y=n(270),_=n(269),b=n(262),x=n(134),w=n(280),C=n(264),k=n(287),E=n(273),M=n(281),T=n(275),S=n(261),N=n(274),A=n(282),P=n(265),O=n(267),I=n(70),D=n(268),R=[null];r.prototype=i.prototype={constructor:r,select:o.a,selectAll:a.a,filter:u.a,data:c.a,enter:s.a,exit:l.a,merge:f.a,order:p.a,sort:h.a,call:d.a,nodes:v.a,node:g.a,size:m.a,empty:y.a,each:_.a,attr:b.a,style:x.b,property:w.a,classed:C.a,text:k.a,html:E.a,raise:M.a,lower:T.a,append:S.a,insert:N.a,remove:A.a,clone:P.a,datum:O.a,on:I.c,dispatch:D.a},e.a=i},function(t,e,n){"use strict";var r=null;t.exports={debugTool:r}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(61);n.d(e,"color",function(){return r.a}),n.d(e,"rgb",function(){return r.b}),n.d(e,"hsl",function(){return r.c});var i=n(218);n.d(e,"lab",function(){return i.a}),n.d(e,"hcl",function(){return i.b});var o=n(217);n.d(e,"cubehelix",function(){return o.a})},function(t,e,n){"use strict";function r(t){return function(){return t}}var i=function(){};i.thatReturns=r,i.thatReturnsFalse=r(!1),i.thatReturnsTrue=r(!0),i.thatReturnsNull=r(null),i.thatReturnsThis=function(){return this},i.thatReturnsArgument=function(t){return t},t.exports=i},function(t,e,n){"use strict";function r(){S.ReactReconcileTransaction&&w||l("123")}function i(){this.reinitializeTransaction(),this.dirtyComponentsLength=null,this.callbackQueue=p.getPooled(),this.reconcileTransaction=S.ReactReconcileTransaction.getPooled(!0)}function o(t,e,n,i,o,a){return r(),w.batchedUpdates(t,e,n,i,o,a)}function a(t,e){return t._mountOrder-e._mountOrder}function u(t){var e=t.dirtyComponentsLength;e!==y.length&&l("124",e,y.length),y.sort(a),_++;for(var n=0;n<e;n++){var r=y[n],i=r._pendingCallbacks;r._pendingCallbacks=null;var o;if(d.logTopLevelRenders){var u=r;r._currentElement.type.isReactTopLevelWrapper&&(u=r._renderedComponent),o="React update: "+u.getName(),console.time(o)}if(v.performUpdateIfNecessary(r,t.reconcileTransaction,_),o&&console.timeEnd(o),i)for(var c=0;c<i.length;c++)t.callbackQueue.enqueue(i[c],r.getPublicInstance())}}function c(t){if(r(),!w.isBatchingUpdates)return void w.batchedUpdates(c,t);y.push(t),null==t._updateBatchNumber&&(t._updateBatchNumber=_+1)}function s(t,e){m(w.isBatchingUpdates,"ReactUpdates.asap: Can't enqueue an asap callback in a context whereupdates are not being batched."),b.enqueue(t,e),x=!0}var l=n(1),f=n(3),p=n(159),h=n(18),d=n(164),v=n(24),g=n(55),m=n(0),y=[],_=0,b=p.getPooled(),x=!1,w=null,C={initialize:function(){this.dirtyComponentsLength=y.length},close:function(){this.dirtyComponentsLength!==y.length?(y.splice(0,this.dirtyComponentsLength),M()):y.length=0}},k={initialize:function(){this.callbackQueue.reset()},close:function(){this.callbackQueue.notifyAll()}},E=[C,k];f(i.prototype,g,{getTransactionWrappers:function(){return E},destructor:function(){this.dirtyComponentsLength=null,p.release(this.callbackQueue),this.callbackQueue=null,S.ReactReconcileTransaction.release(this.reconcileTransaction),this.reconcileTransaction=null},perform:function(t,e,n){return g.perform.call(this,this.reconcileTransaction.perform,this.reconcileTransaction,t,e,n)}}),h.addPoolingTo(i);var M=function(){for(;y.length||x;){if(y.length){var t=i.getPooled();t.perform(u,null,t),i.release(t)}if(x){x=!1;var e=b;b=p.getPooled(),e.notifyAll(),p.release(e)}}},T={injectReconcileTransaction:function(t){t||l("126"),S.ReactReconcileTransaction=t},injectBatchingStrategy:function(t){t||l("127"),"function"!=typeof t.batchedUpdates&&l("128"),"boolean"!=typeof t.isBatchingUpdates&&l("129"),w=t}},S={ReactReconcileTransaction:null,batchedUpdates:o,enqueueUpdate:c,flushBatchedUpdates:M,injection:T,asap:s};t.exports=S},function(t,e,n){"use strict";n.d(e,"e",function(){return r}),n.d(e,"d",function(){return i}),n.d(e,"c",function(){return o}),n.d(e,"b",function(){return a}),n.d(e,"a",function(){return u});var r=1e3,i=6e4,o=36e5,a=864e5,u=6048e5},function(t,e,n){"use strict";function r(t,e,n,r){this.dispatchConfig=t,this._targetInst=e,this.nativeEvent=n;var i=this.constructor.Interface;for(var o in i)if(i.hasOwnProperty(o)){var u=i[o];u?this[o]=u(n):"target"===o?this.target=r:this[o]=n[o]}var c=null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue;return this.isDefaultPrevented=c?a.thatReturnsTrue:a.thatReturnsFalse,this.isPropagationStopped=a.thatReturnsFalse,this}var i=n(3),o=n(18),a=n(11),u=(n(2),["dispatchConfig","_targetInst","nativeEvent","isDefaultPrevented","isPropagationStopped","_dispatchListeners","_dispatchInstances"]),c={type:null,target:null,currentTarget:a.thatReturnsNull,eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(t){return t.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null};i(r.prototype,{preventDefault:function(){this.defaultPrevented=!0;var t=this.nativeEvent;t&&(t.preventDefault?t.preventDefault():"unknown"!=typeof t.returnValue&&(t.returnValue=!1),this.isDefaultPrevented=a.thatReturnsTrue)},stopPropagation:function(){var t=this.nativeEvent;t&&(t.stopPropagation?t.stopPropagation():"unknown"!=typeof t.cancelBubble&&(t.cancelBubble=!0),this.isPropagationStopped=a.thatReturnsTrue)},persist:function(){this.isPersistent=a.thatReturnsTrue},isPersistent:a.thatReturnsFalse,destructor:function(){var t=this.constructor.Interface;for(var e in t)this[e]=null;for(var n=0;n<u.length;n++)this[u[n]]=null}}),r.Interface=c,r.augmentClass=function(t,e){var n=this,r=function(){};r.prototype=n.prototype;var a=new r;i(a,t.prototype),t.prototype=a,t.prototype.constructor=t,t.Interface=i({},n.Interface,e),t.augmentClass=n.augmentClass,o.addPoolingTo(t,o.fourArgumentPooler)},o.addPoolingTo(r,o.fourArgumentPooler),t.exports=r},function(t,e,n){"use strict";var r={current:null};t.exports=r},function(t,e,n){"use strict";n.d(e,"a",function(){return i}),n.d(e,"b",function(){return o});var r=Array.prototype,i=r.map,o=r.slice},function(t,e,n){"use strict";e.a=function(t){return function(){return t}}},function(t,e,n){"use strict";var r=n(1),i=(n(0),function(t){var e=this;if(e.instancePool.length){var n=e.instancePool.pop();return e.call(n,t),n}return new e(t)}),o=function(t,e){var n=this;if(n.instancePool.length){var r=n.instancePool.pop();return n.call(r,t,e),r}return new n(t,e)},a=function(t,e,n){var r=this;if(r.instancePool.length){var i=r.instancePool.pop();return r.call(i,t,e,n),i}return new r(t,e,n)},u=function(t,e,n,r){var i=this;if(i.instancePool.length){var o=i.instancePool.pop();return i.call(o,t,e,n,r),o}return new i(t,e,n,r)},c=function(t){var e=this;t instanceof e||r("25"),t.destructor(),e.instancePool.length<e.poolSize&&e.instancePool.push(t)},s=i,l=function(t,e){var n=t;return n.instancePool=[],n.getPooled=e||s,n.poolSize||(n.poolSize=10),n.release=c,n},f={addPoolingTo:l,oneArgumentPooler:i,twoArgumentPooler:o,threeArgumentPooler:a,fourArgumentPooler:u};t.exports=f},function(t,e,n){"use strict";e.a=function(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}},function(t,e,n){"use strict";function r(t){if(d){var e=t.node,n=t.children;if(n.length)for(var r=0;r<n.length;r++)v(e,n[r],null);else null!=t.html?f(e,t.html):null!=t.text&&h(e,t.text)}}function i(t,e){t.parentNode.replaceChild(e.node,t),r(e)}function o(t,e){d?t.children.push(e):t.node.appendChild(e.node)}function a(t,e){d?t.html=e:f(t.node,e)}function u(t,e){d?t.text=e:h(t.node,e)}function c(){return this.node.nodeName}function s(t){return{node:t,children:[],html:null,text:null,toString:c}}var l=n(83),f=n(57),p=n(91),h=n(176),d="undefined"!=typeof document&&"number"==typeof document.documentMode||"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&/\bEdge\/\d/.test(navigator.userAgent),v=p(function(t,e,n){11===e.node.nodeType||1===e.node.nodeType&&"object"===e.node.nodeName.toLowerCase()&&(null==e.node.namespaceURI||e.node.namespaceURI===l.html)?(r(e),t.insertBefore(e.node,n)):(t.insertBefore(e.node,n),r(e))});s.insertTreeBefore=v,s.replaceChildWithTree=i,s.queueChild=o,s.queueHTML=a,s.queueText=u,t.exports=s},function(t,e,n){"use strict";function r(t,e){return(t&e)===e}var i=n(1),o=(n(0),{MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32,injectDOMPropertyConfig:function(t){var e=o,n=t.Properties||{},a=t.DOMAttributeNamespaces||{},c=t.DOMAttributeNames||{},s=t.DOMPropertyNames||{},l=t.DOMMutationMethods||{};t.isCustomAttribute&&u._isCustomAttributeFunctions.push(t.isCustomAttribute);for(var f in n){u.properties.hasOwnProperty(f)&&i("48",f);var p=f.toLowerCase(),h=n[f],d={attributeName:p,attributeNamespace:null,propertyName:f,mutationMethod:null,mustUseProperty:r(h,e.MUST_USE_PROPERTY),hasBooleanValue:r(h,e.HAS_BOOLEAN_VALUE),hasNumericValue:r(h,e.HAS_NUMERIC_VALUE),hasPositiveNumericValue:r(h,e.HAS_POSITIVE_NUMERIC_VALUE),hasOverloadedBooleanValue:r(h,e.HAS_OVERLOADED_BOOLEAN_VALUE)};if(d.hasBooleanValue+d.hasNumericValue+d.hasOverloadedBooleanValue<=1||i("50",f),c.hasOwnProperty(f)){var v=c[f];d.attributeName=v}a.hasOwnProperty(f)&&(d.attributeNamespace=a[f]),s.hasOwnProperty(f)&&(d.propertyName=s[f]),l.hasOwnProperty(f)&&(d.mutationMethod=l[f]),u.properties[f]=d}}}),a=":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",u={ID_ATTRIBUTE_NAME:"data-reactid",ROOT_ATTRIBUTE_NAME:"data-reactroot",ATTRIBUTE_NAME_START_CHAR:a,ATTRIBUTE_NAME_CHAR:a+"\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",properties:{},getPossibleStandardName:null,_isCustomAttributeFunctions:[],isCustomAttribute:function(t){for(var e=0;e<u._isCustomAttributeFunctions.length;e++){if((0,u._isCustomAttributeFunctions[e])(t))return!0}return!1},injection:o};t.exports=u},function(t,e,n){"use strict";function r(t){return"button"===t||"input"===t||"select"===t||"textarea"===t}function i(t,e,n){switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":return!(!n.disabled||!r(e));default:return!1}}var o=n(1),a=n(84),u=n(52),c=n(88),s=n(169),l=n(170),f=(n(0),{}),p=null,h=function(t,e){t&&(u.executeDispatchesInOrder(t,e),t.isPersistent()||t.constructor.release(t))},d=function(t){return h(t,!0)},v=function(t){return h(t,!1)},g=function(t){return"."+t._rootNodeID},m={injection:{injectEventPluginOrder:a.injectEventPluginOrder,injectEventPluginsByName:a.injectEventPluginsByName},putListener:function(t,e,n){"function"!=typeof n&&o("94",e,typeof n);var r=g(t);(f[e]||(f[e]={}))[r]=n;var i=a.registrationNameModules[e];i&&i.didPutListener&&i.didPutListener(t,e,n)},getListener:function(t,e){var n=f[e];if(i(e,t._currentElement.type,t._currentElement.props))return null;var r=g(t);return n&&n[r]},deleteListener:function(t,e){var n=a.registrationNameModules[e];n&&n.willDeleteListener&&n.willDeleteListener(t,e);var r=f[e];if(r){delete r[g(t)]}},deleteAllListeners:function(t){var e=g(t);for(var n in f)if(f.hasOwnProperty(n)&&f[n][e]){var r=a.registrationNameModules[n];r&&r.willDeleteListener&&r.willDeleteListener(t,n),delete f[n][e]}},extractEvents:function(t,e,n,r){for(var i,o=a.plugins,u=0;u<o.length;u++){var c=o[u];if(c){var l=c.extractEvents(t,e,n,r);l&&(i=s(i,l))}}return i},enqueueEvents:function(t){t&&(p=s(p,t))},processEventQueue:function(t){var e=p;p=null,t?l(e,d):l(e,v),p&&o("95"),c.rethrowCaughtError()},__purge:function(){f={}},__getListenerBank:function(){return f}};t.exports=m},function(t,e,n){"use strict";function r(t,e,n){var r=e.dispatchConfig.phasedRegistrationNames[n];return m(t,r)}function i(t,e,n){var i=r(t,n,e);i&&(n._dispatchListeners=v(n._dispatchListeners,i),n._dispatchInstances=v(n._dispatchInstances,t))}function o(t){t&&t.dispatchConfig.phasedRegistrationNames&&d.traverseTwoPhase(t._targetInst,i,t)}function a(t){if(t&&t.dispatchConfig.phasedRegistrationNames){var e=t._targetInst,n=e?d.getParentInstance(e):null;d.traverseTwoPhase(n,i,t)}}function u(t,e,n){if(n&&n.dispatchConfig.registrationName){var r=n.dispatchConfig.registrationName,i=m(t,r);i&&(n._dispatchListeners=v(n._dispatchListeners,i),n._dispatchInstances=v(n._dispatchInstances,t))}}function c(t){t&&t.dispatchConfig.registrationName&&u(t._targetInst,null,t)}function s(t){g(t,o)}function l(t){g(t,a)}function f(t,e,n,r){d.traverseEnterLeave(n,r,u,t,e)}function p(t){g(t,c)}var h=n(22),d=n(52),v=n(169),g=n(170),m=(n(2),h.getListener),y={accumulateTwoPhaseDispatches:s,accumulateTwoPhaseDispatchesSkipTarget:l,accumulateDirectDispatches:p,accumulateEnterLeaveDispatches:f};t.exports=y},function(t,e,n){"use strict";function r(){i.attachRefs(this,this._currentElement)}var i=n(382),o=(n(9),n(2),{mountComponent:function(t,e,n,i,o,a){var u=t.mountComponent(e,n,i,o,a);return t._currentElement&&null!=t._currentElement.ref&&e.getReactMountReady().enqueue(r,t),u},getHostNode:function(t){return t.getHostNode()},unmountComponent:function(t,e){i.detachRefs(t,t._currentElement),t.unmountComponent(e)},receiveComponent:function(t,e,n,o){var a=t._currentElement;if(e!==a||o!==t._context){var u=i.shouldUpdateRefs(a,e);u&&i.detachRefs(t,a),t.receiveComponent(e,n,o),u&&t._currentElement&&null!=t._currentElement.ref&&n.getReactMountReady().enqueue(r,t)}},performUpdateIfNecessary:function(t,e,n){t._updateBatchNumber===n&&t.performUpdateIfNecessary(e)}});t.exports=o},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(14),o=n(94),a={view:function(t){if(t.view)return t.view;var e=o(t);if(e.window===e)return e;var n=e.ownerDocument;return n?n.defaultView||n.parentWindow:window},detail:function(t){return t.detail||0}};i.augmentClass(r,a),t.exports=r},function(t,e,n){"use strict";var r=n(3),i=n(178),o=n(414),a=n(415),u=n(27),c=n(416),s=n(417),l=n(418),f=n(422),p=u.createElement,h=u.createFactory,d=u.cloneElement,v=r,g=function(t){return t},m={Children:{map:o.map,forEach:o.forEach,count:o.count,toArray:o.toArray,only:f},Component:i.Component,PureComponent:i.PureComponent,createElement:p,cloneElement:d,isValidElement:u.isValidElement,PropTypes:c,createClass:l,createFactory:h,createMixin:g,DOM:a,version:s,__spread:v};t.exports=m},function(t,e,n){"use strict";function r(t){return void 0!==t.ref}function i(t){return void 0!==t.key}var o=n(3),a=n(15),u=(n(2),n(182),Object.prototype.hasOwnProperty),c=n(180),s={key:!0,ref:!0,__self:!0,__source:!0},l=function(t,e,n,r,i,o,a){var u={$$typeof:c,type:t,key:e,ref:n,props:a,_owner:o};return u};l.createElement=function(t,e,n){var o,c={},f=null,p=null;if(null!=e){r(e)&&(p=e.ref),i(e)&&(f=""+e.key),void 0===e.__self?null:e.__self,void 0===e.__source?null:e.__source;for(o in e)u.call(e,o)&&!s.hasOwnProperty(o)&&(c[o]=e[o])}var h=arguments.length-2;if(1===h)c.children=n;else if(h>1){for(var d=Array(h),v=0;v<h;v++)d[v]=arguments[v+2];c.children=d}if(t&&t.defaultProps){var g=t.defaultProps;for(o in g)void 0===c[o]&&(c[o]=g[o])}return l(t,f,p,0,0,a.current,c)},l.createFactory=function(t){var e=l.createElement.bind(null,t);return e.type=t,e},l.cloneAndReplaceKey=function(t,e){return l(t.type,e,t.ref,t._self,t._source,t._owner,t.props)},l.cloneElement=function(t,e,n){var c,f=o({},t.props),p=t.key,h=t.ref,d=(t._self,t._source,t._owner);if(null!=e){r(e)&&(h=e.ref,d=a.current),i(e)&&(p=""+e.key);var v;t.type&&t.type.defaultProps&&(v=t.type.defaultProps);for(c in e)u.call(e,c)&&!s.hasOwnProperty(c)&&(void 0===e[c]&&void 0!==v?f[c]=v[c]:f[c]=e[c])}var g=arguments.length-2;if(1===g)f.children=n;else if(g>1){for(var m=Array(g),y=0;y<g;y++)m[y]=arguments[y+2];f.children=m}return l(t.type,p,h,0,0,d,f)},l.isValidElement=function(t){return"object"==typeof t&&null!==t&&t.$$typeof===c},t.exports=l},function(t,e,n){"use strict";e.a=function(t){return null===t?NaN:+t}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(219);n.d(e,"formatDefaultLocale",function(){return r.a}),n.d(e,"format",function(){return r.b}),n.d(e,"formatPrefix",function(){return r.c});var i=n(117);n.d(e,"formatLocale",function(){return i.a});var o=n(115);n.d(e,"formatSpecifier",function(){return o.a});var a=n(225);n.d(e,"precisionFixed",function(){return a.a});var u=n(226);n.d(e,"precisionPrefix",function(){return u.a});var c=n(227);n.d(e,"precisionRound",function(){return c.a})},function(t,e,n){"use strict";var r=n(65);n.d(e,"b",function(){return r.a});var i=(n(118),n(64),n(119),n(121),n(43));n.d(e,"a",function(){return i.a});var o=(n(122),n(233));n.d(e,"c",function(){return o.a});var a=(n(124),n(235),n(237),n(123),n(230),n(231),n(229),n(228));n.d(e,"d",function(){return a.a});n(232)},function(t,e,n){"use strict";function r(t,e){return function(n){return t+n*e}}function i(t,e,n){return t=Math.pow(t,n),e=Math.pow(e,n)-t,n=1/n,function(r){return Math.pow(t+r*e,n)}}function o(t,e){var i=e-t;return i?r(t,i>180||i<-180?i-360*Math.round(i/360):i):n.i(c.a)(isNaN(t)?e:t)}function a(t){return 1==(t=+t)?u:function(e,r){return r-e?i(e,r,t):n.i(c.a)(isNaN(e)?r:e)}}function u(t,e){var i=e-t;return i?r(t,i):n.i(c.a)(isNaN(t)?e:t)}e.b=o,e.c=a,e.a=u;var c=n(120)},function(t,e,n){"use strict";var r=n(238);n.d(e,"a",function(){return r.a})},function(t,e,n){"use strict";e.a=function(t){return t.match(/.{6}/g).map(function(t){return"#"+t})}},function(t,e,n){"use strict";function r(t){var e=t.domain;return t.ticks=function(t){var r=e();return n.i(o.ticks)(r[0],r[r.length-1],null==t?10:t)},t.tickFormat=function(t,r){return n.i(c.a)(e(),t,r)},t.nice=function(r){null==r&&(r=10);var i,a=e(),u=0,c=a.length-1,s=a[u],l=a[c];return l<s&&(i=s,s=l,l=i,i=u,u=c,c=i),i=n.i(o.tickIncrement)(s,l,r),i>0?(s=Math.floor(s/i)*i,l=Math.ceil(l/i)*i,i=n.i(o.tickIncrement)(s,l,r)):i<0&&(s=Math.ceil(s*i)/i,l=Math.floor(l*i)/i,i=n.i(o.tickIncrement)(s,l,r)),i>0?(a[u]=Math.floor(s/i)*i,a[c]=Math.ceil(l/i)*i,e(a)):i<0&&(a[u]=Math.ceil(s*i)/i,a[c]=Math.floor(l*i)/i,e(a)),t},t}function i(){var t=n.i(u.a)(u.b,a.a);return t.copy=function(){return n.i(u.c)(t,i())},r(t)}e.b=r,e.a=i;var o=n(7),a=n(30),u=n(44),c=n(253)},function(t,e,n){"use strict";function r(t){return t>1?0:t<-1?h:Math.acos(t)}function i(t){return t>=1?d:t<=-1?-d:Math.asin(t)}n.d(e,"g",function(){return o}),n.d(e,"m",function(){return a}),n.d(e,"h",function(){return u}),n.d(e,"e",function(){return c}),n.d(e,"j",function(){return s}),n.d(e,"i",function(){return l}),n.d(e,"d",function(){return f}),n.d(e,"a",function(){return p}),n.d(e,"b",function(){return h}),n.d(e,"f",function(){return d}),n.d(e,"c",function(){return v}),e.l=r,e.k=i;var o=Math.abs,a=Math.atan2,u=Math.cos,c=Math.max,s=Math.min,l=Math.sin,f=Math.sqrt,p=1e-12,h=Math.PI,d=h/2,v=2*h},function(t,e,n){"use strict";e.a=function(t,e){if((i=t.length)>1)for(var n,r,i,o=1,a=t[e[0]],u=a.length;o<i;++o)for(r=a,a=t[e[o]],n=0;n<u;++n)a[n][1]+=a[n][0]=isNaN(r[n][1])?r[n][0]:r[n][1]}},function(t,e,n){"use strict";e.a=function(t){for(var e=t.length,n=new Array(e);--e>=0;)n[e]=e;return n}},function(t,e,n){(function(t,r){var i;(function(){function o(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}function a(t,e,n,r){for(var i=-1,o=null==t?0:t.length;++i<o;){var a=t[i];e(r,a,n(a),t)}return r}function u(t,e){for(var n=-1,r=null==t?0:t.length;++n<r&&!1!==e(t[n],n,t););return t}function c(t,e){for(var n=null==t?0:t.length;n--&&!1!==e(t[n],n,t););return t}function s(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(!e(t[n],n,t))return!1;return!0}function l(t,e){for(var n=-1,r=null==t?0:t.length,i=0,o=[];++n<r;){var a=t[n];e(a,n,t)&&(o[i++]=a)}return o}function f(t,e){return!!(null==t?0:t.length)&&w(t,e,0)>-1}function p(t,e,n){for(var r=-1,i=null==t?0:t.length;++r<i;)if(n(e,t[r]))return!0;return!1}function h(t,e){for(var n=-1,r=null==t?0:t.length,i=Array(r);++n<r;)i[n]=e(t[n],n,t);return i}function d(t,e){for(var n=-1,r=e.length,i=t.length;++n<r;)t[i+n]=e[n];return t}function v(t,e,n,r){var i=-1,o=null==t?0:t.length;for(r&&o&&(n=t[++i]);++i<o;)n=e(n,t[i],i,t);return n}function g(t,e,n,r){var i=null==t?0:t.length;for(r&&i&&(n=t[--i]);i--;)n=e(n,t[i],i,t);return n}function m(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(e(t[n],n,t))return!0;return!1}function y(t){return t.split("")}function _(t){return t.match(Ue)||[]}function b(t,e,n){var r;return n(t,function(t,n,i){if(e(t,n,i))return r=n,!1}),r}function x(t,e,n,r){for(var i=t.length,o=n+(r?1:-1);r?o--:++o<i;)if(e(t[o],o,t))return o;return-1}function w(t,e,n){return e===e?$(t,e,n):x(t,k,n)}function C(t,e,n,r){for(var i=n-1,o=t.length;++i<o;)if(r(t[i],e))return i;return-1}function k(t){return t!==t}function E(t,e){var n=null==t?0:t.length;return n?A(t,e)/n:It}function M(t){return function(e){return null==e?nt:e[t]}}function T(t){return function(e){return null==t?nt:t[e]}}function S(t,e,n,r,i){return i(t,function(t,i,o){n=r?(r=!1,t):e(n,t,i,o)}),n}function N(t,e){var n=t.length;for(t.sort(e);n--;)t[n]=t[n].value;return t}function A(t,e){for(var n,r=-1,i=t.length;++r<i;){var o=e(t[r]);o!==nt&&(n=n===nt?o:n+o)}return n}function P(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}function O(t,e){return h(e,function(e){return[e,t[e]]})}function I(t){return function(e){return t(e)}}function D(t,e){return h(e,function(e){return t[e]})}function R(t,e){return t.has(e)}function L(t,e){for(var n=-1,r=t.length;++n<r&&w(e,t[n],0)>-1;);return n}function U(t,e){for(var n=t.length;n--&&w(e,t[n],0)>-1;);return n}function F(t,e){for(var n=t.length,r=0;n--;)t[n]===e&&++r;return r}function j(t){return"\\"+En[t]}function B(t,e){return null==t?nt:t[e]}function V(t){return gn.test(t)}function W(t){return mn.test(t)}function z(t){for(var e,n=[];!(e=t.next()).done;)n.push(e.value);return n}function H(t){var e=-1,n=Array(t.size);return t.forEach(function(t,r){n[++e]=[r,t]}),n}function q(t,e){return function(n){return t(e(n))}}function Y(t,e){for(var n=-1,r=t.length,i=0,o=[];++n<r;){var a=t[n];a!==e&&a!==ct||(t[n]=ct,o[i++]=n)}return o}function K(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=t}),n}function G(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=[t,t]}),n}function $(t,e,n){for(var r=n-1,i=t.length;++r<i;)if(t[r]===e)return r;return-1}function X(t,e,n){for(var r=n+1;r--;)if(t[r]===e)return r;return r}function Q(t){return V(t)?J(t):Wn(t)}function Z(t){return V(t)?tt(t):y(t)}function J(t){for(var e=dn.lastIndex=0;dn.test(t);)++e;return e}function tt(t){return t.match(dn)||[]}function et(t){return t.match(vn)||[]}var nt,rt=200,it="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",ot="Expected a function",at="__lodash_hash_undefined__",ut=500,ct="__lodash_placeholder__",st=1,lt=2,ft=4,pt=1,ht=2,dt=1,vt=2,gt=4,mt=8,yt=16,_t=32,bt=64,xt=128,wt=256,Ct=512,kt=30,Et="...",Mt=800,Tt=16,St=1,Nt=2,At=1/0,Pt=9007199254740991,Ot=1.7976931348623157e308,It=NaN,Dt=4294967295,Rt=Dt-1,Lt=Dt>>>1,Ut=[["ary",xt],["bind",dt],["bindKey",vt],["curry",mt],["curryRight",yt],["flip",Ct],["partial",_t],["partialRight",bt],["rearg",wt]],Ft="[object Arguments]",jt="[object Array]",Bt="[object AsyncFunction]",Vt="[object Boolean]",Wt="[object Date]",zt="[object DOMException]",Ht="[object Error]",qt="[object Function]",Yt="[object GeneratorFunction]",Kt="[object Map]",Gt="[object Number]",$t="[object Null]",Xt="[object Object]",Qt="[object Proxy]",Zt="[object RegExp]",Jt="[object Set]",te="[object String]",ee="[object Symbol]",ne="[object Undefined]",re="[object WeakMap]",ie="[object WeakSet]",oe="[object ArrayBuffer]",ae="[object DataView]",ue="[object Float32Array]",ce="[object Float64Array]",se="[object Int8Array]",le="[object Int16Array]",fe="[object Int32Array]",pe="[object Uint8Array]",he="[object Uint8ClampedArray]",de="[object Uint16Array]",ve="[object Uint32Array]",ge=/\b__p \+= '';/g,me=/\b(__p \+=) '' \+/g,ye=/(__e\(.*?\)|\b__t\)) \+\n'';/g,_e=/&(?:amp|lt|gt|quot|#39);/g,be=/[&<>"']/g,xe=RegExp(_e.source),we=RegExp(be.source),Ce=/<%-([\s\S]+?)%>/g,ke=/<%([\s\S]+?)%>/g,Ee=/<%=([\s\S]+?)%>/g,Me=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Te=/^\w*$/,Se=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Ne=/[\\^$.*+?()[\]{}|]/g,Ae=RegExp(Ne.source),Pe=/^\s+|\s+$/g,Oe=/^\s+/,Ie=/\s+$/,De=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Re=/\{\n\/\* \[wrapped with (.+)\] \*/,Le=/,? & /,Ue=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Fe=/\\(\\)?/g,je=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Be=/\w*$/,Ve=/^[-+]0x[0-9a-f]+$/i,We=/^0b[01]+$/i,ze=/^\[object .+?Constructor\]$/,He=/^0o[0-7]+$/i,qe=/^(?:0|[1-9]\d*)$/,Ye=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Ke=/($^)/,Ge=/['\n\r\u2028\u2029\\]/g,$e="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",Xe="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Qe="["+Xe+"]",Ze="["+$e+"]",Je="[a-z\\xdf-\\xf6\\xf8-\\xff]",tn="[^\\ud800-\\udfff"+Xe+"\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",en="\\ud83c[\\udffb-\\udfff]",nn="(?:\\ud83c[\\udde6-\\uddff]){2}",rn="[\\ud800-\\udbff][\\udc00-\\udfff]",on="[A-Z\\xc0-\\xd6\\xd8-\\xde]",an="(?:"+Je+"|"+tn+")",un="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",cn="(?:\\u200d(?:"+["[^\\ud800-\\udfff]",nn,rn].join("|")+")[\\ufe0e\\ufe0f]?"+un+")*",sn="[\\ufe0e\\ufe0f]?"+un+cn,ln="(?:"+["[\\u2700-\\u27bf]",nn,rn].join("|")+")"+sn,fn="(?:"+["[^\\ud800-\\udfff]"+Ze+"?",Ze,nn,rn,"[\\ud800-\\udfff]"].join("|")+")",pn=RegExp("['’]","g"),hn=RegExp(Ze,"g"),dn=RegExp(en+"(?="+en+")|"+fn+sn,"g"),vn=RegExp([on+"?"+Je+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[Qe,on,"$"].join("|")+")","(?:[A-Z\\xc0-\\xd6\\xd8-\\xde]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[Qe,on+an,"$"].join("|")+")",on+"?"+an+"+(?:['’](?:d|ll|m|re|s|t|ve))?",on+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])","\\d+",ln].join("|"),"g"),gn=RegExp("[\\u200d\\ud800-\\udfff"+$e+"\\ufe0e\\ufe0f]"),mn=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,yn=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],_n=-1,bn={};bn[ue]=bn[ce]=bn[se]=bn[le]=bn[fe]=bn[pe]=bn[he]=bn[de]=bn[ve]=!0,bn[Ft]=bn[jt]=bn[oe]=bn[Vt]=bn[ae]=bn[Wt]=bn[Ht]=bn[qt]=bn[Kt]=bn[Gt]=bn[Xt]=bn[Zt]=bn[Jt]=bn[te]=bn[re]=!1;var xn={};xn[Ft]=xn[jt]=xn[oe]=xn[ae]=xn[Vt]=xn[Wt]=xn[ue]=xn[ce]=xn[se]=xn[le]=xn[fe]=xn[Kt]=xn[Gt]=xn[Xt]=xn[Zt]=xn[Jt]=xn[te]=xn[ee]=xn[pe]=xn[he]=xn[de]=xn[ve]=!0,xn[Ht]=xn[qt]=xn[re]=!1;var wn={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"},Cn={"&":"&","<":"<",">":">",'"':""","'":"'"},kn={"&":"&","<":"<",">":">",""":'"',"'":"'"},En={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Mn=parseFloat,Tn=parseInt,Sn="object"==typeof t&&t&&t.Object===Object&&t,Nn="object"==typeof self&&self&&self.Object===Object&&self,An=Sn||Nn||Function("return this")(),Pn="object"==typeof e&&e&&!e.nodeType&&e,On=Pn&&"object"==typeof r&&r&&!r.nodeType&&r,In=On&&On.exports===Pn,Dn=In&&Sn.process,Rn=function(){try{var t=On&&On.require&&On.require("util").types;return t||Dn&&Dn.binding&&Dn.binding("util")}catch(t){}}(),Ln=Rn&&Rn.isArrayBuffer,Un=Rn&&Rn.isDate,Fn=Rn&&Rn.isMap,jn=Rn&&Rn.isRegExp,Bn=Rn&&Rn.isSet,Vn=Rn&&Rn.isTypedArray,Wn=M("length"),zn=T(wn),Hn=T(Cn),qn=T(kn),Yn=function t(e){function n(t){if(ec(t)&&!hp(t)&&!(t instanceof y)){if(t instanceof i)return t;if(pl.call(t,"__wrapped__"))return Zo(t)}return new i(t)}function r(){}function i(t,e){this.__wrapped__=t,this.__actions__=[],this.__chain__=!!e,this.__index__=0,this.__values__=nt}function y(t){this.__wrapped__=t,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=Dt,this.__views__=[]}function T(){var t=new y(this.__wrapped__);return t.__actions__=Oi(this.__actions__),t.__dir__=this.__dir__,t.__filtered__=this.__filtered__,t.__iteratees__=Oi(this.__iteratees__),t.__takeCount__=this.__takeCount__,t.__views__=Oi(this.__views__),t}function $(){if(this.__filtered__){var t=new y(this);t.__dir__=-1,t.__filtered__=!0}else t=this.clone(),t.__dir__*=-1;return t}function J(){var t=this.__wrapped__.value(),e=this.__dir__,n=hp(t),r=e<0,i=n?t.length:0,o=wo(0,i,this.__views__),a=o.start,u=o.end,c=u-a,s=r?u:a-1,l=this.__iteratees__,f=l.length,p=0,h=Wl(c,this.__takeCount__);if(!n||!r&&i==c&&h==c)return vi(t,this.__actions__);var d=[];t:for(;c--&&p<h;){s+=e;for(var v=-1,g=t[s];++v<f;){var m=l[v],y=m.iteratee,_=m.type,b=y(g);if(_==Nt)g=b;else if(!b){if(_==St)continue t;break t}}d[p++]=g}return d}function tt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function Ue(){this.__data__=Zl?Zl(null):{},this.size=0}function $e(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}function Xe(t){var e=this.__data__;if(Zl){var n=e[t];return n===at?nt:n}return pl.call(e,t)?e[t]:nt}function Qe(t){var e=this.__data__;return Zl?e[t]!==nt:pl.call(e,t)}function Ze(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=Zl&&e===nt?at:e,this}function Je(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function tn(){this.__data__=[],this.size=0}function en(t){var e=this.__data__,n=Kn(e,t);return!(n<0)&&(n==e.length-1?e.pop():Ml.call(e,n,1),--this.size,!0)}function nn(t){var e=this.__data__,n=Kn(e,t);return n<0?nt:e[n][1]}function rn(t){return Kn(this.__data__,t)>-1}function on(t,e){var n=this.__data__,r=Kn(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this}function an(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function un(){this.size=0,this.__data__={hash:new tt,map:new(Gl||Je),string:new tt}}function cn(t){var e=yo(this,t).delete(t);return this.size-=e?1:0,e}function sn(t){return yo(this,t).get(t)}function ln(t){return yo(this,t).has(t)}function fn(t,e){var n=yo(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this}function dn(t){var e=-1,n=null==t?0:t.length;for(this.__data__=new an;++e<n;)this.add(t[e])}function vn(t){return this.__data__.set(t,at),this}function gn(t){return this.__data__.has(t)}function mn(t){var e=this.__data__=new Je(t);this.size=e.size}function wn(){this.__data__=new Je,this.size=0}function Cn(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}function kn(t){return this.__data__.get(t)}function En(t){return this.__data__.has(t)}function Sn(t,e){var n=this.__data__;if(n instanceof Je){var r=n.__data__;if(!Gl||r.length<rt-1)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new an(r)}return n.set(t,e),this.size=n.size,this}function Nn(t,e){var n=hp(t),r=!n&&pp(t),i=!n&&!r&&vp(t),o=!n&&!r&&!i&&bp(t),a=n||r||i||o,u=a?P(t.length,ol):[],c=u.length;for(var s in t)!e&&!pl.call(t,s)||a&&("length"==s||i&&("offset"==s||"parent"==s)||o&&("buffer"==s||"byteLength"==s||"byteOffset"==s)||Ao(s,c))||u.push(s);return u}function Pn(t){var e=t.length;return e?t[Xr(0,e-1)]:nt}function On(t,e){return Go(Oi(t),Jn(e,0,t.length))}function Dn(t){return Go(Oi(t))}function Rn(t,e,n){(n===nt||Vu(t[e],n))&&(n!==nt||e in t)||Qn(t,e,n)}function Wn(t,e,n){var r=t[e];pl.call(t,e)&&Vu(r,n)&&(n!==nt||e in t)||Qn(t,e,n)}function Kn(t,e){for(var n=t.length;n--;)if(Vu(t[n][0],e))return n;return-1}function Gn(t,e,n,r){return ff(t,function(t,i,o){e(r,t,n(t),o)}),r}function $n(t,e){return t&&Ii(e,Lc(e),t)}function Xn(t,e){return t&&Ii(e,Uc(e),t)}function Qn(t,e,n){"__proto__"==e&&Al?Al(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}function Zn(t,e){for(var n=-1,r=e.length,i=Zs(r),o=null==t;++n<r;)i[n]=o?nt:Ic(t,e[n]);return i}function Jn(t,e,n){return t===t&&(n!==nt&&(t=t<=n?t:n),e!==nt&&(t=t>=e?t:e)),t}function tr(t,e,n,r,i,o){var a,c=e&st,s=e<,l=e&ft;if(n&&(a=i?n(t,r,i,o):n(t)),a!==nt)return a;if(!tc(t))return t;var f=hp(t);if(f){if(a=Eo(t),!c)return Oi(t,a)}else{var p=Cf(t),h=p==qt||p==Yt;if(vp(t))return wi(t,c);if(p==Xt||p==Ft||h&&!i){if(a=s||h?{}:Mo(t),!c)return s?Ri(t,Xn(a,t)):Di(t,$n(a,t))}else{if(!xn[p])return i?t:{};a=To(t,p,c)}}o||(o=new mn);var d=o.get(t);if(d)return d;if(o.set(t,a),_p(t))return t.forEach(function(r){a.add(tr(r,e,n,r,t,o))}),a;if(mp(t))return t.forEach(function(r,i){a.set(i,tr(r,e,n,i,t,o))}),a;var v=l?s?ho:po:s?Uc:Lc,g=f?nt:v(t);return u(g||t,function(r,i){g&&(i=r,r=t[i]),Wn(a,i,tr(r,e,n,i,t,o))}),a}function er(t){var e=Lc(t);return function(n){return nr(n,t,e)}}function nr(t,e,n){var r=n.length;if(null==t)return!r;for(t=rl(t);r--;){var i=n[r],o=e[i],a=t[i];if(a===nt&&!(i in t)||!o(a))return!1}return!0}function rr(t,e,n){if("function"!=typeof t)throw new al(ot);return Mf(function(){t.apply(nt,n)},e)}function ir(t,e,n,r){var i=-1,o=f,a=!0,u=t.length,c=[],s=e.length;if(!u)return c;n&&(e=h(e,I(n))),r?(o=p,a=!1):e.length>=rt&&(o=R,a=!1,e=new dn(e));t:for(;++i<u;){var l=t[i],d=null==n?l:n(l);if(l=r||0!==l?l:0,a&&d===d){for(var v=s;v--;)if(e[v]===d)continue t;c.push(l)}else o(e,d,r)||c.push(l)}return c}function or(t,e){var n=!0;return ff(t,function(t,r,i){return n=!!e(t,r,i)}),n}function ar(t,e,n){for(var r=-1,i=t.length;++r<i;){var o=t[r],a=e(o);if(null!=a&&(u===nt?a===a&&!pc(a):n(a,u)))var u=a,c=o}return c}function ur(t,e,n,r){var i=t.length;for(n=yc(n),n<0&&(n=-n>i?0:i+n),r=r===nt||r>i?i:yc(r),r<0&&(r+=i),r=n>r?0:_c(r);n<r;)t[n++]=e;return t}function cr(t,e){var n=[];return ff(t,function(t,r,i){e(t,r,i)&&n.push(t)}),n}function sr(t,e,n,r,i){var o=-1,a=t.length;for(n||(n=No),i||(i=[]);++o<a;){var u=t[o];e>0&&n(u)?e>1?sr(u,e-1,n,r,i):d(i,u):r||(i[i.length]=u)}return i}function lr(t,e){return t&&hf(t,e,Lc)}function fr(t,e){return t&&df(t,e,Lc)}function pr(t,e){return l(e,function(e){return Qu(t[e])})}function hr(t,e){e=bi(e,t);for(var n=0,r=e.length;null!=t&&n<r;)t=t[$o(e[n++])];return n&&n==r?t:nt}function dr(t,e,n){var r=e(t);return hp(t)?r:d(r,n(t))}function vr(t){return null==t?t===nt?ne:$t:Nl&&Nl in rl(t)?xo(t):Vo(t)}function gr(t,e){return t>e}function mr(t,e){return null!=t&&pl.call(t,e)}function yr(t,e){return null!=t&&e in rl(t)}function _r(t,e,n){return t>=Wl(e,n)&&t<Vl(e,n)}function br(t,e,n){for(var r=n?p:f,i=t[0].length,o=t.length,a=o,u=Zs(o),c=1/0,s=[];a--;){var l=t[a];a&&e&&(l=h(l,I(e))),c=Wl(l.length,c),u[a]=!n&&(e||i>=120&&l.length>=120)?new dn(a&&l):nt}l=t[0];var d=-1,v=u[0];t:for(;++d<i&&s.length<c;){var g=l[d],m=e?e(g):g;if(g=n||0!==g?g:0,!(v?R(v,m):r(s,m,n))){for(a=o;--a;){var y=u[a];if(!(y?R(y,m):r(t[a],m,n)))continue t}v&&v.push(m),s.push(g)}}return s}function xr(t,e,n,r){return lr(t,function(t,i,o){e(r,n(t),i,o)}),r}function wr(t,e,n){e=bi(e,t),t=zo(t,e);var r=null==t?t:t[$o(ma(e))];return null==r?nt:o(r,t,n)}function Cr(t){return ec(t)&&vr(t)==Ft}function kr(t){return ec(t)&&vr(t)==oe}function Er(t){return ec(t)&&vr(t)==Wt}function Mr(t,e,n,r,i){return t===e||(null==t||null==e||!ec(t)&&!ec(e)?t!==t&&e!==e:Tr(t,e,n,r,Mr,i))}function Tr(t,e,n,r,i,o){var a=hp(t),u=hp(e),c=a?jt:Cf(t),s=u?jt:Cf(e);c=c==Ft?Xt:c,s=s==Ft?Xt:s;var l=c==Xt,f=s==Xt,p=c==s;if(p&&vp(t)){if(!vp(e))return!1;a=!0,l=!1}if(p&&!l)return o||(o=new mn),a||bp(t)?co(t,e,n,r,i,o):so(t,e,c,n,r,i,o);if(!(n&pt)){var h=l&&pl.call(t,"__wrapped__"),d=f&&pl.call(e,"__wrapped__");if(h||d){var v=h?t.value():t,g=d?e.value():e;return o||(o=new mn),i(v,g,n,r,o)}}return!!p&&(o||(o=new mn),lo(t,e,n,r,i,o))}function Sr(t){return ec(t)&&Cf(t)==Kt}function Nr(t,e,n,r){var i=n.length,o=i,a=!r;if(null==t)return!o;for(t=rl(t);i--;){var u=n[i];if(a&&u[2]?u[1]!==t[u[0]]:!(u[0]in t))return!1}for(;++i<o;){u=n[i];var c=u[0],s=t[c],l=u[1];if(a&&u[2]){if(s===nt&&!(c in t))return!1}else{var f=new mn;if(r)var p=r(s,l,c,t,e,f);if(!(p===nt?Mr(l,s,pt|ht,r,f):p))return!1}}return!0}function Ar(t){return!(!tc(t)||Ro(t))&&(Qu(t)?yl:ze).test(Xo(t))}function Pr(t){return ec(t)&&vr(t)==Zt}function Or(t){return ec(t)&&Cf(t)==Jt}function Ir(t){return ec(t)&&Ju(t.length)&&!!bn[vr(t)]}function Dr(t){return"function"==typeof t?t:null==t?Ms:"object"==typeof t?hp(t)?Br(t[0],t[1]):jr(t):Ds(t)}function Rr(t){if(!Lo(t))return Bl(t);var e=[];for(var n in rl(t))pl.call(t,n)&&"constructor"!=n&&e.push(n);return e}function Lr(t){if(!tc(t))return Bo(t);var e=Lo(t),n=[];for(var r in t)("constructor"!=r||!e&&pl.call(t,r))&&n.push(r);return n}function Ur(t,e){return t<e}function Fr(t,e){var n=-1,r=Wu(t)?Zs(t.length):[];return ff(t,function(t,i,o){r[++n]=e(t,i,o)}),r}function jr(t){var e=_o(t);return 1==e.length&&e[0][2]?Fo(e[0][0],e[0][1]):function(n){return n===t||Nr(n,t,e)}}function Br(t,e){return Oo(t)&&Uo(e)?Fo($o(t),e):function(n){var r=Ic(n,t);return r===nt&&r===e?Rc(n,t):Mr(e,r,pt|ht)}}function Vr(t,e,n,r,i){t!==e&&hf(e,function(o,a){if(tc(o))i||(i=new mn),Wr(t,e,a,n,Vr,r,i);else{var u=r?r(qo(t,a),o,a+"",t,e,i):nt;u===nt&&(u=o),Rn(t,a,u)}},Uc)}function Wr(t,e,n,r,i,o,a){var u=qo(t,n),c=qo(e,n),s=a.get(c);if(s)return void Rn(t,n,s);var l=o?o(u,c,n+"",t,e,a):nt,f=l===nt;if(f){var p=hp(c),h=!p&&vp(c),d=!p&&!h&&bp(c);l=c,p||h||d?hp(u)?l=u:zu(u)?l=Oi(u):h?(f=!1,l=wi(c,!0)):d?(f=!1,l=Ti(c,!0)):l=[]:sc(c)||pp(c)?(l=u,pp(u)?l=xc(u):tc(u)&&!Qu(u)||(l=Mo(c))):f=!1}f&&(a.set(c,l),i(l,c,r,o,a),a.delete(c)),Rn(t,n,l)}function zr(t,e){var n=t.length;if(n)return e+=e<0?n:0,Ao(e,n)?t[e]:nt}function Hr(t,e,n){var r=-1;return e=h(e.length?e:[Ms],I(mo())),N(Fr(t,function(t,n,i){return{criteria:h(e,function(e){return e(t)}),index:++r,value:t}}),function(t,e){return Ni(t,e,n)})}function qr(t,e){return Yr(t,e,function(e,n){return Rc(t,n)})}function Yr(t,e,n){for(var r=-1,i=e.length,o={};++r<i;){var a=e[r],u=hr(t,a);n(u,a)&&ni(o,bi(a,t),u)}return o}function Kr(t){return function(e){return hr(e,t)}}function Gr(t,e,n,r){var i=r?C:w,o=-1,a=e.length,u=t;for(t===e&&(e=Oi(e)),n&&(u=h(t,I(n)));++o<a;)for(var c=0,s=e[o],l=n?n(s):s;(c=i(u,l,c,r))>-1;)u!==t&&Ml.call(u,c,1),Ml.call(t,c,1);return t}function $r(t,e){for(var n=t?e.length:0,r=n-1;n--;){var i=e[n];if(n==r||i!==o){var o=i;Ao(i)?Ml.call(t,i,1):pi(t,i)}}return t}function Xr(t,e){return t+Rl(ql()*(e-t+1))}function Qr(t,e,n,r){for(var i=-1,o=Vl(Dl((e-t)/(n||1)),0),a=Zs(o);o--;)a[r?o:++i]=t,t+=n;return a}function Zr(t,e){var n="";if(!t||e<1||e>Pt)return n;do{e%2&&(n+=t),(e=Rl(e/2))&&(t+=t)}while(e);return n}function Jr(t,e){return Tf(Wo(t,e,Ms),t+"")}function ti(t){return Pn($c(t))}function ei(t,e){var n=$c(t);return Go(n,Jn(e,0,n.length))}function ni(t,e,n,r){if(!tc(t))return t;e=bi(e,t);for(var i=-1,o=e.length,a=o-1,u=t;null!=u&&++i<o;){var c=$o(e[i]),s=n;if(i!=a){var l=u[c];s=r?r(l,c,u):nt,s===nt&&(s=tc(l)?l:Ao(e[i+1])?[]:{})}Wn(u,c,s),u=u[c]}return t}function ri(t){return Go($c(t))}function ii(t,e,n){var r=-1,i=t.length;e<0&&(e=-e>i?0:i+e),n=n>i?i:n,n<0&&(n+=i),i=e>n?0:n-e>>>0,e>>>=0;for(var o=Zs(i);++r<i;)o[r]=t[r+e];return o}function oi(t,e){var n;return ff(t,function(t,r,i){return!(n=e(t,r,i))}),!!n}function ai(t,e,n){var r=0,i=null==t?r:t.length;if("number"==typeof e&&e===e&&i<=Lt){for(;r<i;){var o=r+i>>>1,a=t[o];null!==a&&!pc(a)&&(n?a<=e:a<e)?r=o+1:i=o}return i}return ui(t,e,Ms,n)}function ui(t,e,n,r){e=n(e);for(var i=0,o=null==t?0:t.length,a=e!==e,u=null===e,c=pc(e),s=e===nt;i<o;){var l=Rl((i+o)/2),f=n(t[l]),p=f!==nt,h=null===f,d=f===f,v=pc(f);if(a)var g=r||d;else g=s?d&&(r||p):u?d&&p&&(r||!h):c?d&&p&&!h&&(r||!v):!h&&!v&&(r?f<=e:f<e);g?i=l+1:o=l}return Wl(o,Rt)}function ci(t,e){for(var n=-1,r=t.length,i=0,o=[];++n<r;){var a=t[n],u=e?e(a):a;if(!n||!Vu(u,c)){var c=u;o[i++]=0===a?0:a}}return o}function si(t){return"number"==typeof t?t:pc(t)?It:+t}function li(t){if("string"==typeof t)return t;if(hp(t))return h(t,li)+"";if(pc(t))return sf?sf.call(t):"";var e=t+"";return"0"==e&&1/t==-At?"-0":e}function fi(t,e,n){var r=-1,i=f,o=t.length,a=!0,u=[],c=u;if(n)a=!1,i=p;else if(o>=rt){var s=e?null:_f(t);if(s)return K(s);a=!1,i=R,c=new dn}else c=e?[]:u;t:for(;++r<o;){var l=t[r],h=e?e(l):l;if(l=n||0!==l?l:0,a&&h===h){for(var d=c.length;d--;)if(c[d]===h)continue t;e&&c.push(h),u.push(l)}else i(c,h,n)||(c!==u&&c.push(h),u.push(l))}return u}function pi(t,e){return e=bi(e,t),null==(t=zo(t,e))||delete t[$o(ma(e))]}function hi(t,e,n,r){return ni(t,e,n(hr(t,e)),r)}function di(t,e,n,r){for(var i=t.length,o=r?i:-1;(r?o--:++o<i)&&e(t[o],o,t););return n?ii(t,r?0:o,r?o+1:i):ii(t,r?o+1:0,r?i:o)}function vi(t,e){var n=t;return n instanceof y&&(n=n.value()),v(e,function(t,e){return e.func.apply(e.thisArg,d([t],e.args))},n)}function gi(t,e,n){var r=t.length;if(r<2)return r?fi(t[0]):[];for(var i=-1,o=Zs(r);++i<r;)for(var a=t[i],u=-1;++u<r;)u!=i&&(o[i]=ir(o[i]||a,t[u],e,n));return fi(sr(o,1),e,n)}function mi(t,e,n){for(var r=-1,i=t.length,o=e.length,a={};++r<i;){var u=r<o?e[r]:nt;n(a,t[r],u)}return a}function yi(t){return zu(t)?t:[]}function _i(t){return"function"==typeof t?t:Ms}function bi(t,e){return hp(t)?t:Oo(t,e)?[t]:Sf(Cc(t))}function xi(t,e,n){var r=t.length;return n=n===nt?r:n,!e&&n>=r?t:ii(t,e,n)}function wi(t,e){if(e)return t.slice();var n=t.length,r=wl?wl(n):new t.constructor(n);return t.copy(r),r}function Ci(t){var e=new t.constructor(t.byteLength);return new xl(e).set(new xl(t)),e}function ki(t,e){var n=e?Ci(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.byteLength)}function Ei(t){var e=new t.constructor(t.source,Be.exec(t));return e.lastIndex=t.lastIndex,e}function Mi(t){return cf?rl(cf.call(t)):{}}function Ti(t,e){var n=e?Ci(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.length)}function Si(t,e){if(t!==e){var n=t!==nt,r=null===t,i=t===t,o=pc(t),a=e!==nt,u=null===e,c=e===e,s=pc(e);if(!u&&!s&&!o&&t>e||o&&a&&c&&!u&&!s||r&&a&&c||!n&&c||!i)return 1;if(!r&&!o&&!s&&t<e||s&&n&&i&&!r&&!o||u&&n&&i||!a&&i||!c)return-1}return 0}function Ni(t,e,n){for(var r=-1,i=t.criteria,o=e.criteria,a=i.length,u=n.length;++r<a;){var c=Si(i[r],o[r]);if(c){if(r>=u)return c;return c*("desc"==n[r]?-1:1)}}return t.index-e.index}function Ai(t,e,n,r){for(var i=-1,o=t.length,a=n.length,u=-1,c=e.length,s=Vl(o-a,0),l=Zs(c+s),f=!r;++u<c;)l[u]=e[u];for(;++i<a;)(f||i<o)&&(l[n[i]]=t[i]);for(;s--;)l[u++]=t[i++];return l}function Pi(t,e,n,r){for(var i=-1,o=t.length,a=-1,u=n.length,c=-1,s=e.length,l=Vl(o-u,0),f=Zs(l+s),p=!r;++i<l;)f[i]=t[i];for(var h=i;++c<s;)f[h+c]=e[c];for(;++a<u;)(p||i<o)&&(f[h+n[a]]=t[i++]);return f}function Oi(t,e){var n=-1,r=t.length;for(e||(e=Zs(r));++n<r;)e[n]=t[n];return e}function Ii(t,e,n,r){var i=!n;n||(n={});for(var o=-1,a=e.length;++o<a;){var u=e[o],c=r?r(n[u],t[u],u,n,t):nt;c===nt&&(c=t[u]),i?Qn(n,u,c):Wn(n,u,c)}return n}function Di(t,e){return Ii(t,xf(t),e)}function Ri(t,e){return Ii(t,wf(t),e)}function Li(t,e){return function(n,r){var i=hp(n)?a:Gn,o=e?e():{};return i(n,t,mo(r,2),o)}}function Ui(t){return Jr(function(e,n){var r=-1,i=n.length,o=i>1?n[i-1]:nt,a=i>2?n[2]:nt;for(o=t.length>3&&"function"==typeof o?(i--,o):nt,a&&Po(n[0],n[1],a)&&(o=i<3?nt:o,i=1),e=rl(e);++r<i;){var u=n[r];u&&t(e,u,r,o)}return e})}function Fi(t,e){return function(n,r){if(null==n)return n;if(!Wu(n))return t(n,r);for(var i=n.length,o=e?i:-1,a=rl(n);(e?o--:++o<i)&&!1!==r(a[o],o,a););return n}}function ji(t){return function(e,n,r){for(var i=-1,o=rl(e),a=r(e),u=a.length;u--;){var c=a[t?u:++i];if(!1===n(o[c],c,o))break}return e}}function Bi(t,e,n){function r(){return(this&&this!==An&&this instanceof r?o:t).apply(i?n:this,arguments)}var i=e&dt,o=zi(t);return r}function Vi(t){return function(e){e=Cc(e);var n=V(e)?Z(e):nt,r=n?n[0]:e.charAt(0),i=n?xi(n,1).join(""):e.slice(1);return r[t]()+i}}function Wi(t){return function(e){return v(xs(es(e).replace(pn,"")),t,"")}}function zi(t){return function(){var e=arguments;switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3]);case 5:return new t(e[0],e[1],e[2],e[3],e[4]);case 6:return new t(e[0],e[1],e[2],e[3],e[4],e[5]);case 7:return new t(e[0],e[1],e[2],e[3],e[4],e[5],e[6])}var n=lf(t.prototype),r=t.apply(n,e);return tc(r)?r:n}}function Hi(t,e,n){function r(){for(var a=arguments.length,u=Zs(a),c=a,s=go(r);c--;)u[c]=arguments[c];var l=a<3&&u[0]!==s&&u[a-1]!==s?[]:Y(u,s);return(a-=l.length)<n?eo(t,e,Ki,r.placeholder,nt,u,l,nt,nt,n-a):o(this&&this!==An&&this instanceof r?i:t,this,u)}var i=zi(t);return r}function qi(t){return function(e,n,r){var i=rl(e);if(!Wu(e)){var o=mo(n,3);e=Lc(e),n=function(t){return o(i[t],t,i)}}var a=t(e,n,r);return a>-1?i[o?e[a]:a]:nt}}function Yi(t){return fo(function(e){var n=e.length,r=n,o=i.prototype.thru;for(t&&e.reverse();r--;){var a=e[r];if("function"!=typeof a)throw new al(ot);if(o&&!u&&"wrapper"==vo(a))var u=new i([],!0)}for(r=u?r:n;++r<n;){a=e[r];var c=vo(a),s="wrapper"==c?bf(a):nt;u=s&&Do(s[0])&&s[1]==(xt|mt|_t|wt)&&!s[4].length&&1==s[9]?u[vo(s[0])].apply(u,s[3]):1==a.length&&Do(a)?u[c]():u.thru(a)}return function(){var t=arguments,r=t[0];if(u&&1==t.length&&hp(r))return u.plant(r).value();for(var i=0,o=n?e[i].apply(this,t):r;++i<n;)o=e[i].call(this,o);return o}})}function Ki(t,e,n,r,i,o,a,u,c,s){function l(){for(var m=arguments.length,y=Zs(m),_=m;_--;)y[_]=arguments[_];if(d)var b=go(l),x=F(y,b);if(r&&(y=Ai(y,r,i,d)),o&&(y=Pi(y,o,a,d)),m-=x,d&&m<s){var w=Y(y,b);return eo(t,e,Ki,l.placeholder,n,y,w,u,c,s-m)}var C=p?n:this,k=h?C[t]:t;return m=y.length,u?y=Ho(y,u):v&&m>1&&y.reverse(),f&&c<m&&(y.length=c),this&&this!==An&&this instanceof l&&(k=g||zi(k)),k.apply(C,y)}var f=e&xt,p=e&dt,h=e&vt,d=e&(mt|yt),v=e&Ct,g=h?nt:zi(t);return l}function Gi(t,e){return function(n,r){return xr(n,t,e(r),{})}}function $i(t,e){return function(n,r){var i;if(n===nt&&r===nt)return e;if(n!==nt&&(i=n),r!==nt){if(i===nt)return r;"string"==typeof n||"string"==typeof r?(n=li(n),r=li(r)):(n=si(n),r=si(r)),i=t(n,r)}return i}}function Xi(t){return fo(function(e){return e=h(e,I(mo())),Jr(function(n){var r=this;return t(e,function(t){return o(t,r,n)})})})}function Qi(t,e){e=e===nt?" ":li(e);var n=e.length;if(n<2)return n?Zr(e,t):e;var r=Zr(e,Dl(t/Q(e)));return V(e)?xi(Z(r),0,t).join(""):r.slice(0,t)}function Zi(t,e,n,r){function i(){for(var e=-1,c=arguments.length,s=-1,l=r.length,f=Zs(l+c),p=this&&this!==An&&this instanceof i?u:t;++s<l;)f[s]=r[s];for(;c--;)f[s++]=arguments[++e];return o(p,a?n:this,f)}var a=e&dt,u=zi(t);return i}function Ji(t){return function(e,n,r){return r&&"number"!=typeof r&&Po(e,n,r)&&(n=r=nt),e=mc(e),n===nt?(n=e,e=0):n=mc(n),r=r===nt?e<n?1:-1:mc(r),Qr(e,n,r,t)}}function to(t){return function(e,n){return"string"==typeof e&&"string"==typeof n||(e=bc(e),n=bc(n)),t(e,n)}}function eo(t,e,n,r,i,o,a,u,c,s){var l=e&mt,f=l?a:nt,p=l?nt:a,h=l?o:nt,d=l?nt:o;e|=l?_t:bt,(e&=~(l?bt:_t))>||(e&=~(dt|vt));var v=[t,e,i,h,f,d,p,u,c,s],g=n.apply(nt,v);return Do(t)&&Ef(g,v),g.placeholder=r,Yo(g,t,e)}function no(t){var e=nl[t];return function(t,n){if(t=bc(t),n=null==n?0:Wl(yc(n),292)){var r=(Cc(t)+"e").split("e");return r=(Cc(e(r[0]+"e"+(+r[1]+n)))+"e").split("e"),+(r[0]+"e"+(+r[1]-n))}return e(t)}}function ro(t){return function(e){var n=Cf(e);return n==Kt?H(e):n==Jt?G(e):O(e,t(e))}}function io(t,e,n,r,i,o,a,u){var c=e&vt;if(!c&&"function"!=typeof t)throw new al(ot);var s=r?r.length:0;if(s||(e&=~(_t|bt),r=i=nt),a=a===nt?a:Vl(yc(a),0),u=u===nt?u:yc(u),s-=i?i.length:0,e&bt){var l=r,f=i;r=i=nt}var p=c?nt:bf(t),h=[t,e,n,r,i,l,f,o,a,u];if(p&&jo(h,p),t=h[0],e=h[1],n=h[2],r=h[3],i=h[4],u=h[9]=h[9]===nt?c?0:t.length:Vl(h[9]-s,0),!u&&e&(mt|yt)&&(e&=~(mt|yt)),e&&e!=dt)d=e==mt||e==yt?Hi(t,e,u):e!=_t&&e!=(dt|_t)||i.length?Ki.apply(nt,h):Zi(t,e,n,r);else var d=Bi(t,e,n);return Yo((p?vf:Ef)(d,h),t,e)}function oo(t,e,n,r){return t===nt||Vu(t,sl[n])&&!pl.call(r,n)?e:t}function ao(t,e,n,r,i,o){return tc(t)&&tc(e)&&(o.set(e,t),Vr(t,e,nt,ao,o),o.delete(e)),t}function uo(t){return sc(t)?nt:t}function co(t,e,n,r,i,o){var a=n&pt,u=t.length,c=e.length;if(u!=c&&!(a&&c>u))return!1;var s=o.get(t);if(s&&o.get(e))return s==e;var l=-1,f=!0,p=n&ht?new dn:nt;for(o.set(t,e),o.set(e,t);++l<u;){var h=t[l],d=e[l];if(r)var v=a?r(d,h,l,e,t,o):r(h,d,l,t,e,o);if(v!==nt){if(v)continue;f=!1;break}if(p){if(!m(e,function(t,e){if(!R(p,e)&&(h===t||i(h,t,n,r,o)))return p.push(e)})){f=!1;break}}else if(h!==d&&!i(h,d,n,r,o)){f=!1;break}}return o.delete(t),o.delete(e),f}function so(t,e,n,r,i,o,a){switch(n){case ae:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case oe:return!(t.byteLength!=e.byteLength||!o(new xl(t),new xl(e)));case Vt:case Wt:case Gt:return Vu(+t,+e);case Ht:return t.name==e.name&&t.message==e.message;case Zt:case te:return t==e+"";case Kt:var u=H;case Jt:var c=r&pt;if(u||(u=K),t.size!=e.size&&!c)return!1;var s=a.get(t);if(s)return s==e;r|=ht,a.set(t,e);var l=co(u(t),u(e),r,i,o,a);return a.delete(t),l;case ee:if(cf)return cf.call(t)==cf.call(e)}return!1}function lo(t,e,n,r,i,o){var a=n&pt,u=po(t),c=u.length;if(c!=po(e).length&&!a)return!1;for(var s=c;s--;){var l=u[s];if(!(a?l in e:pl.call(e,l)))return!1}var f=o.get(t);if(f&&o.get(e))return f==e;var p=!0;o.set(t,e),o.set(e,t);for(var h=a;++s<c;){l=u[s];var d=t[l],v=e[l];if(r)var g=a?r(v,d,l,e,t,o):r(d,v,l,t,e,o);if(!(g===nt?d===v||i(d,v,n,r,o):g)){p=!1;break}h||(h="constructor"==l)}if(p&&!h){var m=t.constructor,y=e.constructor;m!=y&&"constructor"in t&&"constructor"in e&&!("function"==typeof m&&m instanceof m&&"function"==typeof y&&y instanceof y)&&(p=!1)}return o.delete(t),o.delete(e),p}function fo(t){return Tf(Wo(t,nt,sa),t+"")}function po(t){return dr(t,Lc,xf)}function ho(t){return dr(t,Uc,wf)}function vo(t){for(var e=t.name+"",n=tf[e],r=pl.call(tf,e)?n.length:0;r--;){var i=n[r],o=i.func;if(null==o||o==t)return i.name}return e}function go(t){return(pl.call(n,"placeholder")?n:t).placeholder}function mo(){var t=n.iteratee||Ts;return t=t===Ts?Dr:t,arguments.length?t(arguments[0],arguments[1]):t}function yo(t,e){var n=t.__data__;return Io(e)?n["string"==typeof e?"string":"hash"]:n.map}function _o(t){for(var e=Lc(t),n=e.length;n--;){var r=e[n],i=t[r];e[n]=[r,i,Uo(i)]}return e}function bo(t,e){var n=B(t,e);return Ar(n)?n:nt}function xo(t){var e=pl.call(t,Nl),n=t[Nl];try{t[Nl]=nt;var r=!0}catch(t){}var i=vl.call(t);return r&&(e?t[Nl]=n:delete t[Nl]),i}function wo(t,e,n){for(var r=-1,i=n.length;++r<i;){var o=n[r],a=o.size;switch(o.type){case"drop":t+=a;break;case"dropRight":e-=a;break;case"take":e=Wl(e,t+a);break;case"takeRight":t=Vl(t,e-a)}}return{start:t,end:e}}function Co(t){var e=t.match(Re);return e?e[1].split(Le):[]}function ko(t,e,n){e=bi(e,t);for(var r=-1,i=e.length,o=!1;++r<i;){var a=$o(e[r]);if(!(o=null!=t&&n(t,a)))break;t=t[a]}return o||++r!=i?o:!!(i=null==t?0:t.length)&&Ju(i)&&Ao(a,i)&&(hp(t)||pp(t))}function Eo(t){var e=t.length,n=new t.constructor(e);return e&&"string"==typeof t[0]&&pl.call(t,"index")&&(n.index=t.index,n.input=t.input),n}function Mo(t){return"function"!=typeof t.constructor||Lo(t)?{}:lf(Cl(t))}function To(t,e,n){var r=t.constructor;switch(e){case oe:return Ci(t);case Vt:case Wt:return new r(+t);case ae:return ki(t,n);case ue:case ce:case se:case le:case fe:case pe:case he:case de:case ve:return Ti(t,n);case Kt:return new r;case Gt:case te:return new r(t);case Zt:return Ei(t);case Jt:return new r;case ee:return Mi(t)}}function So(t,e){var n=e.length;if(!n)return t;var r=n-1;return e[r]=(n>1?"& ":"")+e[r],e=e.join(n>2?", ":" "),t.replace(De,"{\n/* [wrapped with "+e+"] */\n")}function No(t){return hp(t)||pp(t)||!!(Tl&&t&&t[Tl])}function Ao(t,e){var n=typeof t;return!!(e=null==e?Pt:e)&&("number"==n||"symbol"!=n&&qe.test(t))&&t>-1&&t%1==0&&t<e}function Po(t,e,n){if(!tc(n))return!1;var r=typeof e;return!!("number"==r?Wu(n)&&Ao(e,n.length):"string"==r&&e in n)&&Vu(n[e],t)}function Oo(t,e){if(hp(t))return!1;var n=typeof t;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=t&&!pc(t))||(Te.test(t)||!Me.test(t)||null!=e&&t in rl(e))}function Io(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}function Do(t){var e=vo(t),r=n[e];if("function"!=typeof r||!(e in y.prototype))return!1;if(t===r)return!0;var i=bf(r);return!!i&&t===i[0]}function Ro(t){return!!dl&&dl in t}function Lo(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||sl)}function Uo(t){return t===t&&!tc(t)}function Fo(t,e){return function(n){return null!=n&&(n[t]===e&&(e!==nt||t in rl(n)))}}function jo(t,e){var n=t[1],r=e[1],i=n|r,o=i<(dt|vt|xt),a=r==xt&&n==mt||r==xt&&n==wt&&t[7].length<=e[8]||r==(xt|wt)&&e[7].length<=e[8]&&n==mt;if(!o&&!a)return t;r&dt&&(t[2]=e[2],i|=n&dt?0:gt);var u=e[3];if(u){var c=t[3];t[3]=c?Ai(c,u,e[4]):u,t[4]=c?Y(t[3],ct):e[4]}return u=e[5],u&&(c=t[5],t[5]=c?Pi(c,u,e[6]):u,t[6]=c?Y(t[5],ct):e[6]),u=e[7],u&&(t[7]=u),r&xt&&(t[8]=null==t[8]?e[8]:Wl(t[8],e[8])),null==t[9]&&(t[9]=e[9]),t[0]=e[0],t[1]=i,t}function Bo(t){var e=[];if(null!=t)for(var n in rl(t))e.push(n);return e}function Vo(t){return vl.call(t)}function Wo(t,e,n){return e=Vl(e===nt?t.length-1:e,0),function(){for(var r=arguments,i=-1,a=Vl(r.length-e,0),u=Zs(a);++i<a;)u[i]=r[e+i];i=-1;for(var c=Zs(e+1);++i<e;)c[i]=r[i];return c[e]=n(u),o(t,this,c)}}function zo(t,e){return e.length<2?t:hr(t,ii(e,0,-1))}function Ho(t,e){for(var n=t.length,r=Wl(e.length,n),i=Oi(t);r--;){var o=e[r];t[r]=Ao(o,n)?i[o]:nt}return t}function qo(t,e){if("__proto__"!=e)return t[e]}function Yo(t,e,n){var r=e+"";return Tf(t,So(r,Qo(Co(r),n)))}function Ko(t){var e=0,n=0;return function(){var r=zl(),i=Tt-(r-n);if(n=r,i>0){if(++e>=Mt)return arguments[0]}else e=0;return t.apply(nt,arguments)}}function Go(t,e){var n=-1,r=t.length,i=r-1;for(e=e===nt?r:e;++n<e;){var o=Xr(n,i),a=t[o];t[o]=t[n],t[n]=a}return t.length=e,t}function $o(t){if("string"==typeof t||pc(t))return t;var e=t+"";return"0"==e&&1/t==-At?"-0":e}function Xo(t){if(null!=t){try{return fl.call(t)}catch(t){}try{return t+""}catch(t){}}return""}function Qo(t,e){return u(Ut,function(n){var r="_."+n[0];e&n[1]&&!f(t,r)&&t.push(r)}),t.sort()}function Zo(t){if(t instanceof y)return t.clone();var e=new i(t.__wrapped__,t.__chain__);return e.__actions__=Oi(t.__actions__),e.__index__=t.__index__,e.__values__=t.__values__,e}function Jo(t,e,n){e=(n?Po(t,e,n):e===nt)?1:Vl(yc(e),0);var r=null==t?0:t.length;if(!r||e<1)return[];for(var i=0,o=0,a=Zs(Dl(r/e));i<r;)a[o++]=ii(t,i,i+=e);return a}function ta(t){for(var e=-1,n=null==t?0:t.length,r=0,i=[];++e<n;){var o=t[e];o&&(i[r++]=o)}return i}function ea(){var t=arguments.length;if(!t)return[];for(var e=Zs(t-1),n=arguments[0],r=t;r--;)e[r-1]=arguments[r];return d(hp(n)?Oi(n):[n],sr(e,1))}function na(t,e,n){var r=null==t?0:t.length;return r?(e=n||e===nt?1:yc(e),ii(t,e<0?0:e,r)):[]}function ra(t,e,n){var r=null==t?0:t.length;return r?(e=n||e===nt?1:yc(e),e=r-e,ii(t,0,e<0?0:e)):[]}function ia(t,e){return t&&t.length?di(t,mo(e,3),!0,!0):[]}function oa(t,e){return t&&t.length?di(t,mo(e,3),!0):[]}function aa(t,e,n,r){var i=null==t?0:t.length;return i?(n&&"number"!=typeof n&&Po(t,e,n)&&(n=0,r=i),ur(t,e,n,r)):[]}function ua(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var i=null==n?0:yc(n);return i<0&&(i=Vl(r+i,0)),x(t,mo(e,3),i)}function ca(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var i=r-1;return n!==nt&&(i=yc(n),i=n<0?Vl(r+i,0):Wl(i,r-1)),x(t,mo(e,3),i,!0)}function sa(t){return(null==t?0:t.length)?sr(t,1):[]}function la(t){return(null==t?0:t.length)?sr(t,At):[]}function fa(t,e){return(null==t?0:t.length)?(e=e===nt?1:yc(e),sr(t,e)):[]}function pa(t){for(var e=-1,n=null==t?0:t.length,r={};++e<n;){var i=t[e];r[i[0]]=i[1]}return r}function ha(t){return t&&t.length?t[0]:nt}function da(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var i=null==n?0:yc(n);return i<0&&(i=Vl(r+i,0)),w(t,e,i)}function va(t){return(null==t?0:t.length)?ii(t,0,-1):[]}function ga(t,e){return null==t?"":jl.call(t,e)}function ma(t){var e=null==t?0:t.length;return e?t[e-1]:nt}function ya(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var i=r;return n!==nt&&(i=yc(n),i=i<0?Vl(r+i,0):Wl(i,r-1)),e===e?X(t,e,i):x(t,k,i,!0)}function _a(t,e){return t&&t.length?zr(t,yc(e)):nt}function ba(t,e){return t&&t.length&&e&&e.length?Gr(t,e):t}function xa(t,e,n){return t&&t.length&&e&&e.length?Gr(t,e,mo(n,2)):t}function wa(t,e,n){return t&&t.length&&e&&e.length?Gr(t,e,nt,n):t}function Ca(t,e){var n=[];if(!t||!t.length)return n;var r=-1,i=[],o=t.length;for(e=mo(e,3);++r<o;){var a=t[r];e(a,r,t)&&(n.push(a),i.push(r))}return $r(t,i),n}function ka(t){return null==t?t:Yl.call(t)}function Ea(t,e,n){var r=null==t?0:t.length;return r?(n&&"number"!=typeof n&&Po(t,e,n)?(e=0,n=r):(e=null==e?0:yc(e),n=n===nt?r:yc(n)),ii(t,e,n)):[]}function Ma(t,e){return ai(t,e)}function Ta(t,e,n){return ui(t,e,mo(n,2))}function Sa(t,e){var n=null==t?0:t.length;if(n){var r=ai(t,e);if(r<n&&Vu(t[r],e))return r}return-1}function Na(t,e){return ai(t,e,!0)}function Aa(t,e,n){return ui(t,e,mo(n,2),!0)}function Pa(t,e){if(null==t?0:t.length){var n=ai(t,e,!0)-1;if(Vu(t[n],e))return n}return-1}function Oa(t){return t&&t.length?ci(t):[]}function Ia(t,e){return t&&t.length?ci(t,mo(e,2)):[]}function Da(t){var e=null==t?0:t.length;return e?ii(t,1,e):[]}function Ra(t,e,n){return t&&t.length?(e=n||e===nt?1:yc(e),ii(t,0,e<0?0:e)):[]}function La(t,e,n){var r=null==t?0:t.length;return r?(e=n||e===nt?1:yc(e),e=r-e,ii(t,e<0?0:e,r)):[]}function Ua(t,e){return t&&t.length?di(t,mo(e,3),!1,!0):[]}function Fa(t,e){return t&&t.length?di(t,mo(e,3)):[]}function ja(t){return t&&t.length?fi(t):[]}function Ba(t,e){return t&&t.length?fi(t,mo(e,2)):[]}function Va(t,e){return e="function"==typeof e?e:nt,t&&t.length?fi(t,nt,e):[]}function Wa(t){if(!t||!t.length)return[];var e=0;return t=l(t,function(t){if(zu(t))return e=Vl(t.length,e),!0}),P(e,function(e){return h(t,M(e))})}function za(t,e){if(!t||!t.length)return[];var n=Wa(t);return null==e?n:h(n,function(t){return o(e,nt,t)})}function Ha(t,e){return mi(t||[],e||[],Wn)}function qa(t,e){return mi(t||[],e||[],ni)}function Ya(t){var e=n(t);return e.__chain__=!0,e}function Ka(t,e){return e(t),t}function Ga(t,e){return e(t)}function $a(){return Ya(this)}function Xa(){return new i(this.value(),this.__chain__)}function Qa(){this.__values__===nt&&(this.__values__=gc(this.value()));var t=this.__index__>=this.__values__.length;return{done:t,value:t?nt:this.__values__[this.__index__++]}}function Za(){return this}function Ja(t){for(var e,n=this;n instanceof r;){var i=Zo(n);i.__index__=0,i.__values__=nt,e?o.__wrapped__=i:e=i;var o=i;n=n.__wrapped__}return o.__wrapped__=t,e}function tu(){var t=this.__wrapped__;if(t instanceof y){var e=t;return this.__actions__.length&&(e=new y(this)),e=e.reverse(),e.__actions__.push({func:Ga,args:[ka],thisArg:nt}),new i(e,this.__chain__)}return this.thru(ka)}function eu(){return vi(this.__wrapped__,this.__actions__)}function nu(t,e,n){var r=hp(t)?s:or;return n&&Po(t,e,n)&&(e=nt),r(t,mo(e,3))}function ru(t,e){return(hp(t)?l:cr)(t,mo(e,3))}function iu(t,e){return sr(lu(t,e),1)}function ou(t,e){return sr(lu(t,e),At)}function au(t,e,n){return n=n===nt?1:yc(n),sr(lu(t,e),n)}function uu(t,e){return(hp(t)?u:ff)(t,mo(e,3))}function cu(t,e){return(hp(t)?c:pf)(t,mo(e,3))}function su(t,e,n,r){t=Wu(t)?t:$c(t),n=n&&!r?yc(n):0;var i=t.length;return n<0&&(n=Vl(i+n,0)),fc(t)?n<=i&&t.indexOf(e,n)>-1:!!i&&w(t,e,n)>-1}function lu(t,e){return(hp(t)?h:Fr)(t,mo(e,3))}function fu(t,e,n,r){return null==t?[]:(hp(e)||(e=null==e?[]:[e]),n=r?nt:n,hp(n)||(n=null==n?[]:[n]),Hr(t,e,n))}function pu(t,e,n){var r=hp(t)?v:S,i=arguments.length<3;return r(t,mo(e,4),n,i,ff)}function hu(t,e,n){var r=hp(t)?g:S,i=arguments.length<3;return r(t,mo(e,4),n,i,pf)}function du(t,e){return(hp(t)?l:cr)(t,Su(mo(e,3)))}function vu(t){return(hp(t)?Pn:ti)(t)}function gu(t,e,n){return e=(n?Po(t,e,n):e===nt)?1:yc(e),(hp(t)?On:ei)(t,e)}function mu(t){return(hp(t)?Dn:ri)(t)}function yu(t){if(null==t)return 0;if(Wu(t))return fc(t)?Q(t):t.length;var e=Cf(t);return e==Kt||e==Jt?t.size:Rr(t).length}function _u(t,e,n){var r=hp(t)?m:oi;return n&&Po(t,e,n)&&(e=nt),r(t,mo(e,3))}function bu(t,e){if("function"!=typeof e)throw new al(ot);return t=yc(t),function(){if(--t<1)return e.apply(this,arguments)}}function xu(t,e,n){return e=n?nt:e,e=t&&null==e?t.length:e,io(t,xt,nt,nt,nt,nt,e)}function wu(t,e){var n;if("function"!=typeof e)throw new al(ot);return t=yc(t),function(){return--t>0&&(n=e.apply(this,arguments)),t<=1&&(e=nt),n}}function Cu(t,e,n){e=n?nt:e;var r=io(t,mt,nt,nt,nt,nt,nt,e);return r.placeholder=Cu.placeholder,r}function ku(t,e,n){e=n?nt:e;var r=io(t,yt,nt,nt,nt,nt,nt,e);return r.placeholder=ku.placeholder,r}function Eu(t,e,n){function r(e){var n=p,r=h;return p=h=nt,y=e,v=t.apply(r,n)}function i(t){return y=t,g=Mf(u,e),_?r(t):v}function o(t){var n=t-m,r=t-y,i=e-n;return b?Wl(i,d-r):i}function a(t){var n=t-m,r=t-y;return m===nt||n>=e||n<0||b&&r>=d}function u(){var t=ep();if(a(t))return c(t);g=Mf(u,o(t))}function c(t){return g=nt,x&&p?r(t):(p=h=nt,v)}function s(){g!==nt&&yf(g),y=0,p=m=h=g=nt}function l(){return g===nt?v:c(ep())}function f(){var t=ep(),n=a(t);if(p=arguments,h=this,m=t,n){if(g===nt)return i(m);if(b)return g=Mf(u,e),r(m)}return g===nt&&(g=Mf(u,e)),v}var p,h,d,v,g,m,y=0,_=!1,b=!1,x=!0;if("function"!=typeof t)throw new al(ot);return e=bc(e)||0,tc(n)&&(_=!!n.leading,b="maxWait"in n,d=b?Vl(bc(n.maxWait)||0,e):d,x="trailing"in n?!!n.trailing:x),f.cancel=s,f.flush=l,f}function Mu(t){return io(t,Ct)}function Tu(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new al(ot);var n=function(){var r=arguments,i=e?e.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=t.apply(this,r);return n.cache=o.set(i,a)||o,a};return n.cache=new(Tu.Cache||an),n}function Su(t){if("function"!=typeof t)throw new al(ot);return function(){var e=arguments;switch(e.length){case 0:return!t.call(this);case 1:return!t.call(this,e[0]);case 2:return!t.call(this,e[0],e[1]);case 3:return!t.call(this,e[0],e[1],e[2])}return!t.apply(this,e)}}function Nu(t){return wu(2,t)}function Au(t,e){if("function"!=typeof t)throw new al(ot);return e=e===nt?e:yc(e),Jr(t,e)}function Pu(t,e){if("function"!=typeof t)throw new al(ot);return e=null==e?0:Vl(yc(e),0),Jr(function(n){var r=n[e],i=xi(n,0,e);return r&&d(i,r),o(t,this,i)})}function Ou(t,e,n){var r=!0,i=!0;if("function"!=typeof t)throw new al(ot);return tc(n)&&(r="leading"in n?!!n.leading:r,i="trailing"in n?!!n.trailing:i),Eu(t,e,{leading:r,maxWait:e,trailing:i})}function Iu(t){return xu(t,1)}function Du(t,e){return up(_i(e),t)}function Ru(){if(!arguments.length)return[];var t=arguments[0];return hp(t)?t:[t]}function Lu(t){return tr(t,ft)}function Uu(t,e){return e="function"==typeof e?e:nt,tr(t,ft,e)}function Fu(t){return tr(t,st|ft)}function ju(t,e){return e="function"==typeof e?e:nt,tr(t,st|ft,e)}function Bu(t,e){return null==e||nr(t,e,Lc(e))}function Vu(t,e){return t===e||t!==t&&e!==e}function Wu(t){return null!=t&&Ju(t.length)&&!Qu(t)}function zu(t){return ec(t)&&Wu(t)}function Hu(t){return!0===t||!1===t||ec(t)&&vr(t)==Vt}function qu(t){return ec(t)&&1===t.nodeType&&!sc(t)}function Yu(t){if(null==t)return!0;if(Wu(t)&&(hp(t)||"string"==typeof t||"function"==typeof t.splice||vp(t)||bp(t)||pp(t)))return!t.length;var e=Cf(t);if(e==Kt||e==Jt)return!t.size;if(Lo(t))return!Rr(t).length;for(var n in t)if(pl.call(t,n))return!1;return!0}function Ku(t,e){return Mr(t,e)}function Gu(t,e,n){n="function"==typeof n?n:nt;var r=n?n(t,e):nt;return r===nt?Mr(t,e,nt,n):!!r}function $u(t){if(!ec(t))return!1;var e=vr(t);return e==Ht||e==zt||"string"==typeof t.message&&"string"==typeof t.name&&!sc(t)}function Xu(t){return"number"==typeof t&&Fl(t)}function Qu(t){if(!tc(t))return!1;var e=vr(t);return e==qt||e==Yt||e==Bt||e==Qt}function Zu(t){return"number"==typeof t&&t==yc(t)}function Ju(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=Pt}function tc(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function ec(t){return null!=t&&"object"==typeof t}function nc(t,e){return t===e||Nr(t,e,_o(e))}function rc(t,e,n){return n="function"==typeof n?n:nt,Nr(t,e,_o(e),n)}function ic(t){return cc(t)&&t!=+t}function oc(t){if(kf(t))throw new tl(it);return Ar(t)}function ac(t){return null===t}function uc(t){return null==t}function cc(t){return"number"==typeof t||ec(t)&&vr(t)==Gt}function sc(t){if(!ec(t)||vr(t)!=Xt)return!1;var e=Cl(t);if(null===e)return!0;var n=pl.call(e,"constructor")&&e.constructor;return"function"==typeof n&&n instanceof n&&fl.call(n)==gl}function lc(t){return Zu(t)&&t>=-Pt&&t<=Pt}function fc(t){return"string"==typeof t||!hp(t)&&ec(t)&&vr(t)==te}function pc(t){return"symbol"==typeof t||ec(t)&&vr(t)==ee}function hc(t){return t===nt}function dc(t){return ec(t)&&Cf(t)==re}function vc(t){return ec(t)&&vr(t)==ie}function gc(t){if(!t)return[];if(Wu(t))return fc(t)?Z(t):Oi(t);if(Sl&&t[Sl])return z(t[Sl]());var e=Cf(t);return(e==Kt?H:e==Jt?K:$c)(t)}function mc(t){if(!t)return 0===t?t:0;if((t=bc(t))===At||t===-At){return(t<0?-1:1)*Ot}return t===t?t:0}function yc(t){var e=mc(t),n=e%1;return e===e?n?e-n:e:0}function _c(t){return t?Jn(yc(t),0,Dt):0}function bc(t){if("number"==typeof t)return t;if(pc(t))return It;if(tc(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=tc(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(Pe,"");var n=We.test(t);return n||He.test(t)?Tn(t.slice(2),n?2:8):Ve.test(t)?It:+t}function xc(t){return Ii(t,Uc(t))}function wc(t){return t?Jn(yc(t),-Pt,Pt):0===t?t:0}function Cc(t){return null==t?"":li(t)}function kc(t,e){var n=lf(t);return null==e?n:$n(n,e)}function Ec(t,e){return b(t,mo(e,3),lr)}function Mc(t,e){return b(t,mo(e,3),fr)}function Tc(t,e){return null==t?t:hf(t,mo(e,3),Uc)}function Sc(t,e){return null==t?t:df(t,mo(e,3),Uc)}function Nc(t,e){return t&&lr(t,mo(e,3))}function Ac(t,e){return t&&fr(t,mo(e,3))}function Pc(t){return null==t?[]:pr(t,Lc(t))}function Oc(t){return null==t?[]:pr(t,Uc(t))}function Ic(t,e,n){var r=null==t?nt:hr(t,e);return r===nt?n:r}function Dc(t,e){return null!=t&&ko(t,e,mr)}function Rc(t,e){return null!=t&&ko(t,e,yr)}function Lc(t){return Wu(t)?Nn(t):Rr(t)}function Uc(t){return Wu(t)?Nn(t,!0):Lr(t)}function Fc(t,e){var n={};return e=mo(e,3),lr(t,function(t,r,i){Qn(n,e(t,r,i),t)}),n}function jc(t,e){var n={};return e=mo(e,3),lr(t,function(t,r,i){Qn(n,r,e(t,r,i))}),n}function Bc(t,e){return Vc(t,Su(mo(e)))}function Vc(t,e){if(null==t)return{};var n=h(ho(t),function(t){return[t]});return e=mo(e),Yr(t,n,function(t,n){return e(t,n[0])})}function Wc(t,e,n){e=bi(e,t);var r=-1,i=e.length;for(i||(i=1,t=nt);++r<i;){var o=null==t?nt:t[$o(e[r])];o===nt&&(r=i,o=n),t=Qu(o)?o.call(t):o}return t}function zc(t,e,n){return null==t?t:ni(t,e,n)}function Hc(t,e,n,r){return r="function"==typeof r?r:nt,null==t?t:ni(t,e,n,r)}function qc(t,e,n){var r=hp(t),i=r||vp(t)||bp(t);if(e=mo(e,4),null==n){var o=t&&t.constructor;n=i?r?new o:[]:tc(t)&&Qu(o)?lf(Cl(t)):{}}return(i?u:lr)(t,function(t,r,i){return e(n,t,r,i)}),n}function Yc(t,e){return null==t||pi(t,e)}function Kc(t,e,n){return null==t?t:hi(t,e,_i(n))}function Gc(t,e,n,r){return r="function"==typeof r?r:nt,null==t?t:hi(t,e,_i(n),r)}function $c(t){return null==t?[]:D(t,Lc(t))}function Xc(t){return null==t?[]:D(t,Uc(t))}function Qc(t,e,n){return n===nt&&(n=e,e=nt),n!==nt&&(n=bc(n),n=n===n?n:0),e!==nt&&(e=bc(e),e=e===e?e:0),Jn(bc(t),e,n)}function Zc(t,e,n){return e=mc(e),n===nt?(n=e,e=0):n=mc(n),t=bc(t),_r(t,e,n)}function Jc(t,e,n){if(n&&"boolean"!=typeof n&&Po(t,e,n)&&(e=n=nt),n===nt&&("boolean"==typeof e?(n=e,e=nt):"boolean"==typeof t&&(n=t,t=nt)),t===nt&&e===nt?(t=0,e=1):(t=mc(t),e===nt?(e=t,t=0):e=mc(e)),t>e){var r=t;t=e,e=r}if(n||t%1||e%1){var i=ql();return Wl(t+i*(e-t+Mn("1e-"+((i+"").length-1))),e)}return Xr(t,e)}function ts(t){return Yp(Cc(t).toLowerCase())}function es(t){return(t=Cc(t))&&t.replace(Ye,zn).replace(hn,"")}function ns(t,e,n){t=Cc(t),e=li(e);var r=t.length;n=n===nt?r:Jn(yc(n),0,r);var i=n;return(n-=e.length)>=0&&t.slice(n,i)==e}function rs(t){return t=Cc(t),t&&we.test(t)?t.replace(be,Hn):t}function is(t){return t=Cc(t),t&&Ae.test(t)?t.replace(Ne,"\\$&"):t}function os(t,e,n){t=Cc(t),e=yc(e);var r=e?Q(t):0;if(!e||r>=e)return t;var i=(e-r)/2;return Qi(Rl(i),n)+t+Qi(Dl(i),n)}function as(t,e,n){t=Cc(t),e=yc(e);var r=e?Q(t):0;return e&&r<e?t+Qi(e-r,n):t}function us(t,e,n){t=Cc(t),e=yc(e);var r=e?Q(t):0;return e&&r<e?Qi(e-r,n)+t:t}function cs(t,e,n){return n||null==e?e=0:e&&(e=+e),Hl(Cc(t).replace(Oe,""),e||0)}function ss(t,e,n){return e=(n?Po(t,e,n):e===nt)?1:yc(e),Zr(Cc(t),e)}function ls(){var t=arguments,e=Cc(t[0]);return t.length<3?e:e.replace(t[1],t[2])}function fs(t,e,n){return n&&"number"!=typeof n&&Po(t,e,n)&&(e=n=nt),(n=n===nt?Dt:n>>>0)?(t=Cc(t),t&&("string"==typeof e||null!=e&&!yp(e))&&!(e=li(e))&&V(t)?xi(Z(t),0,n):t.split(e,n)):[]}function ps(t,e,n){return t=Cc(t),n=null==n?0:Jn(yc(n),0,t.length),e=li(e),t.slice(n,n+e.length)==e}function hs(t,e,r){var i=n.templateSettings;r&&Po(t,e,r)&&(e=nt),t=Cc(t),e=Ep({},e,i,oo);var o,a,u=Ep({},e.imports,i.imports,oo),c=Lc(u),s=D(u,c),l=0,f=e.interpolate||Ke,p="__p += '",h=il((e.escape||Ke).source+"|"+f.source+"|"+(f===Ee?je:Ke).source+"|"+(e.evaluate||Ke).source+"|$","g"),d="//# sourceURL="+("sourceURL"in e?e.sourceURL:"lodash.templateSources["+ ++_n+"]")+"\n";t.replace(h,function(e,n,r,i,u,c){return r||(r=i),p+=t.slice(l,c).replace(Ge,j),n&&(o=!0,p+="' +\n__e("+n+") +\n'"),u&&(a=!0,p+="';\n"+u+";\n__p += '"),r&&(p+="' +\n((__t = ("+r+")) == null ? '' : __t) +\n'"),l=c+e.length,e}),p+="';\n";var v=e.variable;v||(p="with (obj) {\n"+p+"\n}\n"),p=(a?p.replace(ge,""):p).replace(me,"$1").replace(ye,"$1;"),p="function("+(v||"obj")+") {\n"+(v?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(o?", __e = _.escape":"")+(a?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+p+"return __p\n}";var g=Kp(function(){return el(c,d+"return "+p).apply(nt,s)});if(g.source=p,$u(g))throw g;return g}function ds(t){return Cc(t).toLowerCase()}function vs(t){return Cc(t).toUpperCase()}function gs(t,e,n){if((t=Cc(t))&&(n||e===nt))return t.replace(Pe,"");if(!t||!(e=li(e)))return t;var r=Z(t),i=Z(e);return xi(r,L(r,i),U(r,i)+1).join("")}function ms(t,e,n){if((t=Cc(t))&&(n||e===nt))return t.replace(Ie,"");if(!t||!(e=li(e)))return t;var r=Z(t);return xi(r,0,U(r,Z(e))+1).join("")}function ys(t,e,n){if((t=Cc(t))&&(n||e===nt))return t.replace(Oe,"");if(!t||!(e=li(e)))return t;var r=Z(t);return xi(r,L(r,Z(e))).join("")}function _s(t,e){var n=kt,r=Et;if(tc(e)){var i="separator"in e?e.separator:i;n="length"in e?yc(e.length):n,r="omission"in e?li(e.omission):r}t=Cc(t);var o=t.length;if(V(t)){var a=Z(t);o=a.length}if(n>=o)return t;var u=n-Q(r);if(u<1)return r;var c=a?xi(a,0,u).join(""):t.slice(0,u);if(i===nt)return c+r;if(a&&(u+=c.length-u),yp(i)){if(t.slice(u).search(i)){var s,l=c;for(i.global||(i=il(i.source,Cc(Be.exec(i))+"g")),i.lastIndex=0;s=i.exec(l);)var f=s.index;c=c.slice(0,f===nt?u:f)}}else if(t.indexOf(li(i),u)!=u){var p=c.lastIndexOf(i);p>-1&&(c=c.slice(0,p))}return c+r}function bs(t){return t=Cc(t),t&&xe.test(t)?t.replace(_e,qn):t}function xs(t,e,n){return t=Cc(t),e=n?nt:e,e===nt?W(t)?et(t):_(t):t.match(e)||[]}function ws(t){var e=null==t?0:t.length,n=mo();return t=e?h(t,function(t){if("function"!=typeof t[1])throw new al(ot);return[n(t[0]),t[1]]}):[],Jr(function(n){for(var r=-1;++r<e;){var i=t[r];if(o(i[0],this,n))return o(i[1],this,n)}})}function Cs(t){return er(tr(t,st))}function ks(t){return function(){return t}}function Es(t,e){return null==t||t!==t?e:t}function Ms(t){return t}function Ts(t){return Dr("function"==typeof t?t:tr(t,st))}function Ss(t){return jr(tr(t,st))}function Ns(t,e){return Br(t,tr(e,st))}function As(t,e,n){var r=Lc(e),i=pr(e,r);null!=n||tc(e)&&(i.length||!r.length)||(n=e,e=t,t=this,i=pr(e,Lc(e)));var o=!(tc(n)&&"chain"in n&&!n.chain),a=Qu(t);return u(i,function(n){var r=e[n];t[n]=r,a&&(t.prototype[n]=function(){var e=this.__chain__;if(o||e){var n=t(this.__wrapped__);return(n.__actions__=Oi(this.__actions__)).push({func:r,args:arguments,thisArg:t}),n.__chain__=e,n}return r.apply(t,d([this.value()],arguments))})}),t}function Ps(){return An._===this&&(An._=ml),this}function Os(){}function Is(t){return t=yc(t),Jr(function(e){return zr(e,t)})}function Ds(t){return Oo(t)?M($o(t)):Kr(t)}function Rs(t){return function(e){return null==t?nt:hr(t,e)}}function Ls(){return[]}function Us(){return!1}function Fs(){return{}}function js(){return""}function Bs(){return!0}function Vs(t,e){if((t=yc(t))<1||t>Pt)return[];var n=Dt,r=Wl(t,Dt);e=mo(e),t-=Dt;for(var i=P(r,e);++n<t;)e(n);return i}function Ws(t){return hp(t)?h(t,$o):pc(t)?[t]:Oi(Sf(Cc(t)))}function zs(t){var e=++hl;return Cc(t)+e}function Hs(t){return t&&t.length?ar(t,Ms,gr):nt}function qs(t,e){return t&&t.length?ar(t,mo(e,2),gr):nt}function Ys(t){return E(t,Ms)}function Ks(t,e){return E(t,mo(e,2))}function Gs(t){return t&&t.length?ar(t,Ms,Ur):nt}function $s(t,e){return t&&t.length?ar(t,mo(e,2),Ur):nt}function Xs(t){return t&&t.length?A(t,Ms):0}function Qs(t,e){return t&&t.length?A(t,mo(e,2)):0}e=null==e?An:Yn.defaults(An.Object(),e,Yn.pick(An,yn));var Zs=e.Array,Js=e.Date,tl=e.Error,el=e.Function,nl=e.Math,rl=e.Object,il=e.RegExp,ol=e.String,al=e.TypeError,ul=Zs.prototype,cl=el.prototype,sl=rl.prototype,ll=e["__core-js_shared__"],fl=cl.toString,pl=sl.hasOwnProperty,hl=0,dl=function(){var t=/[^.]+$/.exec(ll&&ll.keys&&ll.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}(),vl=sl.toString,gl=fl.call(rl),ml=An._,yl=il("^"+fl.call(pl).replace(Ne,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),_l=In?e.Buffer:nt,bl=e.Symbol,xl=e.Uint8Array,wl=_l?_l.allocUnsafe:nt,Cl=q(rl.getPrototypeOf,rl),kl=rl.create,El=sl.propertyIsEnumerable,Ml=ul.splice,Tl=bl?bl.isConcatSpreadable:nt,Sl=bl?bl.iterator:nt,Nl=bl?bl.toStringTag:nt,Al=function(){try{var t=bo(rl,"defineProperty");return t({},"",{}),t}catch(t){}}(),Pl=e.clearTimeout!==An.clearTimeout&&e.clearTimeout,Ol=Js&&Js.now!==An.Date.now&&Js.now,Il=e.setTimeout!==An.setTimeout&&e.setTimeout,Dl=nl.ceil,Rl=nl.floor,Ll=rl.getOwnPropertySymbols,Ul=_l?_l.isBuffer:nt,Fl=e.isFinite,jl=ul.join,Bl=q(rl.keys,rl),Vl=nl.max,Wl=nl.min,zl=Js.now,Hl=e.parseInt,ql=nl.random,Yl=ul.reverse,Kl=bo(e,"DataView"),Gl=bo(e,"Map"),$l=bo(e,"Promise"),Xl=bo(e,"Set"),Ql=bo(e,"WeakMap"),Zl=bo(rl,"create"),Jl=Ql&&new Ql,tf={},ef=Xo(Kl),nf=Xo(Gl),rf=Xo($l),of=Xo(Xl),af=Xo(Ql),uf=bl?bl.prototype:nt,cf=uf?uf.valueOf:nt,sf=uf?uf.toString:nt,lf=function(){function t(){}return function(e){if(!tc(e))return{};if(kl)return kl(e);t.prototype=e;var n=new t;return t.prototype=nt,n}}();n.templateSettings={escape:Ce,evaluate:ke,interpolate:Ee,variable:"",imports:{_:n}},n.prototype=r.prototype,n.prototype.constructor=n,i.prototype=lf(r.prototype),i.prototype.constructor=i,y.prototype=lf(r.prototype),y.prototype.constructor=y,tt.prototype.clear=Ue,tt.prototype.delete=$e,tt.prototype.get=Xe,tt.prototype.has=Qe,tt.prototype.set=Ze,Je.prototype.clear=tn,Je.prototype.delete=en,Je.prototype.get=nn,Je.prototype.has=rn,Je.prototype.set=on,an.prototype.clear=un,an.prototype.delete=cn,an.prototype.get=sn,an.prototype.has=ln,an.prototype.set=fn,dn.prototype.add=dn.prototype.push=vn,dn.prototype.has=gn,mn.prototype.clear=wn,mn.prototype.delete=Cn,mn.prototype.get=kn,mn.prototype.has=En,mn.prototype.set=Sn;var ff=Fi(lr),pf=Fi(fr,!0),hf=ji(),df=ji(!0),vf=Jl?function(t,e){return Jl.set(t,e),t}:Ms,gf=Al?function(t,e){return Al(t,"toString",{configurable:!0,enumerable:!1,value:ks(e),writable:!0})}:Ms,mf=Jr,yf=Pl||function(t){return An.clearTimeout(t)},_f=Xl&&1/K(new Xl([,-0]))[1]==At?function(t){return new Xl(t)}:Os,bf=Jl?function(t){return Jl.get(t)}:Os,xf=Ll?function(t){return null==t?[]:(t=rl(t),l(Ll(t),function(e){return El.call(t,e)}))}:Ls,wf=Ll?function(t){for(var e=[];t;)d(e,xf(t)),t=Cl(t);return e}:Ls,Cf=vr;(Kl&&Cf(new Kl(new ArrayBuffer(1)))!=ae||Gl&&Cf(new Gl)!=Kt||$l&&"[object Promise]"!=Cf($l.resolve())||Xl&&Cf(new Xl)!=Jt||Ql&&Cf(new Ql)!=re)&&(Cf=function(t){var e=vr(t),n=e==Xt?t.constructor:nt,r=n?Xo(n):"";if(r)switch(r){case ef:return ae;case nf:return Kt;case rf:return"[object Promise]";case of:return Jt;case af:return re}return e});var kf=ll?Qu:Us,Ef=Ko(vf),Mf=Il||function(t,e){return An.setTimeout(t,e)},Tf=Ko(gf),Sf=function(t){var e=Tu(t,function(t){return n.size===ut&&n.clear(),t}),n=e.cache;return e}(function(t){var e=[];return 46===t.charCodeAt(0)&&e.push(""),t.replace(Se,function(t,n,r,i){e.push(r?i.replace(Fe,"$1"):n||t)}),e}),Nf=Jr(function(t,e){return zu(t)?ir(t,sr(e,1,zu,!0)):[]}),Af=Jr(function(t,e){var n=ma(e);return zu(n)&&(n=nt),zu(t)?ir(t,sr(e,1,zu,!0),mo(n,2)):[]}),Pf=Jr(function(t,e){var n=ma(e);return zu(n)&&(n=nt),zu(t)?ir(t,sr(e,1,zu,!0),nt,n):[]}),Of=Jr(function(t){var e=h(t,yi);return e.length&&e[0]===t[0]?br(e):[]}),If=Jr(function(t){var e=ma(t),n=h(t,yi);return e===ma(n)?e=nt:n.pop(),n.length&&n[0]===t[0]?br(n,mo(e,2)):[]}),Df=Jr(function(t){var e=ma(t),n=h(t,yi);return e="function"==typeof e?e:nt,e&&n.pop(),n.length&&n[0]===t[0]?br(n,nt,e):[]}),Rf=Jr(ba),Lf=fo(function(t,e){var n=null==t?0:t.length,r=Zn(t,e);return $r(t,h(e,function(t){return Ao(t,n)?+t:t}).sort(Si)),r}),Uf=Jr(function(t){return fi(sr(t,1,zu,!0))}),Ff=Jr(function(t){var e=ma(t);return zu(e)&&(e=nt),fi(sr(t,1,zu,!0),mo(e,2))}),jf=Jr(function(t){var e=ma(t);return e="function"==typeof e?e:nt,fi(sr(t,1,zu,!0),nt,e)}),Bf=Jr(function(t,e){return zu(t)?ir(t,e):[]}),Vf=Jr(function(t){return gi(l(t,zu))}),Wf=Jr(function(t){var e=ma(t);return zu(e)&&(e=nt),gi(l(t,zu),mo(e,2))}),zf=Jr(function(t){var e=ma(t);return e="function"==typeof e?e:nt,gi(l(t,zu),nt,e)}),Hf=Jr(Wa),qf=Jr(function(t){var e=t.length,n=e>1?t[e-1]:nt;return n="function"==typeof n?(t.pop(),n):nt,za(t,n)}),Yf=fo(function(t){var e=t.length,n=e?t[0]:0,r=this.__wrapped__,o=function(e){return Zn(e,t)};return!(e>1||this.__actions__.length)&&r instanceof y&&Ao(n)?(r=r.slice(n,+n+(e?1:0)),r.__actions__.push({func:Ga,args:[o],thisArg:nt}),new i(r,this.__chain__).thru(function(t){return e&&!t.length&&t.push(nt),t})):this.thru(o)}),Kf=Li(function(t,e,n){pl.call(t,n)?++t[n]:Qn(t,n,1)}),Gf=qi(ua),$f=qi(ca),Xf=Li(function(t,e,n){pl.call(t,n)?t[n].push(e):Qn(t,n,[e])}),Qf=Jr(function(t,e,n){var r=-1,i="function"==typeof e,a=Wu(t)?Zs(t.length):[];return ff(t,function(t){a[++r]=i?o(e,t,n):wr(t,e,n)}),a}),Zf=Li(function(t,e,n){Qn(t,n,e)}),Jf=Li(function(t,e,n){t[n?0:1].push(e)},function(){return[[],[]]}),tp=Jr(function(t,e){if(null==t)return[];var n=e.length;return n>1&&Po(t,e[0],e[1])?e=[]:n>2&&Po(e[0],e[1],e[2])&&(e=[e[0]]),Hr(t,sr(e,1),[])}),ep=Ol||function(){return An.Date.now()},np=Jr(function(t,e,n){var r=dt;if(n.length){var i=Y(n,go(np));r|=_t}return io(t,r,e,n,i)}),rp=Jr(function(t,e,n){var r=dt|vt;if(n.length){var i=Y(n,go(rp));r|=_t}return io(e,r,t,n,i)}),ip=Jr(function(t,e){return rr(t,1,e)}),op=Jr(function(t,e,n){return rr(t,bc(e)||0,n)});Tu.Cache=an;var ap=mf(function(t,e){e=1==e.length&&hp(e[0])?h(e[0],I(mo())):h(sr(e,1),I(mo()));var n=e.length;return Jr(function(r){for(var i=-1,a=Wl(r.length,n);++i<a;)r[i]=e[i].call(this,r[i]);return o(t,this,r)})}),up=Jr(function(t,e){var n=Y(e,go(up));return io(t,_t,nt,e,n)}),cp=Jr(function(t,e){var n=Y(e,go(cp));return io(t,bt,nt,e,n)}),sp=fo(function(t,e){return io(t,wt,nt,nt,nt,e)}),lp=to(gr),fp=to(function(t,e){return t>=e}),pp=Cr(function(){return arguments}())?Cr:function(t){return ec(t)&&pl.call(t,"callee")&&!El.call(t,"callee")},hp=Zs.isArray,dp=Ln?I(Ln):kr,vp=Ul||Us,gp=Un?I(Un):Er,mp=Fn?I(Fn):Sr,yp=jn?I(jn):Pr,_p=Bn?I(Bn):Or,bp=Vn?I(Vn):Ir,xp=to(Ur),wp=to(function(t,e){return t<=e}),Cp=Ui(function(t,e){if(Lo(e)||Wu(e))return void Ii(e,Lc(e),t);for(var n in e)pl.call(e,n)&&Wn(t,n,e[n])}),kp=Ui(function(t,e){Ii(e,Uc(e),t)}),Ep=Ui(function(t,e,n,r){Ii(e,Uc(e),t,r)}),Mp=Ui(function(t,e,n,r){Ii(e,Lc(e),t,r)}),Tp=fo(Zn),Sp=Jr(function(t,e){t=rl(t);var n=-1,r=e.length,i=r>2?e[2]:nt;for(i&&Po(e[0],e[1],i)&&(r=1);++n<r;)for(var o=e[n],a=Uc(o),u=-1,c=a.length;++u<c;){var s=a[u],l=t[s];(l===nt||Vu(l,sl[s])&&!pl.call(t,s))&&(t[s]=o[s])}return t}),Np=Jr(function(t){return t.push(nt,ao),o(Dp,nt,t)}),Ap=Gi(function(t,e,n){null!=e&&"function"!=typeof e.toString&&(e=vl.call(e)),t[e]=n},ks(Ms)),Pp=Gi(function(t,e,n){null!=e&&"function"!=typeof e.toString&&(e=vl.call(e)),pl.call(t,e)?t[e].push(n):t[e]=[n]},mo),Op=Jr(wr),Ip=Ui(function(t,e,n){Vr(t,e,n)}),Dp=Ui(function(t,e,n,r){Vr(t,e,n,r)}),Rp=fo(function(t,e){var n={};if(null==t)return n;var r=!1;e=h(e,function(e){return e=bi(e,t),r||(r=e.length>1),e}),Ii(t,ho(t),n),r&&(n=tr(n,st|lt|ft,uo));for(var i=e.length;i--;)pi(n,e[i]);return n}),Lp=fo(function(t,e){return null==t?{}:qr(t,e)}),Up=ro(Lc),Fp=ro(Uc),jp=Wi(function(t,e,n){return e=e.toLowerCase(),t+(n?ts(e):e)}),Bp=Wi(function(t,e,n){return t+(n?"-":"")+e.toLowerCase()}),Vp=Wi(function(t,e,n){return t+(n?" ":"")+e.toLowerCase()}),Wp=Vi("toLowerCase"),zp=Wi(function(t,e,n){return t+(n?"_":"")+e.toLowerCase()}),Hp=Wi(function(t,e,n){return t+(n?" ":"")+Yp(e)}),qp=Wi(function(t,e,n){return t+(n?" ":"")+e.toUpperCase()}),Yp=Vi("toUpperCase"),Kp=Jr(function(t,e){try{return o(t,nt,e)}catch(t){return $u(t)?t:new tl(t)}}),Gp=fo(function(t,e){return u(e,function(e){e=$o(e),Qn(t,e,np(t[e],t))}),t}),$p=Yi(),Xp=Yi(!0),Qp=Jr(function(t,e){return function(n){return wr(n,t,e)}}),Zp=Jr(function(t,e){return function(n){return wr(t,n,e)}}),Jp=Xi(h),th=Xi(s),eh=Xi(m),nh=Ji(),rh=Ji(!0),ih=$i(function(t,e){return t+e},0),oh=no("ceil"),ah=$i(function(t,e){return t/e},1),uh=no("floor"),ch=$i(function(t,e){return t*e},1),sh=no("round"),lh=$i(function(t,e){return t-e},0);return n.after=bu,n.ary=xu,n.assign=Cp,n.assignIn=kp,n.assignInWith=Ep,n.assignWith=Mp,n.at=Tp,n.before=wu,n.bind=np,n.bindAll=Gp,n.bindKey=rp,n.castArray=Ru,n.chain=Ya,n.chunk=Jo,n.compact=ta,n.concat=ea,n.cond=ws,n.conforms=Cs,n.constant=ks,n.countBy=Kf,n.create=kc,n.curry=Cu,n.curryRight=ku,n.debounce=Eu,n.defaults=Sp,n.defaultsDeep=Np,n.defer=ip,n.delay=op,n.difference=Nf,n.differenceBy=Af,n.differenceWith=Pf,n.drop=na,n.dropRight=ra,n.dropRightWhile=ia,n.dropWhile=oa,n.fill=aa,n.filter=ru,n.flatMap=iu,n.flatMapDeep=ou,n.flatMapDepth=au,n.flatten=sa,n.flattenDeep=la,n.flattenDepth=fa,n.flip=Mu,n.flow=$p,n.flowRight=Xp,n.fromPairs=pa,n.functions=Pc,n.functionsIn=Oc,n.groupBy=Xf,n.initial=va,n.intersection=Of,n.intersectionBy=If,n.intersectionWith=Df,n.invert=Ap,n.invertBy=Pp,n.invokeMap=Qf,n.iteratee=Ts,n.keyBy=Zf,n.keys=Lc,n.keysIn=Uc,n.map=lu,n.mapKeys=Fc,n.mapValues=jc,n.matches=Ss,n.matchesProperty=Ns,n.memoize=Tu,n.merge=Ip,n.mergeWith=Dp,n.method=Qp,n.methodOf=Zp,n.mixin=As,n.negate=Su,n.nthArg=Is,n.omit=Rp,n.omitBy=Bc,n.once=Nu,n.orderBy=fu,n.over=Jp,n.overArgs=ap,n.overEvery=th,n.overSome=eh,n.partial=up,n.partialRight=cp,n.partition=Jf,n.pick=Lp,n.pickBy=Vc,n.property=Ds,n.propertyOf=Rs,n.pull=Rf,n.pullAll=ba,n.pullAllBy=xa,n.pullAllWith=wa,n.pullAt=Lf,n.range=nh,n.rangeRight=rh,n.rearg=sp,n.reject=du,n.remove=Ca,n.rest=Au,n.reverse=ka,n.sampleSize=gu,n.set=zc,n.setWith=Hc,n.shuffle=mu,n.slice=Ea,n.sortBy=tp,n.sortedUniq=Oa,n.sortedUniqBy=Ia,n.split=fs,n.spread=Pu,n.tail=Da,n.take=Ra,n.takeRight=La,n.takeRightWhile=Ua,n.takeWhile=Fa,n.tap=Ka,n.throttle=Ou,n.thru=Ga,n.toArray=gc,n.toPairs=Up,n.toPairsIn=Fp,n.toPath=Ws,n.toPlainObject=xc,n.transform=qc,n.unary=Iu,n.union=Uf,n.unionBy=Ff,n.unionWith=jf,n.uniq=ja,n.uniqBy=Ba,n.uniqWith=Va,n.unset=Yc,n.unzip=Wa,n.unzipWith=za,n.update=Kc,n.updateWith=Gc,n.values=$c,n.valuesIn=Xc,n.without=Bf,n.words=xs,n.wrap=Du,n.xor=Vf,n.xorBy=Wf,n.xorWith=zf,n.zip=Hf,n.zipObject=Ha,n.zipObjectDeep=qa,n.zipWith=qf,n.entries=Up,n.entriesIn=Fp,n.extend=kp,n.extendWith=Ep,As(n,n),n.add=ih,n.attempt=Kp,n.camelCase=jp,n.capitalize=ts,n.ceil=oh,n.clamp=Qc,n.clone=Lu,n.cloneDeep=Fu,n.cloneDeepWith=ju,n.cloneWith=Uu,n.conformsTo=Bu,n.deburr=es,n.defaultTo=Es,n.divide=ah,n.endsWith=ns,n.eq=Vu,n.escape=rs,n.escapeRegExp=is,n.every=nu,n.find=Gf,n.findIndex=ua,n.findKey=Ec,n.findLast=$f,n.findLastIndex=ca,n.findLastKey=Mc,n.floor=uh,n.forEach=uu,n.forEachRight=cu,n.forIn=Tc,n.forInRight=Sc,n.forOwn=Nc,n.forOwnRight=Ac,n.get=Ic,n.gt=lp,n.gte=fp,n.has=Dc,n.hasIn=Rc,n.head=ha,n.identity=Ms,n.includes=su,n.indexOf=da,n.inRange=Zc,n.invoke=Op,n.isArguments=pp,n.isArray=hp,n.isArrayBuffer=dp,n.isArrayLike=Wu,n.isArrayLikeObject=zu,n.isBoolean=Hu,n.isBuffer=vp,n.isDate=gp,n.isElement=qu,n.isEmpty=Yu,n.isEqual=Ku,n.isEqualWith=Gu,n.isError=$u,n.isFinite=Xu,n.isFunction=Qu,n.isInteger=Zu,n.isLength=Ju,n.isMap=mp,n.isMatch=nc,n.isMatchWith=rc,n.isNaN=ic,n.isNative=oc,n.isNil=uc,n.isNull=ac,n.isNumber=cc,n.isObject=tc,n.isObjectLike=ec,n.isPlainObject=sc,n.isRegExp=yp,n.isSafeInteger=lc,n.isSet=_p,n.isString=fc,n.isSymbol=pc,n.isTypedArray=bp,n.isUndefined=hc,n.isWeakMap=dc,n.isWeakSet=vc,n.join=ga,n.kebabCase=Bp,n.last=ma,n.lastIndexOf=ya,n.lowerCase=Vp,n.lowerFirst=Wp,n.lt=xp,n.lte=wp,n.max=Hs,n.maxBy=qs,n.mean=Ys,n.meanBy=Ks,n.min=Gs,n.minBy=$s,n.stubArray=Ls,n.stubFalse=Us,n.stubObject=Fs,n.stubString=js,n.stubTrue=Bs,n.multiply=ch,n.nth=_a,n.noConflict=Ps,n.noop=Os,n.now=ep,n.pad=os,n.padEnd=as,n.padStart=us,n.parseInt=cs,n.random=Jc,n.reduce=pu,n.reduceRight=hu,n.repeat=ss,n.replace=ls,n.result=Wc,n.round=sh,n.runInContext=t,n.sample=vu,n.size=yu,n.snakeCase=zp,n.some=_u,n.sortedIndex=Ma,n.sortedIndexBy=Ta,n.sortedIndexOf=Sa,n.sortedLastIndex=Na,n.sortedLastIndexBy=Aa,n.sortedLastIndexOf=Pa,n.startCase=Hp,n.startsWith=ps,n.subtract=lh,n.sum=Xs,n.sumBy=Qs,n.template=hs,n.times=Vs,n.toFinite=mc,n.toInteger=yc,n.toLength=_c,n.toLower=ds,n.toNumber=bc,n.toSafeInteger=wc,n.toString=Cc,n.toUpper=vs,n.trim=gs,n.trimEnd=ms,n.trimStart=ys,n.truncate=_s,n.unescape=bs,n.uniqueId=zs,n.upperCase=qp,n.upperFirst=Yp,n.each=uu,n.eachRight=cu,n.first=ha,As(n,function(){var t={};return lr(n,function(e,r){pl.call(n.prototype,r)||(t[r]=e)}),t}(),{chain:!1}),n.VERSION="4.17.11",u(["bind","bindKey","curry","curryRight","partial","partialRight"],function(t){n[t].placeholder=n}),u(["drop","take"],function(t,e){y.prototype[t]=function(n){n=n===nt?1:Vl(yc(n),0);var r=this.__filtered__&&!e?new y(this):this.clone();return r.__filtered__?r.__takeCount__=Wl(n,r.__takeCount__):r.__views__.push({size:Wl(n,Dt),type:t+(r.__dir__<0?"Right":"")}),r},y.prototype[t+"Right"]=function(e){return this.reverse()[t](e).reverse()}}),u(["filter","map","takeWhile"],function(t,e){var n=e+1,r=n==St||3==n;y.prototype[t]=function(t){var e=this.clone();return e.__iteratees__.push({iteratee:mo(t,3),type:n}),e.__filtered__=e.__filtered__||r,e}}),u(["head","last"],function(t,e){var n="take"+(e?"Right":"");y.prototype[t]=function(){return this[n](1).value()[0]}}),u(["initial","tail"],function(t,e){var n="drop"+(e?"":"Right");y.prototype[t]=function(){return this.__filtered__?new y(this):this[n](1)}}),y.prototype.compact=function(){return this.filter(Ms)},y.prototype.find=function(t){return this.filter(t).head()},y.prototype.findLast=function(t){return this.reverse().find(t)},y.prototype.invokeMap=Jr(function(t,e){return"function"==typeof t?new y(this):this.map(function(n){return wr(n,t,e)})}),y.prototype.reject=function(t){return this.filter(Su(mo(t)))},y.prototype.slice=function(t,e){t=yc(t);var n=this;return n.__filtered__&&(t>0||e<0)?new y(n):(t<0?n=n.takeRight(-t):t&&(n=n.drop(t)),e!==nt&&(e=yc(e),n=e<0?n.dropRight(-e):n.take(e-t)),n)},y.prototype.takeRightWhile=function(t){return this.reverse().takeWhile(t).reverse()},y.prototype.toArray=function(){return this.take(Dt)},lr(y.prototype,function(t,e){var r=/^(?:filter|find|map|reject)|While$/.test(e),o=/^(?:head|last)$/.test(e),a=n[o?"take"+("last"==e?"Right":""):e],u=o||/^find/.test(e);a&&(n.prototype[e]=function(){var e=this.__wrapped__,c=o?[1]:arguments,s=e instanceof y,l=c[0],f=s||hp(e),p=function(t){var e=a.apply(n,d([t],c));return o&&h?e[0]:e};f&&r&&"function"==typeof l&&1!=l.length&&(s=f=!1);var h=this.__chain__,v=!!this.__actions__.length,g=u&&!h,m=s&&!v;if(!u&&f){e=m?e:new y(this);var _=t.apply(e,c);return _.__actions__.push({func:Ga,args:[p],thisArg:nt}),new i(_,h)}return g&&m?t.apply(this,c):(_=this.thru(p),g?o?_.value()[0]:_.value():_)})}),u(["pop","push","shift","sort","splice","unshift"],function(t){var e=ul[t],r=/^(?:push|sort|unshift)$/.test(t)?"tap":"thru",i=/^(?:pop|shift)$/.test(t);n.prototype[t]=function(){var t=arguments;if(i&&!this.__chain__){var n=this.value();return e.apply(hp(n)?n:[],t)}return this[r](function(n){return e.apply(hp(n)?n:[],t)})}}),lr(y.prototype,function(t,e){var r=n[e];if(r){var i=r.name+"";(tf[i]||(tf[i]=[])).push({name:e,func:r})}}),tf[Ki(nt,vt).name]=[{name:"wrapper",func:nt}],y.prototype.clone=T,y.prototype.reverse=$,y.prototype.value=J,n.prototype.at=Yf,n.prototype.chain=$a,n.prototype.commit=Xa,n.prototype.next=Qa,n.prototype.plant=Ja,n.prototype.reverse=tu,n.prototype.toJSON=n.prototype.valueOf=n.prototype.value=eu,n.prototype.first=n.prototype.head,Sl&&(n.prototype[Sl]=Za),n}();An._=Yn,(i=function(){return Yn}.call(e,n,e,r))!==nt&&(r.exports=i)}).call(this)}).call(e,n(98),n(99)(t))},function(t,e,n){"use strict";var r={remove:function(t){t._reactInternalInstance=void 0},get:function(t){return t._reactInternalInstance},has:function(t){return void 0!==t._reactInternalInstance},set:function(t,e){t._reactInternalInstance=e}};t.exports=r},function(t,e,n){"use strict";function r(t){for(var e=arguments.length-1,n="Minified React error #"+t+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+t,r=0;r<e;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);n+=" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";var i=new Error(n);throw i.name="Invariant Violation",i.framesToPop=1,i}t.exports=r},function(t,e,n){"use strict";t.exports=n(26)},function(t,e,n){"use strict";var r=n(63);e.a=function(t){return t=n.i(r.a)(Math.abs(t)),t?t[1]:NaN}},function(t,e,n){"use strict";e.a=function(t,e){return t=+t,e-=t,function(n){return t+e*n}}},function(t,e,n){"use strict";function r(t,e){return(e-=t=+t)?function(n){return(n-t)/e}:n.i(h.a)(e)}function i(t){return function(e,n){var r=t(e=+e,n=+n);return function(t){return t<=e?0:t>=n?1:r(t)}}}function o(t){return function(e,n){var r=t(e=+e,n=+n);return function(t){return t<=0?e:t>=1?n:r(t)}}}function a(t,e,n,r){var i=t[0],o=t[1],a=e[0],u=e[1];return o<i?(i=n(o,i),a=r(u,a)):(i=n(i,o),a=r(a,u)),function(t){return a(i(t))}}function u(t,e,r,i){var o=Math.min(t.length,e.length)-1,a=new Array(o),u=new Array(o),c=-1;for(t[o]<t[0]&&(t=t.slice().reverse(),e=e.slice().reverse());++c<o;)a[c]=r(t[c],t[c+1]),u[c]=i(e[c],e[c+1]);return function(e){var r=n.i(l.bisect)(t,e,1,o)-1;return u[r](a[r](e))}}function c(t,e){return e.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp())}function s(t,e){function n(){return s=Math.min(g.length,m.length)>2?u:a,l=h=null,c}function c(e){return(l||(l=s(g,m,_?i(t):t,y)))(+e)}var s,l,h,g=v,m=v,y=f.b,_=!1;return c.invert=function(t){return(h||(h=s(m,g,r,_?o(e):e)))(+t)},c.domain=function(t){return arguments.length?(g=p.a.call(t,d.a),n()):g.slice()},c.range=function(t){return arguments.length?(m=p.b.call(t),n()):m.slice()},c.rangeRound=function(t){return m=p.b.call(t),y=f.c,n()},c.clamp=function(t){return arguments.length?(_=!!t,n()):_},c.interpolate=function(t){return arguments.length?(y=t,n()):y},n()}e.b=r,e.c=c,e.a=s;var l=n(7),f=n(30),p=n(16),h=n(67),d=n(126),v=[0,1]},function(t,e,n){"use strict";function r(t){return function(){var e=this.ownerDocument,n=this.namespaceURI;return n===a.b&&e.documentElement.namespaceURI===a.b?e.createElement(t):e.createElementNS(n,t)}}function i(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}var o=n(68),a=n(69);e.a=function(t){var e=n.i(o.a)(t);return(e.local?i:r)(e)}},function(t,e,n){"use strict";e.a=function(t,e){var n=t.ownerSVGElement||t;if(n.createSVGPoint){var r=n.createSVGPoint();return r.x=e.clientX,r.y=e.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}var i=t.getBoundingClientRect();return[e.clientX-i.left-t.clientLeft,e.clientY-i.top-t.clientTop]}},function(t,e,n){"use strict";function r(t,e,n){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+n)/6)}function i(t){this._context=t}e.c=r,e.b=i,i.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:r(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:r(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},e.a=function(t){return new i(t)}},function(t,e,n){"use strict";function r(t,e,n){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-n),t._x2,t._y2)}function i(t,e){this._context=t,this._k=(1-e)/6}e.c=r,e.b=i,i.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:r(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:r(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}},e.a=function t(e){function n(t){return new i(t,e)}return n.tension=function(e){return t(+e)},n}(0)},function(t,e,n){"use strict";function r(t){this._context=t}r.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}},e.a=function(t){return new r(t)}},function(t,e,n){"use strict";e.a=function(){}},function(t,e,n){"use strict";var r={};t.exports=r},function(t,e,n){"use strict";function r(t){return"topMouseUp"===t||"topTouchEnd"===t||"topTouchCancel"===t}function i(t){return"topMouseMove"===t||"topTouchMove"===t}function o(t){return"topMouseDown"===t||"topTouchStart"===t}function a(t,e,n,r){var i=t.type||"unknown-event";t.currentTarget=m.getNodeFromInstance(r),e?v.invokeGuardedCallbackWithCatch(i,n,t):v.invokeGuardedCallback(i,n,t),t.currentTarget=null}function u(t,e){var n=t._dispatchListeners,r=t._dispatchInstances;if(Array.isArray(n))for(var i=0;i<n.length&&!t.isPropagationStopped();i++)a(t,e,n[i],r[i]);else n&&a(t,e,n,r);t._dispatchListeners=null,t._dispatchInstances=null}function c(t){var e=t._dispatchListeners,n=t._dispatchInstances;if(Array.isArray(e)){for(var r=0;r<e.length&&!t.isPropagationStopped();r++)if(e[r](t,n[r]))return n[r]}else if(e&&e(t,n))return n;return null}function s(t){var e=c(t);return t._dispatchInstances=null,t._dispatchListeners=null,e}function l(t){var e=t._dispatchListeners,n=t._dispatchInstances;Array.isArray(e)&&d("103"),t.currentTarget=e?m.getNodeFromInstance(n):null;var r=e?e(t):null;return t.currentTarget=null,t._dispatchListeners=null,t._dispatchInstances=null,r}function f(t){return!!t._dispatchListeners}var p,h,d=n(1),v=n(88),g=(n(0),n(2),{injectComponentTree:function(t){p=t},injectTreeTraversal:function(t){h=t}}),m={isEndish:r,isMoveish:i,isStartish:o,executeDirectDispatch:l,executeDispatchesInOrder:u,executeDispatchesInOrderStopAtTrue:s,hasDispatches:f,getInstanceFromNode:function(t){return p.getInstanceFromNode(t)},getNodeFromInstance:function(t){return p.getNodeFromInstance(t)},isAncestor:function(t,e){return h.isAncestor(t,e)},getLowestCommonAncestor:function(t,e){return h.getLowestCommonAncestor(t,e)},getParentInstance:function(t){return h.getParentInstance(t)},traverseTwoPhase:function(t,e,n){return h.traverseTwoPhase(t,e,n)},traverseEnterLeave:function(t,e,n,r,i){return h.traverseEnterLeave(t,e,n,r,i)},injection:g};t.exports=m},function(t,e,n){"use strict";function r(t){return Object.prototype.hasOwnProperty.call(t,v)||(t[v]=h++,f[t[v]]={}),f[t[v]]}var i,o=n(3),a=n(84),u=n(374),c=n(90),s=n(406),l=n(95),f={},p=!1,h=0,d={topAbort:"abort",topAnimationEnd:s("animationend")||"animationend",topAnimationIteration:s("animationiteration")||"animationiteration",topAnimationStart:s("animationstart")||"animationstart",topBlur:"blur",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topChange:"change",topClick:"click",topCompositionEnd:"compositionend",topCompositionStart:"compositionstart",topCompositionUpdate:"compositionupdate",topContextMenu:"contextmenu",topCopy:"copy",topCut:"cut",topDoubleClick:"dblclick",topDrag:"drag",topDragEnd:"dragend",topDragEnter:"dragenter",topDragExit:"dragexit",topDragLeave:"dragleave",topDragOver:"dragover",topDragStart:"dragstart",topDrop:"drop",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topFocus:"focus",topInput:"input",topKeyDown:"keydown",topKeyPress:"keypress",topKeyUp:"keyup",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topMouseDown:"mousedown",topMouseMove:"mousemove",topMouseOut:"mouseout",topMouseOver:"mouseover",topMouseUp:"mouseup",topPaste:"paste",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topScroll:"scroll",topSeeked:"seeked",topSeeking:"seeking",topSelectionChange:"selectionchange",topStalled:"stalled",topSuspend:"suspend",topTextInput:"textInput",topTimeUpdate:"timeupdate",topTouchCancel:"touchcancel",topTouchEnd:"touchend",topTouchMove:"touchmove",topTouchStart:"touchstart",topTransitionEnd:s("transitionend")||"transitionend",topVolumeChange:"volumechange",topWaiting:"waiting",topWheel:"wheel"},v="_reactListenersID"+String(Math.random()).slice(2),g=o({},u,{ReactEventListener:null,injection:{injectReactEventListener:function(t){t.setHandleTopLevel(g.handleTopLevel),g.ReactEventListener=t}},setEnabled:function(t){g.ReactEventListener&&g.ReactEventListener.setEnabled(t)},isEnabled:function(){return!(!g.ReactEventListener||!g.ReactEventListener.isEnabled())},listenTo:function(t,e){for(var n=e,i=r(n),o=a.registrationNameDependencies[t],u=0;u<o.length;u++){var c=o[u];i.hasOwnProperty(c)&&i[c]||("topWheel"===c?l("wheel")?g.ReactEventListener.trapBubbledEvent("topWheel","wheel",n):l("mousewheel")?g.ReactEventListener.trapBubbledEvent("topWheel","mousewheel",n):g.ReactEventListener.trapBubbledEvent("topWheel","DOMMouseScroll",n):"topScroll"===c?l("scroll",!0)?g.ReactEventListener.trapCapturedEvent("topScroll","scroll",n):g.ReactEventListener.trapBubbledEvent("topScroll","scroll",g.ReactEventListener.WINDOW_HANDLE):"topFocus"===c||"topBlur"===c?(l("focus",!0)?(g.ReactEventListener.trapCapturedEvent("topFocus","focus",n),g.ReactEventListener.trapCapturedEvent("topBlur","blur",n)):l("focusin")&&(g.ReactEventListener.trapBubbledEvent("topFocus","focusin",n),g.ReactEventListener.trapBubbledEvent("topBlur","focusout",n)),i.topBlur=!0,i.topFocus=!0):d.hasOwnProperty(c)&&g.ReactEventListener.trapBubbledEvent(c,d[c],n),i[c]=!0)}},trapBubbledEvent:function(t,e,n){return g.ReactEventListener.trapBubbledEvent(t,e,n)},trapCapturedEvent:function(t,e,n){return g.ReactEventListener.trapCapturedEvent(t,e,n)},supportsEventPageXY:function(){if(!document.createEvent)return!1;var t=document.createEvent("MouseEvent");return null!=t&&"pageX"in t},ensureScrollValueMonitoring:function(){if(void 0===i&&(i=g.supportsEventPageXY()),!i&&!p){var t=c.refreshScrollValues;g.ReactEventListener.monitorScrollValue(t),p=!0}}});t.exports=g},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(25),o=n(90),a=n(93),u={screenX:null,screenY:null,clientX:null,clientY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:a,button:function(t){var e=t.button;return"which"in t?e:2===e?2:4===e?1:0},buttons:null,relatedTarget:function(t){return t.relatedTarget||(t.fromElement===t.srcElement?t.toElement:t.fromElement)},pageX:function(t){return"pageX"in t?t.pageX:t.clientX+o.currentScrollLeft},pageY:function(t){return"pageY"in t?t.pageY:t.clientY+o.currentScrollTop}};i.augmentClass(r,u),t.exports=r},function(t,e,n){"use strict";var r=n(1),i=(n(0),{}),o={reinitializeTransaction:function(){this.transactionWrappers=this.getTransactionWrappers(),this.wrapperInitData?this.wrapperInitData.length=0:this.wrapperInitData=[],this._isInTransaction=!1},_isInTransaction:!1,getTransactionWrappers:null,isInTransaction:function(){return!!this._isInTransaction},perform:function(t,e,n,i,o,a,u,c){this.isInTransaction()&&r("27");var s,l;try{this._isInTransaction=!0,s=!0,this.initializeAll(0),l=t.call(e,n,i,o,a,u,c),s=!1}finally{try{if(s)try{this.closeAll(0)}catch(t){}else this.closeAll(0)}finally{this._isInTransaction=!1}}return l},initializeAll:function(t){for(var e=this.transactionWrappers,n=t;n<e.length;n++){var r=e[n];try{this.wrapperInitData[n]=i,this.wrapperInitData[n]=r.initialize?r.initialize.call(this):null}finally{if(this.wrapperInitData[n]===i)try{this.initializeAll(n+1)}catch(t){}}}},closeAll:function(t){this.isInTransaction()||r("28");for(var e=this.transactionWrappers,n=t;n<e.length;n++){var o,a=e[n],u=this.wrapperInitData[n];try{o=!0,u!==i&&a.close&&a.close.call(this,u),o=!1}finally{if(o)try{this.closeAll(n+1)}catch(t){}}}this.wrapperInitData.length=0}};t.exports=o},function(t,e,n){"use strict";function r(t){var e=""+t,n=o.exec(e);if(!n)return e;var r,i="",a=0,u=0;for(a=n.index;a<e.length;a++){switch(e.charCodeAt(a)){case 34:r=""";break;case 38:r="&";break;case 39:r="'";break;case 60:r="<";break;case 62:r=">";break;default:continue}u!==a&&(i+=e.substring(u,a)),u=a+1,i+=r}return u!==a?i+e.substring(u,a):i}function i(t){return"boolean"==typeof t||"number"==typeof t?""+t:r(t)}var o=/["'&<>]/;t.exports=i},function(t,e,n){"use strict";var r,i=n(6),o=n(83),a=/^[ \r\n\t\f]/,u=/<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/,c=n(91),s=c(function(t,e){if(t.namespaceURI!==o.svg||"innerHTML"in t)t.innerHTML=e;else{r=r||document.createElement("div"),r.innerHTML="<svg>"+e+"</svg>";for(var n=r.firstChild;n.firstChild;)t.appendChild(n.firstChild)}});if(i.canUseDOM){var l=document.createElement("div");l.innerHTML=" ",""===l.innerHTML&&(s=function(t,e){if(t.parentNode&&t.parentNode.replaceChild(t,t),a.test(e)||"<"===e[0]&&u.test(e)){t.innerHTML=String.fromCharCode(65279)+e;var n=t.firstChild;1===n.data.length?t.removeChild(n):n.deleteData(0,1)}else t.innerHTML=e}),l=null}t.exports=s},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={colors:{RdBu:["rgb(255, 13, 87)","rgb(30, 136, 229)"],GnPR:["rgb(24, 196, 93)","rgb(124, 82, 255)"],CyPU:["#0099C6","#990099"],PkYg:["#DD4477","#66AA00"],DrDb:["#B82E2E","#316395"],LpLb:["#994499","#22AA99"],YlDp:["#AAAA11","#6633CC"],OrId:["#E67300","#3E0099"]},gray:"#777"}},function(t,e,n){"use strict";var r=n(28);e.a=function(t,e,n){if(null==n&&(n=r.a),i=t.length){if((e=+e)<=0||i<2)return+n(t[0],0,t);if(e>=1)return+n(t[i-1],i-1,t);var i,o=(i-1)*e,a=Math.floor(o),u=+n(t[a],a,t);return u+(+n(t[a+1],a+1,t)-u)*(o-a)}}},function(t,e,n){"use strict";function r(){}function i(t,e){var n=new r;if(t instanceof r)t.each(function(t,e){n.set(e,t)});else if(Array.isArray(t)){var i,o=-1,a=t.length;if(null==e)for(;++o<a;)n.set(o,t[o]);else for(;++o<a;)n.set(e(i=t[o],o,t),i)}else if(t)for(var u in t)n.set(u,t[u]);return n}n.d(e,"b",function(){return o});var o="$";r.prototype=i.prototype={constructor:r,has:function(t){return o+t in this},get:function(t){return this[o+t]},set:function(t,e){return this[o+t]=e,this},remove:function(t){var e=o+t;return e in this&&delete this[e]},clear:function(){for(var t in this)t[0]===o&&delete this[t]},keys:function(){var t=[];for(var e in this)e[0]===o&&t.push(e.slice(1));return t},values:function(){var t=[];for(var e in this)e[0]===o&&t.push(this[e]);return t},entries:function(){var t=[];for(var e in this)e[0]===o&&t.push({key:e.slice(1),value:this[e]});return t},size:function(){var t=0;for(var e in this)e[0]===o&&++t;return t},empty:function(){for(var t in this)if(t[0]===o)return!1;return!0},each:function(t){for(var e in this)e[0]===o&&t(this[e],e.slice(1),this)}},e.a=i},function(t,e,n){"use strict";function r(){}function i(t){var e;return t=(t+"").trim().toLowerCase(),(e=x.exec(t))?(e=parseInt(e[1],16),new s(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1)):(e=w.exec(t))?o(parseInt(e[1],16)):(e=C.exec(t))?new s(e[1],e[2],e[3],1):(e=k.exec(t))?new s(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=E.exec(t))?a(e[1],e[2],e[3],e[4]):(e=M.exec(t))?a(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=T.exec(t))?l(e[1],e[2]/100,e[3]/100,1):(e=S.exec(t))?l(e[1],e[2]/100,e[3]/100,e[4]):N.hasOwnProperty(t)?o(N[t]):"transparent"===t?new s(NaN,NaN,NaN,0):null}function o(t){return new s(t>>16&255,t>>8&255,255&t,1)}function a(t,e,n,r){return r<=0&&(t=e=n=NaN),new s(t,e,n,r)}function u(t){return t instanceof r||(t=i(t)),t?(t=t.rgb(),new s(t.r,t.g,t.b,t.opacity)):new s}function c(t,e,n,r){return 1===arguments.length?u(t):new s(t,e,n,null==r?1:r)}function s(t,e,n,r){this.r=+t,this.g=+e,this.b=+n,this.opacity=+r}function l(t,e,n,r){return r<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new h(t,e,n,r)}function f(t){if(t instanceof h)return new h(t.h,t.s,t.l,t.opacity);if(t instanceof r||(t=i(t)),!t)return new h;if(t instanceof h)return t;t=t.rgb();var e=t.r/255,n=t.g/255,o=t.b/255,a=Math.min(e,n,o),u=Math.max(e,n,o),c=NaN,s=u-a,l=(u+a)/2;return s?(c=e===u?(n-o)/s+6*(n<o):n===u?(o-e)/s+2:(e-n)/s+4,s/=l<.5?u+a:2-u-a,c*=60):s=l>0&&l<1?0:c,new h(c,s,l,t.opacity)}function p(t,e,n,r){return 1===arguments.length?f(t):new h(t,e,n,null==r?1:r)}function h(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}function d(t,e,n){return 255*(t<60?e+(n-e)*t/60:t<180?n:t<240?e+(n-e)*(240-t)/60:e)}e.f=r,n.d(e,"h",function(){return g}),n.d(e,"g",function(){return m}),e.a=i,e.e=u,e.b=c,e.d=s,e.c=p;var v=n(62),g=.7,m=1/g,y="\\s*([+-]?\\d+)\\s*",_="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",b="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",x=/^#([0-9a-f]{3})$/,w=/^#([0-9a-f]{6})$/,C=new RegExp("^rgb\\("+[y,y,y]+"\\)$"),k=new RegExp("^rgb\\("+[b,b,b]+"\\)$"),E=new RegExp("^rgba\\("+[y,y,y,_]+"\\)$"),M=new RegExp("^rgba\\("+[b,b,b,_]+"\\)$"),T=new RegExp("^hsl\\("+[_,b,b]+"\\)$"),S=new RegExp("^hsla\\("+[_,b,b,_]+"\\)$"),N={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};n.i(v.a)(r,i,{displayable:function(){return this.rgb().displayable()},toString:function(){return this.rgb()+""}}),n.i(v.a)(s,c,n.i(v.b)(r,{brighter:function(t){return t=null==t?m:Math.pow(m,t),new s(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?g:Math.pow(g,t),new s(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return 0<=this.r&&this.r<=255&&0<=this.g&&this.g<=255&&0<=this.b&&this.b<=255&&0<=this.opacity&&this.opacity<=1},toString:function(){var t=this.opacity;return t=isNaN(t)?1:Math.max(0,Math.min(1,t)),(1===t?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}})),n.i(v.a)(h,p,n.i(v.b)(r,{brighter:function(t){return t=null==t?m:Math.pow(m,t),new h(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?g:Math.pow(g,t),new h(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*e,i=2*n-r;return new s(d(t>=240?t-240:t+120,i,r),d(t,i,r),d(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}))},function(t,e,n){"use strict";function r(t,e){var n=Object.create(t.prototype);for(var r in e)n[r]=e[r];return n}e.b=r,e.a=function(t,e,n){t.prototype=e.prototype=n,n.constructor=t}},function(t,e,n){"use strict";e.a=function(t,e){if((n=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"))<0)return null;var n,r=t.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+t.slice(n+1)]}},function(t,e,n){"use strict";function r(t,e,n,r,i){var o=t*t,a=o*t;return((1-3*t+3*o-a)*e+(4-6*o+3*a)*n+(1+3*t+3*o-3*a)*r+a*i)/6}e.b=r,e.a=function(t){var e=t.length-1;return function(n){var i=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),o=t[i],a=t[i+1],u=i>0?t[i-1]:2*o-a,c=i<e-1?t[i+2]:2*a-o;return r((n-i/e)*e,u,o,a,c)}}},function(t,e,n){"use strict";var r=n(10),i=n(123),o=n(118),a=n(121),u=n(43),c=n(122),s=n(124),l=n(120);e.a=function(t,e){var f,p=typeof e;return null==e||"boolean"===p?n.i(l.a)(e):("number"===p?u.a:"string"===p?(f=n.i(r.color)(e))?(e=f,i.a):s.a:e instanceof r.color?i.a:e instanceof Date?a.a:Array.isArray(e)?o.a:"function"!=typeof e.valueOf&&"function"!=typeof e.toString||isNaN(e)?c.a:u.a)(t,e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(239);n.d(e,"scaleBand",function(){return r.a}),n.d(e,"scalePoint",function(){return r.b});var i=n(245);n.d(e,"scaleIdentity",function(){return i.a});var o=n(34);n.d(e,"scaleLinear",function(){return o.a});var a=n(246);n.d(e,"scaleLog",function(){return a.a});var u=n(127);n.d(e,"scaleOrdinal",function(){return u.a}),n.d(e,"scaleImplicit",function(){return u.b});var c=n(247);n.d(e,"scalePow",function(){return c.a}),n.d(e,"scaleSqrt",function(){return c.b});var s=n(248);n.d(e,"scaleQuantile",function(){return s.a});var l=n(249);n.d(e,"scaleQuantize",function(){return l.a});var f=n(252);n.d(e,"scaleThreshold",function(){return f.a});var p=n(128);n.d(e,"scaleTime",function(){return p.a});var h=n(254);n.d(e,"scaleUtc",function(){return h.a});var d=n(240);n.d(e,"schemeCategory10",function(){return d.a});var v=n(242);n.d(e,"schemeCategory20b",function(){return v.a});var g=n(243);n.d(e,"schemeCategory20c",function(){return g.a});var m=n(241);n.d(e,"schemeCategory20",function(){return m.a});var y=n(244);n.d(e,"interpolateCubehelixDefault",function(){return y.a});var _=n(250);n.d(e,"interpolateRainbow",function(){return _.a}),n.d(e,"interpolateWarm",function(){return _.b}),n.d(e,"interpolateCool",function(){return _.c});var b=n(255);n.d(e,"interpolateViridis",function(){return b.a}),n.d(e,"interpolateMagma",function(){return b.b}),n.d(e,"interpolateInferno",function(){return b.c}),n.d(e,"interpolatePlasma",function(){return b.d});var x=n(251);n.d(e,"scaleSequential",function(){return x.a})},function(t,e,n){"use strict";e.a=function(t){return function(){return t}}},function(t,e,n){"use strict";var r=n(69);e.a=function(t){var e=t+="",n=e.indexOf(":");return n>=0&&"xmlns"!==(e=t.slice(0,n))&&(t=t.slice(n+1)),r.a.hasOwnProperty(e)?{space:r.a[e],local:t}:t}},function(t,e,n){"use strict";n.d(e,"b",function(){return r});var r="http://www.w3.org/1999/xhtml";e.a={svg:"http://www.w3.org/2000/svg",xhtml:r,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"}},function(t,e,n){"use strict";function r(t,e,n){return t=i(t,e,n),function(e){var n=e.relatedTarget;n&&(n===this||8&n.compareDocumentPosition(this))||t.call(this,e)}}function i(t,e,n){return function(r){var i=l;l=r;try{t.call(this,this.__data__,e,n)}finally{l=i}}}function o(t){return t.trim().split(/^|\s+/).map(function(t){var e="",n=t.indexOf(".");return n>=0&&(e=t.slice(n+1),t=t.slice(0,n)),{type:t,name:e}})}function a(t){return function(){var e=this.__on;if(e){for(var n,r=0,i=-1,o=e.length;r<o;++r)n=e[r],t.type&&n.type!==t.type||n.name!==t.name?e[++i]=n:this.removeEventListener(n.type,n.listener,n.capture);++i?e.length=i:delete this.__on}}}function u(t,e,n){var o=s.hasOwnProperty(t.type)?r:i;return function(r,i,a){var u,c=this.__on,s=o(e,i,a);if(c)for(var l=0,f=c.length;l<f;++l)if((u=c[l]).type===t.type&&u.name===t.name)return this.removeEventListener(u.type,u.listener,u.capture),this.addEventListener(u.type,u.listener=s,u.capture=n),void(u.value=e);this.addEventListener(t.type,s,n),u={type:t.type,name:t.name,value:e,listener:s,capture:n},c?c.push(u):this.__on=[u]}}function c(t,e,n,r){var i=l;t.sourceEvent=l,l=t;try{return e.apply(n,r)}finally{l=i}}n.d(e,"a",function(){return l}),e.b=c;var s={},l=null;if("undefined"!=typeof document){"onmouseenter"in document.documentElement||(s={mouseenter:"mouseover",mouseleave:"mouseout"})}e.c=function(t,e,n){var r,i,c=o(t+""),s=c.length;{if(!(arguments.length<2)){for(l=e?u:a,null==n&&(n=!1),r=0;r<s;++r)this.each(l(c[r],e,n));return this}var l=this.node().__on;if(l)for(var f,p=0,h=l.length;p<h;++p)for(r=0,f=l[p];r<s;++r)if((i=c[r]).type===f.type&&i.name===f.name)return f.value}}},function(t,e,n){"use strict";function r(){}e.a=function(t){return null==t?r:function(){return this.querySelector(t)}}},function(t,e,n){"use strict";var r=n(70);e.a=function(){for(var t,e=r.a;t=e.sourceEvent;)e=t;return e}},function(t,e,n){"use strict";e.a=function(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}},function(t,e,n){"use strict";function r(t,e,n){var r=t._x1,i=t._y1,a=t._x2,u=t._y2;if(t._l01_a>o.a){var c=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,s=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*c-t._x0*t._l12_2a+t._x2*t._l01_2a)/s,i=(i*c-t._y0*t._l12_2a+t._y2*t._l01_2a)/s}if(t._l23_a>o.a){var l=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,f=3*t._l23_a*(t._l23_a+t._l12_a);a=(a*l+t._x1*t._l23_2a-e*t._l12_2a)/f,u=(u*l+t._y1*t._l23_2a-n*t._l12_2a)/f}t._context.bezierCurveTo(r,i,a,u,t._x2,t._y2)}function i(t,e){this._context=t,this._alpha=e}e.b=r;var o=n(35),a=n(48);i.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,i=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+i*i,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:r(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}},e.a=function t(e){function n(t){return e?new i(t,e):new a.b(t,0)}return n.alpha=function(e){return t(+e)},n}(.5)},function(t,e,n){"use strict";var r=n(32),i=n(17),o=n(49),a=n(77);e.a=function(){function t(t){var i,o,a,p=t.length,h=!1;for(null==s&&(f=l(a=n.i(r.a)())),i=0;i<=p;++i)!(i<p&&c(o=t[i],i,t))===h&&((h=!h)?f.lineStart():f.lineEnd()),h&&f.point(+e(o,i,t),+u(o,i,t));if(a)return f=null,a+""||null}var e=a.a,u=a.b,c=n.i(i.a)(!0),s=null,l=o.a,f=null;return t.x=function(r){return arguments.length?(e="function"==typeof r?r:n.i(i.a)(+r),t):e},t.y=function(e){return arguments.length?(u="function"==typeof e?e:n.i(i.a)(+e),t):u},t.defined=function(e){return arguments.length?(c="function"==typeof e?e:n.i(i.a)(!!e),t):c},t.curve=function(e){return arguments.length?(l=e,null!=s&&(f=l(s)),t):l},t.context=function(e){return arguments.length?(null==e?s=f=null:f=l(s=e),t):s},t}},function(t,e,n){"use strict";function r(t){for(var e,n=0,r=-1,i=t.length;++r<i;)(e=+t[r][1])&&(n+=e);return n}e.b=r;var i=n(37);e.a=function(t){var e=t.map(r);return n.i(i.a)(t).sort(function(t,n){return e[t]-e[n]})}},function(t,e,n){"use strict";function r(t){return t[0]}function i(t){return t[1]}e.a=r,e.b=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(79);n.d(e,"timeFormatDefaultLocale",function(){return r.a}),n.d(e,"timeFormat",function(){return r.b}),n.d(e,"timeParse",function(){return r.c}),n.d(e,"utcFormat",function(){return r.d}),n.d(e,"utcParse",function(){return r.e});var i=n(152);n.d(e,"timeFormatLocale",function(){return i.a});var o=n(151);n.d(e,"isoFormat",function(){return o.a});var a=n(314);n.d(e,"isoParse",function(){return a.a})},function(t,e,n){"use strict";function r(t){return i=n.i(s.a)(t),o=i.format,a=i.parse,u=i.utcFormat,c=i.utcParse,i}n.d(e,"b",function(){return o}),n.d(e,"c",function(){return a}),n.d(e,"d",function(){return u}),n.d(e,"e",function(){return c}),e.a=r;var i,o,a,u,c,s=n(152);r({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]})},function(t,e,n){"use strict";var r=(n(5),n(317));n.d(e,"v",function(){return r.a}),n.d(e,"p",function(){return r.a});var i=n(320);n.d(e,"u",function(){return i.a}),n.d(e,"o",function(){return i.a});var o=n(318);n.d(e,"t",function(){return o.a});var a=n(316);n.d(e,"s",function(){return a.a});var u=n(315);n.d(e,"d",function(){return u.a});var c=n(327);n.d(e,"r",function(){return c.a}),n.d(e,"f",function(){return c.a}),n.d(e,"c",function(){return c.b}),n.d(e,"g",function(){return c.c});var s=n(319);n.d(e,"q",function(){return s.a});var l=n(328);n.d(e,"e",function(){return l.a});var f=n(323);n.d(e,"n",function(){return f.a});var p=n(322);n.d(e,"m",function(){return p.a});var h=n(321);n.d(e,"b",function(){return h.a});var d=n(325);n.d(e,"l",function(){return d.a}),n.d(e,"i",function(){return d.a}),n.d(e,"a",function(){return d.b}),n.d(e,"j",function(){return d.c});var v=n(324);n.d(e,"k",function(){return v.a});var g=n(326);n.d(e,"h",function(){return g.a})},function(t,e,n){"use strict";function r(t,e){return t===e?0!==t||0!==e||1/t==1/e:t!==t&&e!==e}function i(t,e){if(r(t,e))return!0;if("object"!=typeof t||null===t||"object"!=typeof e||null===e)return!1;var n=Object.keys(t),i=Object.keys(e);if(n.length!==i.length)return!1;for(var a=0;a<n.length;a++)if(!o.call(e,n[a])||!r(t[n[a]],e[n[a]]))return!1;return!0}var o=Object.prototype.hasOwnProperty;t.exports=i},function(t,e,n){"use strict";function r(t,e){return Array.isArray(e)&&(e=e[1]),e?e.nextSibling:t.firstChild}function i(t,e,n){l.insertTreeBefore(t,e,n)}function o(t,e,n){Array.isArray(e)?u(t,e[0],e[1],n):v(t,e,n)}function a(t,e){if(Array.isArray(e)){var n=e[1];e=e[0],c(t,e,n),t.removeChild(n)}t.removeChild(e)}function u(t,e,n,r){for(var i=e;;){var o=i.nextSibling;if(v(t,i,r),i===n)break;i=o}}function c(t,e,n){for(;;){var r=e.nextSibling;if(r===n)break;t.removeChild(r)}}function s(t,e,n){var r=t.parentNode,i=t.nextSibling;i===e?n&&v(r,document.createTextNode(n),i):n?(d(i,n),c(r,i,e)):c(r,t,e)}var l=n(20),f=n(350),p=(n(4),n(9),n(91)),h=n(57),d=n(176),v=p(function(t,e,n){t.insertBefore(e,n)}),g=f.dangerouslyReplaceNodeWithMarkup,m={dangerouslyReplaceNodeWithMarkup:g,replaceDelimitedText:s,processUpdates:function(t,e){for(var n=0;n<e.length;n++){var u=e[n];switch(u.type){case"INSERT_MARKUP":i(t,u.content,r(t,u.afterNode));break;case"MOVE_EXISTING":o(t,u.fromNode,r(t,u.afterNode));break;case"SET_MARKUP":h(t,u.content);break;case"TEXT_CONTENT":d(t,u.content);break;case"REMOVE_NODE":a(t,u.fromNode)}}}};t.exports=m},function(t,e,n){"use strict";var r={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};t.exports=r},function(t,e,n){"use strict";function r(){if(u)for(var t in c){var e=c[t],n=u.indexOf(t);if(n>-1||a("96",t),!s.plugins[n]){e.extractEvents||a("97",t),s.plugins[n]=e;var r=e.eventTypes;for(var o in r)i(r[o],e,o)||a("98",o,t)}}}function i(t,e,n){s.eventNameDispatchConfigs.hasOwnProperty(n)&&a("99",n),s.eventNameDispatchConfigs[n]=t;var r=t.phasedRegistrationNames;if(r){for(var i in r)if(r.hasOwnProperty(i)){var u=r[i];o(u,e,n)}return!0}return!!t.registrationName&&(o(t.registrationName,e,n),!0)}function o(t,e,n){s.registrationNameModules[t]&&a("100",t),s.registrationNameModules[t]=e,s.registrationNameDependencies[t]=e.eventTypes[n].dependencies}var a=n(1),u=(n(0),null),c={},s={plugins:[],eventNameDispatchConfigs:{},registrationNameModules:{},registrationNameDependencies:{},possibleRegistrationNames:null,injectEventPluginOrder:function(t){u&&a("101"),u=Array.prototype.slice.call(t),r()},injectEventPluginsByName:function(t){var e=!1;for(var n in t)if(t.hasOwnProperty(n)){var i=t[n];c.hasOwnProperty(n)&&c[n]===i||(c[n]&&a("102",n),c[n]=i,e=!0)}e&&r()},getPluginModuleForEvent:function(t){var e=t.dispatchConfig;if(e.registrationName)return s.registrationNameModules[e.registrationName]||null;if(void 0!==e.phasedRegistrationNames){var n=e.phasedRegistrationNames;for(var r in n)if(n.hasOwnProperty(r)){var i=s.registrationNameModules[n[r]];if(i)return i}}return null},_resetEventPlugins:function(){u=null;for(var t in c)c.hasOwnProperty(t)&&delete c[t];s.plugins.length=0;var e=s.eventNameDispatchConfigs;for(var n in e)e.hasOwnProperty(n)&&delete e[n];var r=s.registrationNameModules;for(var i in r)r.hasOwnProperty(i)&&delete r[i]}};t.exports=s},function(t,e,n){"use strict";function r(t){var e={"=":"=0",":":"=2"};return"$"+(""+t).replace(/[=:]/g,function(t){return e[t]})}function i(t){var e=/(=0|=2)/g,n={"=0":"=","=2":":"};return(""+("."===t[0]&&"$"===t[1]?t.substring(2):t.substring(1))).replace(e,function(t){return n[t]})}var o={escape:r,unescape:i};t.exports=o},function(t,e,n){"use strict";function r(t){null!=t.checkedLink&&null!=t.valueLink&&u("87")}function i(t){r(t),(null!=t.value||null!=t.onChange)&&u("88")}function o(t){r(t),(null!=t.checked||null!=t.onChange)&&u("89")}function a(t){if(t){var e=t.getName();if(e)return" Check the render method of `"+e+"`."}return""}var u=n(1),c=n(380),s=n(157),l=n(26),f=s(l.isValidElement),p=(n(0),n(2),{button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0}),h={value:function(t,e,n){return!t[e]||p[t.type]||t.onChange||t.readOnly||t.disabled?null:new Error("You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.")},checked:function(t,e,n){return!t[e]||t.onChange||t.readOnly||t.disabled?null:new Error("You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.")},onChange:f.func},d={},v={checkPropTypes:function(t,e,n){for(var r in h){if(h.hasOwnProperty(r))var i=h[r](e,r,t,"prop",null,c);if(i instanceof Error&&!(i.message in d)){d[i.message]=!0;a(n)}}},getValue:function(t){return t.valueLink?(i(t),t.valueLink.value):t.value},getChecked:function(t){return t.checkedLink?(o(t),t.checkedLink.value):t.checked},executeOnChange:function(t,e){return t.valueLink?(i(t),t.valueLink.requestChange(e.target.value)):t.checkedLink?(o(t),t.checkedLink.requestChange(e.target.checked)):t.onChange?t.onChange.call(void 0,e):void 0}};t.exports=v},function(t,e,n){"use strict";var r=n(1),i=(n(0),!1),o={replaceNodeWithMarkup:null,processChildrenUpdates:null,injection:{injectEnvironment:function(t){i&&r("104"),o.replaceNodeWithMarkup=t.replaceNodeWithMarkup,o.processChildrenUpdates=t.processChildrenUpdates,i=!0}}};t.exports=o},function(t,e,n){"use strict";function r(t,e,n){try{e(n)}catch(t){null===i&&(i=t)}}var i=null,o={invokeGuardedCallback:r,invokeGuardedCallbackWithCatch:r,rethrowCaughtError:function(){if(i){var t=i;throw i=null,t}}};t.exports=o},function(t,e,n){"use strict";function r(t){c.enqueueUpdate(t)}function i(t){var e=typeof t;if("object"!==e)return e;var n=t.constructor&&t.constructor.name||e,r=Object.keys(t);return r.length>0&&r.length<20?n+" (keys: "+r.join(", ")+")":n}function o(t,e){var n=u.get(t);if(!n){return null}return n}var a=n(1),u=(n(15),n(39)),c=(n(9),n(12)),s=(n(0),n(2),{isMounted:function(t){var e=u.get(t);return!!e&&!!e._renderedComponent},enqueueCallback:function(t,e,n){s.validateCallback(e,n);var i=o(t);if(!i)return null;i._pendingCallbacks?i._pendingCallbacks.push(e):i._pendingCallbacks=[e],r(i)},enqueueCallbackInternal:function(t,e){t._pendingCallbacks?t._pendingCallbacks.push(e):t._pendingCallbacks=[e],r(t)},enqueueForceUpdate:function(t){var e=o(t,"forceUpdate");e&&(e._pendingForceUpdate=!0,r(e))},enqueueReplaceState:function(t,e,n){var i=o(t,"replaceState");i&&(i._pendingStateQueue=[e],i._pendingReplaceState=!0,void 0!==n&&null!==n&&(s.validateCallback(n,"replaceState"),i._pendingCallbacks?i._pendingCallbacks.push(n):i._pendingCallbacks=[n]),r(i))},enqueueSetState:function(t,e){var n=o(t,"setState");if(n){(n._pendingStateQueue||(n._pendingStateQueue=[])).push(e),r(n)}},enqueueElementInternal:function(t,e,n){t._pendingElement=e,t._context=n,r(t)},validateCallback:function(t,e){t&&"function"!=typeof t&&a("122",e,i(t))}});t.exports=s},function(t,e,n){"use strict";var r={currentScrollLeft:0,currentScrollTop:0,refreshScrollValues:function(t){r.currentScrollLeft=t.x,r.currentScrollTop=t.y}};t.exports=r},function(t,e,n){"use strict";var r=function(t){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,n,r,i){MSApp.execUnsafeLocalFunction(function(){return t(e,n,r,i)})}:t};t.exports=r},function(t,e,n){"use strict";function r(t){var e,n=t.keyCode;return"charCode"in t?0===(e=t.charCode)&&13===n&&(e=13):e=n,e>=32||13===e?e:0}t.exports=r},function(t,e,n){"use strict";function r(t){var e=this,n=e.nativeEvent;if(n.getModifierState)return n.getModifierState(t);var r=o[t];return!!r&&!!n[r]}function i(t){return r}var o={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};t.exports=i},function(t,e,n){"use strict";function r(t){var e=t.target||t.srcElement||window;return e.correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}t.exports=r},function(t,e,n){"use strict";/**
|
||
* Checks if an event is supported in the current execution environment.
|
||
*
|
||
* NOTE: This will not work correctly for non-generic events such as `change`,
|
||
* `reset`, `load`, `error`, and `select`.
|
||
*
|
||
* Borrows from Modernizr.
|
||
*
|
||
* @param {string} eventNameSuffix Event name, e.g. "click".
|
||
* @param {?boolean} capture Check if the capture phase is supported.
|
||
* @return {boolean} True if the event is supported.
|
||
* @internal
|
||
* @license Modernizr 3.0.0pre (Custom Build) | MIT
|
||
*/
|
||
function r(t,e){if(!o.canUseDOM||e&&!("addEventListener"in document))return!1;var n="on"+t,r=n in document;if(!r){var a=document.createElement("div");a.setAttribute(n,"return;"),r="function"==typeof a[n]}return!r&&i&&"wheel"===t&&(r=document.implementation.hasFeature("Events.wheel","3.0")),r}var i,o=n(6);o.canUseDOM&&(i=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature("","")),t.exports=r},function(t,e,n){"use strict";function r(t,e){var n=null===t||!1===t,r=null===e||!1===e;if(n||r)return n===r;var i=typeof t,o=typeof e;return"string"===i||"number"===i?"string"===o||"number"===o:"object"===o&&t.type===e.type&&t.key===e.key}t.exports=r},function(t,e,n){"use strict";var r=(n(3),n(11)),i=(n(2),r);t.exports=i},function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e,n){"use strict";n.d(e,"b",function(){return i}),n.d(e,"a",function(){return o});var r=Array.prototype,i=r.slice,o=r.map},function(t,e,n){"use strict";n.d(e,"b",function(){return a}),n.d(e,"c",function(){return u});var r=n(19),i=n(102),o=n.i(i.a)(r.a),a=o.right,u=o.left;e.a=a},function(t,e,n){"use strict";function r(t){return function(e,r){return n.i(i.a)(t(e),r)}}var i=n(19);e.a=function(t){return 1===t.length&&(t=r(t)),{left:function(e,n,r,i){for(null==r&&(r=0),null==i&&(i=e.length);r<i;){var o=r+i>>>1;t(e[o],n)<0?r=o+1:i=o}return r},right:function(e,n,r,i){for(null==r&&(r=0),null==i&&(i=e.length);r<i;){var o=r+i>>>1;t(e[o],n)>0?i=o:r=o+1}return r}}}},function(t,e,n){"use strict";var r=n(111);e.a=function(t,e){var i=n.i(r.a)(t,e);return i?Math.sqrt(i):i}},function(t,e,n){"use strict";e.a=function(t,e){var n,r,i,o=t.length,a=-1;if(null==e){for(;++a<o;)if(null!=(n=t[a])&&n>=n)for(r=i=n;++a<o;)null!=(n=t[a])&&(r>n&&(r=n),i<n&&(i=n))}else for(;++a<o;)if(null!=(n=e(t[a],a,t))&&n>=n)for(r=i=n;++a<o;)null!=(n=e(t[a],a,t))&&(r>n&&(r=n),i<n&&(i=n));return[r,i]}},function(t,e,n){"use strict";e.a=function(t,e){var n,r,i=t.length,o=-1;if(null==e){for(;++o<i;)if(null!=(n=t[o])&&n>=n)for(r=n;++o<i;)null!=(n=t[o])&&r>n&&(r=n)}else for(;++o<i;)if(null!=(n=e(t[o],o,t))&&n>=n)for(r=n;++o<i;)null!=(n=e(t[o],o,t))&&r>n&&(r=n);return r}},function(t,e,n){"use strict";function r(t,e){return[t,e]}e.b=r,e.a=function(t,e){null==e&&(e=r);for(var n=0,i=t.length-1,o=t[0],a=new Array(i<0?0:i);n<i;)a[n]=e(o,o=t[++n]);return a}},function(t,e,n){"use strict";e.a=function(t,e,n){t=+t,e=+e,n=(i=arguments.length)<2?(e=t,t=0,1):i<3?1:+n;for(var r=-1,i=0|Math.max(0,Math.ceil((e-t)/n)),o=new Array(i);++r<i;)o[r]=t+r*n;return o}},function(t,e,n){"use strict";e.a=function(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1}},function(t,e,n){"use strict";function r(t,e,n){var r=(e-t)/Math.max(0,n),i=Math.floor(Math.log(r)/Math.LN10),c=r/Math.pow(10,i);return i>=0?(c>=o?10:c>=a?5:c>=u?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(c>=o?10:c>=a?5:c>=u?2:1)}function i(t,e,n){var r=Math.abs(e-t)/Math.max(0,n),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),c=r/i;return c>=o?i*=10:c>=a?i*=5:c>=u&&(i*=2),e<t?-i:i}e.b=r,e.c=i;var o=Math.sqrt(50),a=Math.sqrt(10),u=Math.sqrt(2);e.a=function(t,e,n){var i,o,a,u,c=-1;if(e=+e,t=+t,n=+n,t===e&&n>0)return[t];if((i=e<t)&&(o=t,t=e,e=o),0===(u=r(t,e,n))||!isFinite(u))return[];if(u>0)for(t=Math.ceil(t/u),e=Math.floor(e/u),a=new Array(o=Math.ceil(e-t+1));++c<o;)a[c]=(t+c)*u;else for(t=Math.floor(t*u),e=Math.ceil(e*u),a=new Array(o=Math.ceil(t-e+1));++c<o;)a[c]=(t-c)/u;return i&&a.reverse(),a}},function(t,e,n){"use strict";function r(t){return t.length}var i=n(105);e.a=function(t){if(!(u=t.length))return[];for(var e=-1,o=n.i(i.a)(t,r),a=new Array(o);++e<o;)for(var u,c=-1,s=a[e]=new Array(u);++c<u;)s[c]=t[c][e];return a}},function(t,e,n){"use strict";var r=n(28);e.a=function(t,e){var i,o,a=t.length,u=0,c=-1,s=0,l=0;if(null==e)for(;++c<a;)isNaN(i=n.i(r.a)(t[c]))||(o=i-s,s+=o/++u,l+=o*(i-s));else for(;++c<a;)isNaN(i=n.i(r.a)(e(t[c],c,t)))||(o=i-s,s+=o/++u,l+=o*(i-s));if(u>1)return l/(u-1)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(209);n.d(e,"axisTop",function(){return r.a}),n.d(e,"axisRight",function(){return r.b}),n.d(e,"axisBottom",function(){return r.c}),n.d(e,"axisLeft",function(){return r.d})},function(t,e,n){"use strict";n.d(e,"b",function(){return r}),n.d(e,"a",function(){return i});var r=Math.PI/180,i=180/Math.PI},function(t,e,n){"use strict";n.d(e,"b",function(){return r});var r,i=n(63);e.a=function(t,e){var o=n.i(i.a)(t,e);if(!o)return t+"";var a=o[0],u=o[1],c=u-(r=3*Math.max(-8,Math.min(8,Math.floor(u/3))))+1,s=a.length;return c===s?a:c>s?a+new Array(c-s+1).join("0"):c>0?a.slice(0,c)+"."+a.slice(c):"0."+new Array(1-c).join("0")+n.i(i.a)(t,Math.max(0,e+c-1))[0]}},function(t,e,n){"use strict";function r(t){return new i(t)}function i(t){if(!(e=a.exec(t)))throw new Error("invalid format: "+t);var e,n=e[1]||" ",r=e[2]||">",i=e[3]||"-",u=e[4]||"",c=!!e[5],s=e[6]&&+e[6],l=!!e[7],f=e[8]&&+e[8].slice(1),p=e[9]||"";"n"===p?(l=!0,p="g"):o.a[p]||(p=""),(c||"0"===n&&"="===r)&&(c=!0,n="0",r="="),this.fill=n,this.align=r,this.sign=i,this.symbol=u,this.zero=c,this.width=s,this.comma=l,this.precision=f,this.type=p}e.a=r;var o=n(116),a=/^(?:(.)?([<>=^]))?([+\-\( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?([a-z%])?$/i;r.prototype=i.prototype,i.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(null==this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(null==this.precision?"":"."+Math.max(0,0|this.precision))+this.type}},function(t,e,n){"use strict";var r=n(220),i=n(114),o=n(223);e.a={"":r.a,"%":function(t,e){return(100*t).toFixed(e)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,e){return t.toExponential(e)},f:function(t,e){return t.toFixed(e)},g:function(t,e){return t.toPrecision(e)},o:function(t){return Math.round(t).toString(8)},p:function(t,e){return n.i(o.a)(100*t,e)},r:o.a,s:i.a,X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}}},function(t,e,n){"use strict";var r=n(42),i=n(221),o=n(222),a=n(115),u=n(116),c=n(114),s=n(224),l=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];e.a=function(t){function e(t){function e(t){var e,n,a,u=x,s=w;if("c"===b)s=C(t)+s,t="";else{t=+t;var h=t<0;if(t=C(Math.abs(t),_),h&&0==+t&&(h=!1),u=(h?"("===o?o:"-":"-"===o||"("===o?"":o)+u,s=("s"===b?l[8+c.b/3]:"")+s+(h&&"("===o?")":""),k)for(e=-1,n=t.length;++e<n;)if(48>(a=t.charCodeAt(e))||a>57){s=(46===a?d+t.slice(e+1):t.slice(e))+s,t=t.slice(0,e);break}}y&&!f&&(t=p(t,1/0));var g=u.length+t.length+s.length,E=g<m?new Array(m-g+1).join(r):"";switch(y&&f&&(t=p(E+t,E.length?m-s.length:1/0),E=""),i){case"<":t=u+t+s+E;break;case"=":t=u+E+t+s;break;case"^":t=E.slice(0,g=E.length>>1)+u+t+s+E.slice(g);break;default:t=E+u+t+s}return v(t)}t=n.i(a.a)(t);var r=t.fill,i=t.align,o=t.sign,s=t.symbol,f=t.zero,m=t.width,y=t.comma,_=t.precision,b=t.type,x="$"===s?h[0]:"#"===s&&/[boxX]/.test(b)?"0"+b.toLowerCase():"",w="$"===s?h[1]:/[%p]/.test(b)?g:"",C=u.a[b],k=!b||/[defgprs%]/.test(b);return _=null==_?b?6:12:/[gprs]/.test(b)?Math.max(1,Math.min(21,_)):Math.max(0,Math.min(20,_)),e.toString=function(){return t+""},e}function f(t,i){var o=e((t=n.i(a.a)(t),t.type="f",t)),u=3*Math.max(-8,Math.min(8,Math.floor(n.i(r.a)(i)/3))),c=Math.pow(10,-u),s=l[8+u/3];return function(t){return o(c*t)+s}}var p=t.grouping&&t.thousands?n.i(i.a)(t.grouping,t.thousands):s.a,h=t.currency,d=t.decimal,v=t.numerals?n.i(o.a)(t.numerals):s.a,g=t.percent||"%";return{format:e,formatPrefix:f}}},function(t,e,n){"use strict";var r=n(65);e.a=function(t,e){var i,o=e?e.length:0,a=t?Math.min(o,t.length):0,u=new Array(a),c=new Array(o);for(i=0;i<a;++i)u[i]=n.i(r.a)(t[i],e[i]);for(;i<o;++i)c[i]=e[i];return function(t){for(i=0;i<a;++i)c[i]=u[i](t);return c}}},function(t,e,n){"use strict";var r=n(64);e.a=function(t){var e=t.length;return function(i){var o=Math.floor(((i%=1)<0?++i:i)*e),a=t[(o+e-1)%e],u=t[o%e],c=t[(o+1)%e],s=t[(o+2)%e];return n.i(r.b)((i-o/e)*e,a,u,c,s)}}},function(t,e,n){"use strict";e.a=function(t){return function(){return t}}},function(t,e,n){"use strict";e.a=function(t,e){var n=new Date;return t=+t,e-=t,function(r){return n.setTime(t+e*r),n}}},function(t,e,n){"use strict";var r=n(65);e.a=function(t,e){var i,o={},a={};null!==t&&"object"==typeof t||(t={}),null!==e&&"object"==typeof e||(e={});for(i in e)i in t?o[i]=n.i(r.a)(t[i],e[i]):a[i]=e[i];return function(t){for(i in o)a[i]=o[i](t);return a}}},function(t,e,n){"use strict";function r(t){return function(e){var r,o,a=e.length,u=new Array(a),c=new Array(a),s=new Array(a);for(r=0;r<a;++r)o=n.i(i.rgb)(e[r]),u[r]=o.r||0,c[r]=o.g||0,s[r]=o.b||0;return u=t(u),c=t(c),s=t(s),o.opacity=1,function(t){return o.r=u(t),o.g=c(t),o.b=s(t),o+""}}}var i=n(10),o=n(64),a=n(119),u=n(31);e.a=function t(e){function r(t,e){var r=o((t=n.i(i.rgb)(t)).r,(e=n.i(i.rgb)(e)).r),a=o(t.g,e.g),c=o(t.b,e.b),s=n.i(u.a)(t.opacity,e.opacity);return function(e){return t.r=r(e),t.g=a(e),t.b=c(e),t.opacity=s(e),t+""}}var o=n.i(u.c)(e);return r.gamma=t,r}(1);r(o.a),r(a.a)},function(t,e,n){"use strict";function r(t){return function(){return t}}function i(t){return function(e){return t(e)+""}}var o=n(43),a=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,u=new RegExp(a.source,"g");e.a=function(t,e){var c,s,l,f=a.lastIndex=u.lastIndex=0,p=-1,h=[],d=[];for(t+="",e+="";(c=a.exec(t))&&(s=u.exec(e));)(l=s.index)>f&&(l=e.slice(f,l),h[p]?h[p]+=l:h[++p]=l),(c=c[0])===(s=s[0])?h[p]?h[p]+=s:h[++p]=s:(h[++p]=null,d.push({i:p,x:n.i(o.a)(c,s)})),f=u.lastIndex;return f<e.length&&(l=e.slice(f),h[p]?h[p]+=l:h[++p]=l),h.length<2?d[0]?i(d[0].x):r(e):(e=d.length,function(t){for(var n,r=0;r<e;++r)h[(n=d[r]).i]=n.x(t);return h.join("")})}},function(t,e,n){"use strict";e.a=function(t,e){t=t.slice();var n,r=0,i=t.length-1,o=t[r],a=t[i];return a<o&&(n=r,r=i,i=n,n=o,o=a,a=n),t[r]=e.floor(o),t[i]=e.ceil(a),t}},function(t,e,n){"use strict";e.a=function(t){return+t}},function(t,e,n){"use strict";function r(t){function e(e){var n=e+"",r=u.get(n);if(!r){if(s!==a)return s;u.set(n,r=c.push(e))}return t[(r-1)%t.length]}var u=n.i(i.a)(),c=[],s=a;return t=null==t?[]:o.b.call(t),e.domain=function(t){if(!arguments.length)return c.slice();c=[],u=n.i(i.a)();for(var r,o,a=-1,s=t.length;++a<s;)u.has(o=(r=t[a])+"")||u.set(o,c.push(r));return e},e.range=function(n){return arguments.length?(t=o.b.call(n),e):t.slice()},e.unknown=function(t){return arguments.length?(s=t,e):s},e.copy=function(){return r().domain(c).range(t).unknown(s)},e}n.d(e,"b",function(){return a}),e.a=r;var i=n(211),o=n(16),a={name:"implicit"}},function(t,e,n){"use strict";function r(t){return new Date(t)}function i(t){return t instanceof Date?+t:+new Date(+t)}function o(t,e,c,s,b,x,w,C,k){function E(n){return(w(n)<n?A:x(n)<n?P:b(n)<n?O:s(n)<n?I:e(n)<n?c(n)<n?D:R:t(n)<n?L:U)(n)}function M(e,r,i,o){if(null==e&&(e=10),"number"==typeof e){var u=Math.abs(i-r)/e,c=n.i(a.bisector)(function(t){return t[2]}).right(F,u);c===F.length?(o=n.i(a.tickStep)(r/_,i/_,e),e=t):c?(c=F[u/F[c-1][2]<F[c][2]/u?c-1:c],o=c[1],e=c[0]):(o=Math.max(n.i(a.tickStep)(r,i,e),1),e=C)}return null==o?e:e.every(o)}var T=n.i(f.a)(f.b,u.a),S=T.invert,N=T.domain,A=k(".%L"),P=k(":%S"),O=k("%I:%M"),I=k("%I %p"),D=k("%a %d"),R=k("%b %d"),L=k("%B"),U=k("%Y"),F=[[w,1,h],[w,5,5*h],[w,15,15*h],[w,30,30*h],[x,1,d],[x,5,5*d],[x,15,15*d],[x,30,30*d],[b,1,v],[b,3,3*v],[b,6,6*v],[b,12,12*v],[s,1,g],[s,2,2*g],[c,1,m],[e,1,y],[e,3,3*y],[t,1,_]];return T.invert=function(t){return new Date(S(t))},T.domain=function(t){return arguments.length?N(l.a.call(t,i)):N().map(r)},T.ticks=function(t,e){var n,r=N(),i=r[0],o=r[r.length-1],a=o<i;return a&&(n=i,i=o,o=n),n=M(t,i,o,e),n=n?n.range(i,o+1):[],a?n.reverse():n},T.tickFormat=function(t,e){return null==e?E:k(e)},T.nice=function(t,e){var r=N();return(t=M(t,r[0],r[r.length-1],e))?N(n.i(p.a)(r,t)):T},T.copy=function(){return n.i(f.c)(T,o(t,e,c,s,b,x,w,C,k))},T}e.b=o;var a=n(7),u=n(30),c=n(80),s=n(78),l=n(16),f=n(44),p=n(125),h=1e3,d=60*h,v=60*d,g=24*v,m=7*g,y=30*g,_=365*g;e.a=function(){return o(c.e,c.q,c.r,c.d,c.s,c.t,c.u,c.v,s.timeFormat).domain([new Date(2e3,0,1),new Date(2e3,0,2)])}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(257);n.d(e,"create",function(){return r.a});var i=n(45);n.d(e,"creator",function(){return i.a});var o=n(258);n.d(e,"local",function(){return o.a});var a=n(130);n.d(e,"matcher",function(){return a.a});var u=n(259);n.d(e,"mouse",function(){return u.a});var c=n(68);n.d(e,"namespace",function(){return c.a});var s=n(69);n.d(e,"namespaces",function(){return s.a});var l=n(46);n.d(e,"clientPoint",function(){return l.a});var f=n(131);n.d(e,"select",function(){return f.a});var p=n(260);n.d(e,"selectAll",function(){return p.a});var h=n(8);n.d(e,"selection",function(){return h.a});var d=n(71);n.d(e,"selector",function(){return d.a});var v=n(135);n.d(e,"selectorAll",function(){return v.a});var g=n(134);n.d(e,"style",function(){return g.a});var m=n(288);n.d(e,"touch",function(){return m.a});var y=n(289);n.d(e,"touches",function(){return y.a});var _=n(73);n.d(e,"window",function(){return _.a});var b=n(70);n.d(e,"event",function(){return b.a}),n.d(e,"customEvent",function(){return b.b})},function(t,e,n){"use strict";var r=function(t){return function(){return this.matches(t)}};if("undefined"!=typeof document){var i=document.documentElement;if(!i.matches){var o=i.webkitMatchesSelector||i.msMatchesSelector||i.mozMatchesSelector||i.oMatchesSelector;r=function(t){return function(){return o.call(this,t)}}}}e.a=r},function(t,e,n){"use strict";var r=n(8);e.a=function(t){return"string"==typeof t?new r.b([[document.querySelector(t)]],[document.documentElement]):new r.b([[t]],r.c)}},function(t,e,n){"use strict";function r(t,e){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=e}e.b=r;var i=n(133),o=n(8);e.a=function(){return new o.b(this._enter||this._groups.map(i.a),this._parents)},r.prototype={constructor:r,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,e){return this._parent.insertBefore(t,e)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}}},function(t,e,n){"use strict";e.a=function(t){return new Array(t.length)}},function(t,e,n){"use strict";function r(t){return function(){this.style.removeProperty(t)}}function i(t,e,n){return function(){this.style.setProperty(t,e,n)}}function o(t,e,n){return function(){var r=e.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,n)}}function a(t,e){return t.style.getPropertyValue(e)||n.i(u.a)(t).getComputedStyle(t,null).getPropertyValue(e)}e.a=a;var u=n(73);e.b=function(t,e,n){return arguments.length>1?this.each((null==e?r:"function"==typeof e?o:i)(t,e,null==n?"":n)):a(this.node(),t)}},function(t,e,n){"use strict";function r(){return[]}e.a=function(t){return null==t?r:function(){return this.querySelectorAll(t)}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(290);n.d(e,"arc",function(){return r.a});var i=n(137);n.d(e,"area",function(){return i.a});var o=n(75);n.d(e,"line",function(){return o.a});var a=n(311);n.d(e,"pie",function(){return a.a});var u=n(291);n.d(e,"areaRadial",function(){return u.a}),n.d(e,"radialArea",function(){return u.a});var c=n(142);n.d(e,"lineRadial",function(){return c.a}),n.d(e,"radialLine",function(){return c.a});var s=n(143);n.d(e,"pointRadial",function(){return s.a});var l=n(303);n.d(e,"linkHorizontal",function(){return l.a}),n.d(e,"linkVertical",function(){return l.b}),n.d(e,"linkRadial",function(){return l.c});var f=n(313);n.d(e,"symbol",function(){return f.a}),n.d(e,"symbols",function(){return f.b});var p=n(144);n.d(e,"symbolCircle",function(){return p.a});var h=n(145);n.d(e,"symbolCross",function(){return h.a});var d=n(146);n.d(e,"symbolDiamond",function(){return d.a});var v=n(147);n.d(e,"symbolSquare",function(){return v.a});var g=n(148);n.d(e,"symbolStar",function(){return g.a});var m=n(149);n.d(e,"symbolTriangle",function(){return m.a});var y=n(150);n.d(e,"symbolWye",function(){return y.a});var _=n(292);n.d(e,"curveBasisClosed",function(){return _.a});var b=n(293);n.d(e,"curveBasisOpen",function(){return b.a});var x=n(47);n.d(e,"curveBasis",function(){return x.a});var w=n(294);n.d(e,"curveBundle",function(){return w.a});var C=n(139);n.d(e,"curveCardinalClosed",function(){return C.a});var k=n(140);n.d(e,"curveCardinalOpen",function(){return k.a});var E=n(48);n.d(e,"curveCardinal",function(){return E.a});var M=n(295);n.d(e,"curveCatmullRomClosed",function(){return M.a});var T=n(296);n.d(e,"curveCatmullRomOpen",function(){return T.a});var S=n(74);n.d(e,"curveCatmullRom",function(){return S.a});var N=n(297);n.d(e,"curveLinearClosed",function(){return N.a});var A=n(49);n.d(e,"curveLinear",function(){return A.a});var P=n(298);n.d(e,"curveMonotoneX",function(){return P.a}),n.d(e,"curveMonotoneY",function(){return P.b});var O=n(299);n.d(e,"curveNatural",function(){return O.a});var I=n(300);n.d(e,"curveStep",function(){return I.a}),n.d(e,"curveStepAfter",function(){return I.b}),n.d(e,"curveStepBefore",function(){return I.c});var D=n(312);n.d(e,"stack",function(){return D.a});var R=n(305);n.d(e,"stackOffsetExpand",function(){return R.a});var L=n(304);n.d(e,"stackOffsetDiverging",function(){return L.a});var U=n(36);n.d(e,"stackOffsetNone",function(){return U.a});var F=n(306);n.d(e,"stackOffsetSilhouette",function(){return F.a});var j=n(307);n.d(e,"stackOffsetWiggle",function(){return j.a});var B=n(76);n.d(e,"stackOrderAscending",function(){return B.a});var V=n(308);n.d(e,"stackOrderDescending",function(){return V.a});var W=n(309);n.d(e,"stackOrderInsideOut",function(){return W.a});var z=n(37);n.d(e,"stackOrderNone",function(){return z.a});var H=n(310);n.d(e,"stackOrderReverse",function(){return H.a})},function(t,e,n){"use strict";var r=n(32),i=n(17),o=n(49),a=n(75),u=n(77);e.a=function(){function t(t){var e,i,o,a,u,g=t.length,m=!1,y=new Array(g),_=new Array(g);for(null==h&&(v=d(u=n.i(r.a)())),e=0;e<=g;++e){if(!(e<g&&p(a=t[e],e,t))===m)if(m=!m)i=e,v.areaStart(),v.lineStart();else{for(v.lineEnd(),v.lineStart(),o=e-1;o>=i;--o)v.point(y[o],_[o]);v.lineEnd(),v.areaEnd()}m&&(y[e]=+c(a,e,t),_[e]=+l(a,e,t),v.point(s?+s(a,e,t):y[e],f?+f(a,e,t):_[e]))}if(u)return v=null,u+""||null}function e(){return n.i(a.a)().defined(p).curve(d).context(h)}var c=u.a,s=null,l=n.i(i.a)(0),f=u.b,p=n.i(i.a)(!0),h=null,d=o.a,v=null;return t.x=function(e){return arguments.length?(c="function"==typeof e?e:n.i(i.a)(+e),s=null,t):c},t.x0=function(e){return arguments.length?(c="function"==typeof e?e:n.i(i.a)(+e),t):c},t.x1=function(e){return arguments.length?(s=null==e?null:"function"==typeof e?e:n.i(i.a)(+e),t):s},t.y=function(e){return arguments.length?(l="function"==typeof e?e:n.i(i.a)(+e),f=null,t):l},t.y0=function(e){return arguments.length?(l="function"==typeof e?e:n.i(i.a)(+e),t):l},t.y1=function(e){return arguments.length?(f=null==e?null:"function"==typeof e?e:n.i(i.a)(+e),t):f},t.lineX0=t.lineY0=function(){return e().x(c).y(l)},t.lineY1=function(){return e().x(c).y(f)},t.lineX1=function(){return e().x(s).y(l)},t.defined=function(e){return arguments.length?(p="function"==typeof e?e:n.i(i.a)(!!e),t):p},t.curve=function(e){return arguments.length?(d=e,null!=h&&(v=d(h)),t):d},t.context=function(e){return arguments.length?(null==e?h=v=null:v=d(h=e),t):h},t}},function(t,e,n){"use strict";n.d(e,"a",function(){return r});var r=Array.prototype.slice},function(t,e,n){"use strict";function r(t,e){this._context=t,this._k=(1-e)/6}e.b=r;var i=n(50),o=n(48);r.prototype={areaStart:i.a,areaEnd:i.a,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:n.i(o.c)(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}},e.a=function t(e){function n(t){return new r(t,e)}return n.tension=function(e){return t(+e)},n}(0)},function(t,e,n){"use strict";function r(t,e){this._context=t,this._k=(1-e)/6}e.b=r;var i=n(48);r.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:n.i(i.c)(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}},e.a=function t(e){function n(t){return new r(t,e)}return n.tension=function(e){return t(+e)},n}(0)},function(t,e,n){"use strict";function r(t){this._curve=t}function i(t){function e(e){return new r(t(e))}return e._curve=t,e}n.d(e,"b",function(){return a}),e.a=i;var o=n(49),a=i(o.a);r.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}}},function(t,e,n){"use strict";function r(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(n.i(i.a)(t)):e()._curve},t}e.b=r;var i=n(141),o=n(75);e.a=function(){return r(n.i(o.a)().curve(i.b))}},function(t,e,n){"use strict";e.a=function(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}},function(t,e,n){"use strict";var r=n(35);e.a={draw:function(t,e){var n=Math.sqrt(e/r.b);t.moveTo(n,0),t.arc(0,0,n,0,r.c)}}},function(t,e,n){"use strict";e.a={draw:function(t,e){var n=Math.sqrt(e/5)/2;t.moveTo(-3*n,-n),t.lineTo(-n,-n),t.lineTo(-n,-3*n),t.lineTo(n,-3*n),t.lineTo(n,-n),t.lineTo(3*n,-n),t.lineTo(3*n,n),t.lineTo(n,n),t.lineTo(n,3*n),t.lineTo(-n,3*n),t.lineTo(-n,n),t.lineTo(-3*n,n),t.closePath()}}},function(t,e,n){"use strict";var r=Math.sqrt(1/3),i=2*r;e.a={draw:function(t,e){var n=Math.sqrt(e/i),o=n*r;t.moveTo(0,-n),t.lineTo(o,0),t.lineTo(0,n),t.lineTo(-o,0),t.closePath()}}},function(t,e,n){"use strict";e.a={draw:function(t,e){var n=Math.sqrt(e),r=-n/2;t.rect(r,r,n,n)}}},function(t,e,n){"use strict";var r=n(35),i=Math.sin(r.b/10)/Math.sin(7*r.b/10),o=Math.sin(r.c/10)*i,a=-Math.cos(r.c/10)*i;e.a={draw:function(t,e){var n=Math.sqrt(.8908130915292852*e),i=o*n,u=a*n;t.moveTo(0,-n),t.lineTo(i,u);for(var c=1;c<5;++c){var s=r.c*c/5,l=Math.cos(s),f=Math.sin(s);t.lineTo(f*n,-l*n),t.lineTo(l*i-f*u,f*i+l*u)}t.closePath()}}},function(t,e,n){"use strict";var r=Math.sqrt(3);e.a={draw:function(t,e){var n=-Math.sqrt(e/(3*r));t.moveTo(0,2*n),t.lineTo(-r*n,-n),t.lineTo(r*n,-n),t.closePath()}}},function(t,e,n){"use strict";var r=-.5,i=Math.sqrt(3)/2,o=1/Math.sqrt(12),a=3*(o/2+1);e.a={draw:function(t,e){var n=Math.sqrt(e/a),u=n/2,c=n*o,s=u,l=n*o+n,f=-s,p=l;t.moveTo(u,c),t.lineTo(s,l),t.lineTo(f,p),t.lineTo(r*u-i*c,i*u+r*c),t.lineTo(r*s-i*l,i*s+r*l),t.lineTo(r*f-i*p,i*f+r*p),t.lineTo(r*u+i*c,r*c-i*u),t.lineTo(r*s+i*l,r*l-i*s),t.lineTo(r*f+i*p,r*p-i*f),t.closePath()}}},function(t,e,n){"use strict";function r(t){return t.toISOString()}n.d(e,"b",function(){return o});var i=n(79),o="%Y-%m-%dT%H:%M:%S.%LZ",a=Date.prototype.toISOString?r:n.i(i.d)(o);e.a=a},function(t,e,n){"use strict";function r(t){if(0<=t.y&&t.y<100){var e=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return e.setFullYear(t.y),e}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function i(t){if(0<=t.y&&t.y<100){var e=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return e.setUTCFullYear(t.y),e}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function o(t){return{y:t,m:0,d:1,H:0,M:0,S:0,L:0}}function a(t){function e(t,e){return function(n){var r,i,o,a=[],u=-1,c=0,s=t.length;for(n instanceof Date||(n=new Date(+n));++u<s;)37===t.charCodeAt(u)&&(a.push(t.slice(c,u)),null!=(i=dt[r=t.charAt(++u)])?r=t.charAt(++u):i="e"===r?" ":"0",(o=e[r])&&(r=o(n,i)),a.push(r),c=u+1);return a.push(t.slice(c,u)),a.join("")}}function a(t,e){return function(r){var a,c,s=o(1900),l=u(s,t,r+="",0);if(l!=r.length)return null;if("Q"in s)return new Date(s.Q);if("p"in s&&(s.H=s.H%12+12*s.p),"V"in s){if(s.V<1||s.V>53)return null;"w"in s||(s.w=1),"Z"in s?(a=i(o(s.y)),c=a.getUTCDay(),a=c>4||0===c?ht.a.ceil(a):n.i(ht.a)(a),a=ht.b.offset(a,7*(s.V-1)),s.y=a.getUTCFullYear(),s.m=a.getUTCMonth(),s.d=a.getUTCDate()+(s.w+6)%7):(a=e(o(s.y)),c=a.getDay(),a=c>4||0===c?ht.c.ceil(a):n.i(ht.c)(a),a=ht.d.offset(a,7*(s.V-1)),s.y=a.getFullYear(),s.m=a.getMonth(),s.d=a.getDate()+(s.w+6)%7)}else("W"in s||"U"in s)&&("w"in s||(s.w="u"in s?s.u%7:"W"in s?1:0),c="Z"in s?i(o(s.y)).getUTCDay():e(o(s.y)).getDay(),s.m=0,s.d="W"in s?(s.w+6)%7+7*s.W-(c+5)%7:s.w+7*s.U-(c+6)%7);return"Z"in s?(s.H+=s.Z/100|0,s.M+=s.Z%100,i(s)):e(s)}}function u(t,e,n,r){for(var i,o,a=0,u=e.length,c=n.length;a<u;){if(r>=c)return-1;if(37===(i=e.charCodeAt(a++))){if(i=e.charAt(a++),!(o=Zt[i in dt?e.charAt(a++):i])||(r=o(t,n,r))<0)return-1}else if(i!=n.charCodeAt(r++))return-1}return r}function c(t,e,n){var r=Bt.exec(e.slice(n));return r?(t.p=Vt[r[0].toLowerCase()],n+r[0].length):-1}function vt(t,e,n){var r=Ht.exec(e.slice(n));return r?(t.w=qt[r[0].toLowerCase()],n+r[0].length):-1}function gt(t,e,n){var r=Wt.exec(e.slice(n));return r?(t.w=zt[r[0].toLowerCase()],n+r[0].length):-1}function mt(t,e,n){var r=Gt.exec(e.slice(n));return r?(t.m=$t[r[0].toLowerCase()],n+r[0].length):-1}function yt(t,e,n){var r=Yt.exec(e.slice(n));return r?(t.m=Kt[r[0].toLowerCase()],n+r[0].length):-1}function _t(t,e,n){return u(t,Ot,e,n)}function bt(t,e,n){return u(t,It,e,n)}function xt(t,e,n){return u(t,Dt,e,n)}function wt(t){return Ut[t.getDay()]}function Ct(t){return Lt[t.getDay()]}function kt(t){return jt[t.getMonth()]}function Et(t){return Ft[t.getMonth()]}function Mt(t){return Rt[+(t.getHours()>=12)]}function Tt(t){return Ut[t.getUTCDay()]}function St(t){return Lt[t.getUTCDay()]}function Nt(t){return jt[t.getUTCMonth()]}function At(t){return Ft[t.getUTCMonth()]}function Pt(t){return Rt[+(t.getUTCHours()>=12)]}var Ot=t.dateTime,It=t.date,Dt=t.time,Rt=t.periods,Lt=t.days,Ut=t.shortDays,Ft=t.months,jt=t.shortMonths,Bt=s(Rt),Vt=l(Rt),Wt=s(Lt),zt=l(Lt),Ht=s(Ut),qt=l(Ut),Yt=s(Ft),Kt=l(Ft),Gt=s(jt),$t=l(jt),Xt={a:wt,A:Ct,b:kt,B:Et,c:null,d:A,e:A,f:R,H:P,I:O,j:I,L:D,m:L,M:U,p:Mt,Q:ft,s:pt,S:F,u:j,U:B,V:V,w:W,W:z,x:null,X:null,y:H,Y:q,Z:Y,"%":lt},Qt={a:Tt,A:St,b:Nt,B:At,c:null,d:K,e:K,f:Z,H:G,I:$,j:X,L:Q,m:J,M:tt,p:Pt,Q:ft,s:pt,S:et,u:nt,U:rt,V:it,w:ot,W:at,x:null,X:null,y:ut,Y:ct,Z:st,"%":lt},Zt={a:vt,A:gt,b:mt,B:yt,c:_t,d:b,e:b,f:M,H:w,I:w,j:x,L:E,m:_,M:C,p:c,Q:S,s:N,S:k,u:p,U:h,V:d,w:f,W:v,x:bt,X:xt,y:m,Y:g,Z:y,"%":T};return Xt.x=e(It,Xt),Xt.X=e(Dt,Xt),Xt.c=e(Ot,Xt),Qt.x=e(It,Qt),Qt.X=e(Dt,Qt),Qt.c=e(Ot,Qt),{format:function(t){var n=e(t+="",Xt);return n.toString=function(){return t},n},parse:function(t){var e=a(t+="",r);return e.toString=function(){return t},e},utcFormat:function(t){var n=e(t+="",Qt);return n.toString=function(){return t},n},utcParse:function(t){var e=a(t,i);return e.toString=function(){return t},e}}}function u(t,e,n){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o<n?new Array(n-o+1).join(e)+i:i)}function c(t){return t.replace(mt,"\\$&")}function s(t){return new RegExp("^(?:"+t.map(c).join("|")+")","i")}function l(t){for(var e={},n=-1,r=t.length;++n<r;)e[t[n].toLowerCase()]=n;return e}function f(t,e,n){var r=vt.exec(e.slice(n,n+1));return r?(t.w=+r[0],n+r[0].length):-1}function p(t,e,n){var r=vt.exec(e.slice(n,n+1));return r?(t.u=+r[0],n+r[0].length):-1}function h(t,e,n){var r=vt.exec(e.slice(n,n+2));return r?(t.U=+r[0],n+r[0].length):-1}function d(t,e,n){var r=vt.exec(e.slice(n,n+2));return r?(t.V=+r[0],n+r[0].length):-1}function v(t,e,n){var r=vt.exec(e.slice(n,n+2));return r?(t.W=+r[0],n+r[0].length):-1}function g(t,e,n){var r=vt.exec(e.slice(n,n+4));return r?(t.y=+r[0],n+r[0].length):-1}function m(t,e,n){var r=vt.exec(e.slice(n,n+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),n+r[0].length):-1}function y(t,e,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(n,n+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function _(t,e,n){var r=vt.exec(e.slice(n,n+2));return r?(t.m=r[0]-1,n+r[0].length):-1}function b(t,e,n){var r=vt.exec(e.slice(n,n+2));return r?(t.d=+r[0],n+r[0].length):-1}function x(t,e,n){var r=vt.exec(e.slice(n,n+3));return r?(t.m=0,t.d=+r[0],n+r[0].length):-1}function w(t,e,n){var r=vt.exec(e.slice(n,n+2));return r?(t.H=+r[0],n+r[0].length):-1}function C(t,e,n){var r=vt.exec(e.slice(n,n+2));return r?(t.M=+r[0],n+r[0].length):-1}function k(t,e,n){var r=vt.exec(e.slice(n,n+2));return r?(t.S=+r[0],n+r[0].length):-1}function E(t,e,n){var r=vt.exec(e.slice(n,n+3));return r?(t.L=+r[0],n+r[0].length):-1}function M(t,e,n){var r=vt.exec(e.slice(n,n+6));return r?(t.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function T(t,e,n){var r=gt.exec(e.slice(n,n+1));return r?n+r[0].length:-1}function S(t,e,n){var r=vt.exec(e.slice(n));return r?(t.Q=+r[0],n+r[0].length):-1}function N(t,e,n){var r=vt.exec(e.slice(n));return r?(t.Q=1e3*+r[0],n+r[0].length):-1}function A(t,e){return u(t.getDate(),e,2)}function P(t,e){return u(t.getHours(),e,2)}function O(t,e){return u(t.getHours()%12||12,e,2)}function I(t,e){return u(1+ht.d.count(n.i(ht.e)(t),t),e,3)}function D(t,e){return u(t.getMilliseconds(),e,3)}function R(t,e){return D(t,e)+"000"}function L(t,e){return u(t.getMonth()+1,e,2)}function U(t,e){return u(t.getMinutes(),e,2)}function F(t,e){return u(t.getSeconds(),e,2)}function j(t){var e=t.getDay();return 0===e?7:e}function B(t,e){return u(ht.f.count(n.i(ht.e)(t),t),e,2)}function V(t,e){var r=t.getDay();return t=r>=4||0===r?n.i(ht.g)(t):ht.g.ceil(t),u(ht.g.count(n.i(ht.e)(t),t)+(4===n.i(ht.e)(t).getDay()),e,2)}function W(t){return t.getDay()}function z(t,e){return u(ht.c.count(n.i(ht.e)(t),t),e,2)}function H(t,e){return u(t.getFullYear()%100,e,2)}function q(t,e){return u(t.getFullYear()%1e4,e,4)}function Y(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+u(e/60|0,"0",2)+u(e%60,"0",2)}function K(t,e){return u(t.getUTCDate(),e,2)}function G(t,e){return u(t.getUTCHours(),e,2)}function $(t,e){return u(t.getUTCHours()%12||12,e,2)}function X(t,e){return u(1+ht.b.count(n.i(ht.h)(t),t),e,3)}function Q(t,e){return u(t.getUTCMilliseconds(),e,3)}function Z(t,e){return Q(t,e)+"000"}function J(t,e){return u(t.getUTCMonth()+1,e,2)}function tt(t,e){return u(t.getUTCMinutes(),e,2)}function et(t,e){return u(t.getUTCSeconds(),e,2)}function nt(t){var e=t.getUTCDay();return 0===e?7:e}function rt(t,e){return u(ht.i.count(n.i(ht.h)(t),t),e,2)}function it(t,e){var r=t.getUTCDay();return t=r>=4||0===r?n.i(ht.j)(t):ht.j.ceil(t),u(ht.j.count(n.i(ht.h)(t),t)+(4===n.i(ht.h)(t).getUTCDay()),e,2)}function ot(t){return t.getUTCDay()}function at(t,e){return u(ht.a.count(n.i(ht.h)(t),t),e,2)}function ut(t,e){return u(t.getUTCFullYear()%100,e,2)}function ct(t,e){return u(t.getUTCFullYear()%1e4,e,4)}function st(){return"+0000"}function lt(){return"%"}function ft(t){return+t}function pt(t){return Math.floor(+t/1e3)}e.a=a;var ht=n(80),dt={"-":"",_:" ",0:"0"},vt=/^\s*\d+/,gt=/^%/,mt=/[\\^$*+?|[\]().{}]/g},function(t,e,n){"use strict";var r=n(11),i={listen:function(t,e,n){return t.addEventListener?(t.addEventListener(e,n,!1),{remove:function(){t.removeEventListener(e,n,!1)}}):t.attachEvent?(t.attachEvent("on"+e,n),{remove:function(){t.detachEvent("on"+e,n)}}):void 0},capture:function(t,e,n){return t.addEventListener?(t.addEventListener(e,n,!0),{remove:function(){t.removeEventListener(e,n,!0)}}):{remove:r}},registerDefault:function(){}};t.exports=i},function(t,e,n){"use strict";function r(t){try{t.focus()}catch(t){}}t.exports=r},function(t,e,n){"use strict";function r(t){if(void 0===(t=t||("undefined"!=typeof document?document:void 0)))return null;try{return t.activeElement||t.body}catch(e){return t.body}}t.exports=r},function(t,e){function n(){throw new Error("setTimeout has not been defined")}function r(){throw new Error("clearTimeout has not been defined")}function i(t){if(l===setTimeout)return setTimeout(t,0);if((l===n||!l)&&setTimeout)return l=setTimeout,setTimeout(t,0);try{return l(t,0)}catch(e){try{return l.call(null,t,0)}catch(e){return l.call(this,t,0)}}}function o(t){if(f===clearTimeout)return clearTimeout(t);if((f===r||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(t);try{return f(t)}catch(e){try{return f.call(null,t)}catch(e){return f.call(this,t)}}}function a(){v&&h&&(v=!1,h.length?d=h.concat(d):g=-1,d.length&&u())}function u(){if(!v){var t=i(a);v=!0;for(var e=d.length;e;){for(h=d,d=[];++g<e;)h&&h[g].run();g=-1,e=d.length}h=null,v=!1,o(t)}}function c(t,e){this.fun=t,this.array=e}function s(){}var l,f,p=t.exports={};!function(){try{l="function"==typeof setTimeout?setTimeout:n}catch(t){l=n}try{f="function"==typeof clearTimeout?clearTimeout:r}catch(t){f=r}}();var h,d=[],v=!1,g=-1;p.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];d.push(new c(t,e)),1!==d.length||v||i(u)},c.prototype.run=function(){this.fun.apply(null,this.array)},p.title="browser",p.browser=!0,p.env={},p.argv=[],p.version="",p.versions={},p.on=s,p.addListener=s,p.once=s,p.off=s,p.removeListener=s,p.removeAllListeners=s,p.emit=s,p.prependListener=s,p.prependOnceListener=s,p.listeners=function(t){return[]},p.binding=function(t){throw new Error("process.binding is not supported")},p.cwd=function(){return"/"},p.chdir=function(t){throw new Error("process.chdir is not supported")},p.umask=function(){return 0}},function(t,e,n){"use strict";var r=n(343);t.exports=function(t){return r(t,!1)}},function(t,e,n){"use strict";function r(t,e){return t+e.charAt(0).toUpperCase()+e.substring(1)}var i={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},o=["Webkit","ms","Moz","O"];Object.keys(i).forEach(function(t){o.forEach(function(e){i[r(e,t)]=i[t]})});var a={background:{backgroundAttachment:!0,backgroundColor:!0,backgroundImage:!0,backgroundPositionX:!0,backgroundPositionY:!0,backgroundRepeat:!0},backgroundPosition:{backgroundPositionX:!0,backgroundPositionY:!0},border:{borderWidth:!0,borderStyle:!0,borderColor:!0},borderBottom:{borderBottomWidth:!0,borderBottomStyle:!0,borderBottomColor:!0},borderLeft:{borderLeftWidth:!0,borderLeftStyle:!0,borderLeftColor:!0},borderRight:{borderRightWidth:!0,borderRightStyle:!0,borderRightColor:!0},borderTop:{borderTopWidth:!0,borderTopStyle:!0,borderTopColor:!0},font:{fontStyle:!0,fontVariant:!0,fontWeight:!0,fontSize:!0,lineHeight:!0,fontFamily:!0},outline:{outlineWidth:!0,outlineStyle:!0,outlineColor:!0}},u={isUnitlessNumber:i,shorthandPropertyExpansions:a};t.exports=u},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var i=n(1),o=n(18),a=(n(0),function(){function t(e){r(this,t),this._callbacks=null,this._contexts=null,this._arg=e}return t.prototype.enqueue=function(t,e){this._callbacks=this._callbacks||[],this._callbacks.push(t),this._contexts=this._contexts||[],this._contexts.push(e)},t.prototype.notifyAll=function(){var t=this._callbacks,e=this._contexts,n=this._arg;if(t&&e){t.length!==e.length&&i("24"),this._callbacks=null,this._contexts=null;for(var r=0;r<t.length;r++)t[r].call(e[r],n);t.length=0,e.length=0}},t.prototype.checkpoint=function(){return this._callbacks?this._callbacks.length:0},t.prototype.rollback=function(t){this._callbacks&&this._contexts&&(this._callbacks.length=t,this._contexts.length=t)},t.prototype.reset=function(){this._callbacks=null,this._contexts=null},t.prototype.destructor=function(){this.reset()},t}());t.exports=o.addPoolingTo(a)},function(t,e,n){"use strict";function r(t){return!!s.hasOwnProperty(t)||!c.hasOwnProperty(t)&&(u.test(t)?(s[t]=!0,!0):(c[t]=!0,!1))}function i(t,e){return null==e||t.hasBooleanValue&&!e||t.hasNumericValue&&isNaN(e)||t.hasPositiveNumericValue&&e<1||t.hasOverloadedBooleanValue&&!1===e}var o=n(21),a=(n(4),n(9),n(407)),u=(n(2),new RegExp("^["+o.ATTRIBUTE_NAME_START_CHAR+"]["+o.ATTRIBUTE_NAME_CHAR+"]*$")),c={},s={},l={createMarkupForID:function(t){return o.ID_ATTRIBUTE_NAME+"="+a(t)},setAttributeForID:function(t,e){t.setAttribute(o.ID_ATTRIBUTE_NAME,e)},createMarkupForRoot:function(){return o.ROOT_ATTRIBUTE_NAME+'=""'},setAttributeForRoot:function(t){t.setAttribute(o.ROOT_ATTRIBUTE_NAME,"")},createMarkupForProperty:function(t,e){var n=o.properties.hasOwnProperty(t)?o.properties[t]:null;if(n){if(i(n,e))return"";var r=n.attributeName;return n.hasBooleanValue||n.hasOverloadedBooleanValue&&!0===e?r+'=""':r+"="+a(e)}return o.isCustomAttribute(t)?null==e?"":t+"="+a(e):null},createMarkupForCustomAttribute:function(t,e){return r(t)&&null!=e?t+"="+a(e):""},setValueForProperty:function(t,e,n){var r=o.properties.hasOwnProperty(e)?o.properties[e]:null;if(r){var a=r.mutationMethod;if(a)a(t,n);else{if(i(r,n))return void this.deleteValueForProperty(t,e);if(r.mustUseProperty)t[r.propertyName]=n;else{var u=r.attributeName,c=r.attributeNamespace;c?t.setAttributeNS(c,u,""+n):r.hasBooleanValue||r.hasOverloadedBooleanValue&&!0===n?t.setAttribute(u,""):t.setAttribute(u,""+n)}}}else if(o.isCustomAttribute(e))return void l.setValueForAttribute(t,e,n)},setValueForAttribute:function(t,e,n){if(r(e)){null==n?t.removeAttribute(e):t.setAttribute(e,""+n)}},deleteValueForAttribute:function(t,e){t.removeAttribute(e)},deleteValueForProperty:function(t,e){var n=o.properties.hasOwnProperty(e)?o.properties[e]:null;if(n){var r=n.mutationMethod;if(r)r(t,void 0);else if(n.mustUseProperty){var i=n.propertyName;n.hasBooleanValue?t[i]=!1:t[i]=""}else t.removeAttribute(n.attributeName)}else o.isCustomAttribute(e)&&t.removeAttribute(e)}};t.exports=l},function(t,e,n){"use strict";var r={hasCachedChildNodes:1};t.exports=r},function(t,e,n){"use strict";function r(){if(this._rootNodeID&&this._wrapperState.pendingUpdate){this._wrapperState.pendingUpdate=!1;var t=this._currentElement.props,e=u.getValue(t);null!=e&&i(this,Boolean(t.multiple),e)}}function i(t,e,n){var r,i,o=c.getNodeFromInstance(t).options;if(e){for(r={},i=0;i<n.length;i++)r[""+n[i]]=!0;for(i=0;i<o.length;i++){var a=r.hasOwnProperty(o[i].value);o[i].selected!==a&&(o[i].selected=a)}}else{for(r=""+n,i=0;i<o.length;i++)if(o[i].value===r)return void(o[i].selected=!0);o.length&&(o[0].selected=!0)}}function o(t){var e=this._currentElement.props,n=u.executeOnChange(e,t);return this._rootNodeID&&(this._wrapperState.pendingUpdate=!0),s.asap(r,this),n}var a=n(3),u=n(86),c=n(4),s=n(12),l=(n(2),!1),f={getHostProps:function(t,e){return a({},e,{onChange:t._wrapperState.onChange,value:void 0})},mountWrapper:function(t,e){var n=u.getValue(e);t._wrapperState={pendingUpdate:!1,initialValue:null!=n?n:e.defaultValue,listeners:null,onChange:o.bind(t),wasMultiple:Boolean(e.multiple)},void 0===e.value||void 0===e.defaultValue||l||(l=!0)},getSelectValueContext:function(t){return t._wrapperState.initialValue},postUpdateWrapper:function(t){var e=t._currentElement.props;t._wrapperState.initialValue=void 0;var n=t._wrapperState.wasMultiple;t._wrapperState.wasMultiple=Boolean(e.multiple);var r=u.getValue(e);null!=r?(t._wrapperState.pendingUpdate=!1,i(t,Boolean(e.multiple),r)):n!==Boolean(e.multiple)&&(null!=e.defaultValue?i(t,Boolean(e.multiple),e.defaultValue):i(t,Boolean(e.multiple),e.multiple?[]:""))}};t.exports=f},function(t,e,n){"use strict";var r,i={injectEmptyComponentFactory:function(t){r=t}},o={create:function(t){return r(t)}};o.injection=i,t.exports=o},function(t,e,n){"use strict";var r={logTopLevelRenders:!1};t.exports=r},function(t,e,n){"use strict";function r(t){return u||a("111",t.type),new u(t)}function i(t){return new c(t)}function o(t){return t instanceof c}var a=n(1),u=(n(0),null),c=null,s={injectGenericComponentClass:function(t){u=t},injectTextComponentClass:function(t){c=t}},l={createInternalComponent:r,createInstanceForText:i,isTextComponent:o,injection:s};t.exports=l},function(t,e,n){"use strict";function r(t){return o(document.documentElement,t)}var i=n(367),o=n(331),a=n(154),u=n(155),c={hasSelectionCapabilities:function(t){var e=t&&t.nodeName&&t.nodeName.toLowerCase();return e&&("input"===e&&"text"===t.type||"textarea"===e||"true"===t.contentEditable)},getSelectionInformation:function(){var t=u();return{focusedElem:t,selectionRange:c.hasSelectionCapabilities(t)?c.getSelection(t):null}},restoreSelection:function(t){var e=u(),n=t.focusedElem,i=t.selectionRange;e!==n&&r(n)&&(c.hasSelectionCapabilities(n)&&c.setSelection(n,i),a(n))},getSelection:function(t){var e;if("selectionStart"in t)e={start:t.selectionStart,end:t.selectionEnd};else if(document.selection&&t.nodeName&&"input"===t.nodeName.toLowerCase()){var n=document.selection.createRange();n.parentElement()===t&&(e={start:-n.moveStart("character",-t.value.length),end:-n.moveEnd("character",-t.value.length)})}else e=i.getOffsets(t);return e||{start:0,end:0}},setSelection:function(t,e){var n=e.start,r=e.end;if(void 0===r&&(r=n),"selectionStart"in t)t.selectionStart=n,t.selectionEnd=Math.min(r,t.value.length);else if(document.selection&&t.nodeName&&"input"===t.nodeName.toLowerCase()){var o=t.createTextRange();o.collapse(!0),o.moveStart("character",n),o.moveEnd("character",r-n),o.select()}else i.setOffsets(t,e)}};t.exports=c},function(t,e,n){"use strict";function r(t,e){for(var n=Math.min(t.length,e.length),r=0;r<n;r++)if(t.charAt(r)!==e.charAt(r))return r;return t.length===e.length?-1:n}function i(t){return t?t.nodeType===D?t.documentElement:t.firstChild:null}function o(t){return t.getAttribute&&t.getAttribute(P)||""}function a(t,e,n,r,i){var o;if(x.logTopLevelRenders){var a=t._currentElement.props.child,u=a.type;o="React mount: "+("string"==typeof u?u:u.displayName||u.name),console.time(o)}var c=k.mountComponent(t,n,null,_(t,e),i,0);o&&console.timeEnd(o),t._renderedComponent._topLevelWrapper=t,j._mountImageIntoNode(c,e,t,r,n)}function u(t,e,n,r){var i=M.ReactReconcileTransaction.getPooled(!n&&b.useCreateElement);i.perform(a,null,t,e,i,n,r),M.ReactReconcileTransaction.release(i)}function c(t,e,n){for(k.unmountComponent(t,n),e.nodeType===D&&(e=e.documentElement);e.lastChild;)e.removeChild(e.lastChild)}function s(t){var e=i(t);if(e){var n=y.getInstanceFromNode(e);return!(!n||!n._hostParent)}}function l(t){return!(!t||t.nodeType!==I&&t.nodeType!==D&&t.nodeType!==R)}function f(t){var e=i(t),n=e&&y.getInstanceFromNode(e);return n&&!n._hostParent?n:null}function p(t){var e=f(t);return e?e._hostContainerInfo._topLevelWrapper:null}var h=n(1),d=n(20),v=n(21),g=n(26),m=n(53),y=(n(15),n(4)),_=n(361),b=n(363),x=n(164),w=n(39),C=(n(9),n(377)),k=n(24),E=n(89),M=n(12),T=n(51),S=n(174),N=(n(0),n(57)),A=n(96),P=(n(2),v.ID_ATTRIBUTE_NAME),O=v.ROOT_ATTRIBUTE_NAME,I=1,D=9,R=11,L={},U=1,F=function(){this.rootID=U++};F.prototype.isReactComponent={},F.prototype.render=function(){return this.props.child},F.isReactTopLevelWrapper=!0;var j={TopLevelWrapper:F,_instancesByReactRootID:L,scrollMonitor:function(t,e){e()},_updateRootComponent:function(t,e,n,r,i){return j.scrollMonitor(r,function(){E.enqueueElementInternal(t,e,n),i&&E.enqueueCallbackInternal(t,i)}),t},_renderNewRootComponent:function(t,e,n,r){l(e)||h("37"),m.ensureScrollValueMonitoring();var i=S(t,!1);M.batchedUpdates(u,i,e,n,r);var o=i._instance.rootID;return L[o]=i,i},renderSubtreeIntoContainer:function(t,e,n,r){return null!=t&&w.has(t)||h("38"),j._renderSubtreeIntoContainer(t,e,n,r)},_renderSubtreeIntoContainer:function(t,e,n,r){E.validateCallback(r,"ReactDOM.render"),g.isValidElement(e)||h("39","string"==typeof e?" Instead of passing a string like 'div', pass React.createElement('div') or <div />.":"function"==typeof e?" Instead of passing a class like Foo, pass React.createElement(Foo) or <Foo />.":null!=e&&void 0!==e.props?" This may be caused by unintentionally loading two independent copies of React.":"");var a,u=g.createElement(F,{child:e});if(t){var c=w.get(t);a=c._processChildContext(c._context)}else a=T;var l=p(n);if(l){var f=l._currentElement,d=f.props.child;if(A(d,e)){var v=l._renderedComponent.getPublicInstance(),m=r&&function(){r.call(v)};return j._updateRootComponent(l,u,a,n,m),v}j.unmountComponentAtNode(n)}var y=i(n),_=y&&!!o(y),b=s(n),x=_&&!l&&!b,C=j._renderNewRootComponent(u,n,x,a)._renderedComponent.getPublicInstance();return r&&r.call(C),C},render:function(t,e,n){return j._renderSubtreeIntoContainer(null,t,e,n)},unmountComponentAtNode:function(t){l(t)||h("40");var e=p(t);if(!e){s(t),1===t.nodeType&&t.hasAttribute(O);return!1}return delete L[e._instance.rootID],M.batchedUpdates(c,e,t,!1),!0},_mountImageIntoNode:function(t,e,n,o,a){if(l(e)||h("41"),o){var u=i(e);if(C.canReuseMarkup(t,u))return void y.precacheNode(n,u);var c=u.getAttribute(C.CHECKSUM_ATTR_NAME);u.removeAttribute(C.CHECKSUM_ATTR_NAME);var s=u.outerHTML;u.setAttribute(C.CHECKSUM_ATTR_NAME,c);var f=t,p=r(f,s),v=" (client) "+f.substring(p-20,p+20)+"\n (server) "+s.substring(p-20,p+20);e.nodeType===D&&h("42",v)}if(e.nodeType===D&&h("43"),a.useCreateElement){for(;e.lastChild;)e.removeChild(e.lastChild);d.insertTreeBefore(e,t,null)}else N(e,t),y.precacheNode(n,e.firstChild)}};t.exports=j},function(t,e,n){"use strict";var r=n(1),i=n(26),o=(n(0),{HOST:0,COMPOSITE:1,EMPTY:2,getType:function(t){return null===t||!1===t?o.EMPTY:i.isValidElement(t)?"function"==typeof t.type?o.COMPOSITE:o.HOST:void r("26",t)}});t.exports=o},function(t,e,n){"use strict";function r(t,e){return null==e&&i("30"),null==t?e:Array.isArray(t)?Array.isArray(e)?(t.push.apply(t,e),t):(t.push(e),t):Array.isArray(e)?[t].concat(e):[t,e]}var i=n(1);n(0);t.exports=r},function(t,e,n){"use strict";function r(t,e,n){Array.isArray(t)?t.forEach(e,n):t&&e.call(n,t)}t.exports=r},function(t,e,n){"use strict";function r(t){for(var e;(e=t._renderedNodeType)===i.COMPOSITE;)t=t._renderedComponent;return e===i.HOST?t._renderedComponent:e===i.EMPTY?null:void 0}var i=n(168);t.exports=r},function(t,e,n){"use strict";function r(){return!o&&i.canUseDOM&&(o="textContent"in document.documentElement?"textContent":"innerText"),o}var i=n(6),o=null;t.exports=r},function(t,e,n){"use strict";function r(t){var e=t.type,n=t.nodeName;return n&&"input"===n.toLowerCase()&&("checkbox"===e||"radio"===e)}function i(t){return t._wrapperState.valueTracker}function o(t,e){t._wrapperState.valueTracker=e}function a(t){t._wrapperState.valueTracker=null}function u(t){var e;return t&&(e=r(t)?""+t.checked:t.value),e}var c=n(4),s={_getTrackerFromNode:function(t){return i(c.getInstanceFromNode(t))},track:function(t){if(!i(t)){var e=c.getNodeFromInstance(t),n=r(e)?"checked":"value",u=Object.getOwnPropertyDescriptor(e.constructor.prototype,n),s=""+e[n];e.hasOwnProperty(n)||"function"!=typeof u.get||"function"!=typeof u.set||(Object.defineProperty(e,n,{enumerable:u.enumerable,configurable:!0,get:function(){return u.get.call(this)},set:function(t){s=""+t,u.set.call(this,t)}}),o(t,{getValue:function(){return s},setValue:function(t){s=""+t},stopTracking:function(){a(t),delete e[n]}}))}},updateValueIfChanged:function(t){if(!t)return!1;var e=i(t);if(!e)return s.track(t),!0;var n=e.getValue(),r=u(c.getNodeFromInstance(t));return r!==n&&(e.setValue(r),!0)},stopTracking:function(t){var e=i(t);e&&e.stopTracking()}};t.exports=s},function(t,e,n){"use strict";function r(t){if(t){var e=t.getName();if(e)return" Check the render method of `"+e+"`."}return""}function i(t){return"function"==typeof t&&void 0!==t.prototype&&"function"==typeof t.prototype.mountComponent&&"function"==typeof t.prototype.receiveComponent}function o(t,e){var n;if(null===t||!1===t)n=s.create(o);else if("object"==typeof t){var u=t,c=u.type;if("function"!=typeof c&&"string"!=typeof c){var p="";p+=r(u._owner),a("130",null==c?c:typeof c,p)}"string"==typeof u.type?n=l.createInternalComponent(u):i(u.type)?(n=new u.type(u),n.getHostNode||(n.getHostNode=n.getNativeNode)):n=new f(u)}else"string"==typeof t||"number"==typeof t?n=l.createInstanceForText(t):a("131",typeof t);return n._mountIndex=0,n._mountImage=null,n}var a=n(1),u=n(3),c=n(358),s=n(163),l=n(165),f=(n(420),n(0),n(2),function(t){this.construct(t)});u(f.prototype,c,{_instantiateReactComponent:o}),t.exports=o},function(t,e,n){"use strict";function r(t){var e=t&&t.nodeName&&t.nodeName.toLowerCase();return"input"===e?!!i[t.type]:"textarea"===e}var i={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};t.exports=r},function(t,e,n){"use strict";var r=n(6),i=n(56),o=n(57),a=function(t,e){if(e){var n=t.firstChild;if(n&&n===t.lastChild&&3===n.nodeType)return void(n.nodeValue=e)}t.textContent=e};r.canUseDOM&&("textContent"in document.documentElement||(a=function(t,e){if(3===t.nodeType)return void(t.nodeValue=e);o(t,i(e))})),t.exports=a},function(t,e,n){"use strict";function r(t,e){return t&&"object"==typeof t&&null!=t.key?s.escape(t.key):e.toString(36)}function i(t,e,n,o){var p=typeof t;if("undefined"!==p&&"boolean"!==p||(t=null),null===t||"string"===p||"number"===p||"object"===p&&t.$$typeof===u)return n(o,t,""===e?l+r(t,0):e),1;var h,d,v=0,g=""===e?l:e+f;if(Array.isArray(t))for(var m=0;m<t.length;m++)h=t[m],d=g+r(h,m),v+=i(h,d,n,o);else{var y=c(t);if(y){var _,b=y.call(t);if(y!==t.entries)for(var x=0;!(_=b.next()).done;)h=_.value,d=g+r(h,x++),v+=i(h,d,n,o);else for(;!(_=b.next()).done;){var w=_.value;w&&(h=w[1],d=g+s.escape(w[0])+f+r(h,0),v+=i(h,d,n,o))}}else if("object"===p){var C="",k=String(t);a("31","[object Object]"===k?"object with keys {"+Object.keys(t).join(", ")+"}":k,C)}}return v}function o(t,e,n){return null==t?0:i(t,"",e,n)}var a=n(1),u=(n(15),n(373)),c=n(404),s=(n(0),n(85)),l=(n(2),"."),f=":";t.exports=o},function(t,e,n){"use strict";function r(t,e,n){this.props=t,this.context=e,this.refs=s,this.updater=n||c}function i(t,e,n){this.props=t,this.context=e,this.refs=s,this.updater=n||c}function o(){}var a=n(40),u=n(3),c=n(181),s=(n(182),n(51));n(0),n(421);r.prototype.isReactComponent={},r.prototype.setState=function(t,e){"object"!=typeof t&&"function"!=typeof t&&null!=t&&a("85"),this.updater.enqueueSetState(this,t),e&&this.updater.enqueueCallback(this,e,"setState")},r.prototype.forceUpdate=function(t){this.updater.enqueueForceUpdate(this),t&&this.updater.enqueueCallback(this,t,"forceUpdate")};o.prototype=r.prototype,i.prototype=new o,i.prototype.constructor=i,u(i.prototype,r.prototype),i.prototype.isPureReactComponent=!0,t.exports={Component:r,PureComponent:i}},function(t,e,n){"use strict";function r(t){var e=Function.prototype.toString,n=Object.prototype.hasOwnProperty,r=RegExp("^"+e.call(n).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");try{var i=e.call(t);return r.test(i)}catch(t){return!1}}function i(t){var e=s(t);if(e){var n=e.childIDs;l(t),n.forEach(i)}}function o(t,e,n){return"\n in "+(t||"Unknown")+(e?" (at "+e.fileName.replace(/^.*[\\\/]/,"")+":"+e.lineNumber+")":n?" (created by "+n+")":"")}function a(t){return null==t?"#empty":"string"==typeof t||"number"==typeof t?"#text":"string"==typeof t.type?t.type:t.type.displayName||t.type.name||"Unknown"}function u(t){var e,n=E.getDisplayName(t),r=E.getElement(t),i=E.getOwnerID(t);return i&&(e=E.getDisplayName(i)),o(n,r&&r._source,e)}var c,s,l,f,p,h,d,v=n(40),g=n(15),m=(n(0),n(2),"function"==typeof Array.from&&"function"==typeof Map&&r(Map)&&null!=Map.prototype&&"function"==typeof Map.prototype.keys&&r(Map.prototype.keys)&&"function"==typeof Set&&r(Set)&&null!=Set.prototype&&"function"==typeof Set.prototype.keys&&r(Set.prototype.keys));if(m){var y=new Map,_=new Set;c=function(t,e){y.set(t,e)},s=function(t){return y.get(t)},l=function(t){y.delete(t)},f=function(){return Array.from(y.keys())},p=function(t){_.add(t)},h=function(t){_.delete(t)},d=function(){return Array.from(_.keys())}}else{var b={},x={},w=function(t){return"."+t},C=function(t){return parseInt(t.substr(1),10)};c=function(t,e){var n=w(t);b[n]=e},s=function(t){var e=w(t);return b[e]},l=function(t){var e=w(t);delete b[e]},f=function(){return Object.keys(b).map(C)},p=function(t){var e=w(t);x[e]=!0},h=function(t){var e=w(t);delete x[e]},d=function(){return Object.keys(x).map(C)}}var k=[],E={onSetChildren:function(t,e){var n=s(t);n||v("144"),n.childIDs=e;for(var r=0;r<e.length;r++){var i=e[r],o=s(i);o||v("140"),null==o.childIDs&&"object"==typeof o.element&&null!=o.element&&v("141"),o.isMounted||v("71"),null==o.parentID&&(o.parentID=t),o.parentID!==t&&v("142",i,o.parentID,t)}},onBeforeMountComponent:function(t,e,n){c(t,{element:e,parentID:n,text:null,childIDs:[],isMounted:!1,updateCount:0})},onBeforeUpdateComponent:function(t,e){var n=s(t);n&&n.isMounted&&(n.element=e)},onMountComponent:function(t){var e=s(t);e||v("144"),e.isMounted=!0,0===e.parentID&&p(t)},onUpdateComponent:function(t){var e=s(t);e&&e.isMounted&&e.updateCount++},onUnmountComponent:function(t){var e=s(t);if(e){e.isMounted=!1;0===e.parentID&&h(t)}k.push(t)},purgeUnmountedComponents:function(){if(!E._preventPurging){for(var t=0;t<k.length;t++){i(k[t])}k.length=0}},isMounted:function(t){var e=s(t);return!!e&&e.isMounted},getCurrentStackAddendum:function(t){var e="";if(t){var n=a(t),r=t._owner;e+=o(n,t._source,r&&r.getName())}var i=g.current,u=i&&i._debugID;return e+=E.getStackAddendumByID(u)},getStackAddendumByID:function(t){for(var e="";t;)e+=u(t),t=E.getParentID(t);return e},getChildIDs:function(t){var e=s(t);return e?e.childIDs:[]},getDisplayName:function(t){var e=E.getElement(t);return e?a(e):null},getElement:function(t){var e=s(t);return e?e.element:null},getOwnerID:function(t){var e=E.getElement(t);return e&&e._owner?e._owner._debugID:null},getParentID:function(t){var e=s(t);return e?e.parentID:null},getSource:function(t){var e=s(t),n=e?e.element:null;return null!=n?n._source:null},getText:function(t){var e=E.getElement(t);return"string"==typeof e?e:"number"==typeof e?""+e:null},getUpdateCount:function(t){var e=s(t);return e?e.updateCount:0},getRootIDs:d,getRegisteredIDs:f,pushNonStandardWarningStack:function(t,e){if("function"==typeof console.reactStack){var n=[],r=g.current,i=r&&r._debugID;try{for(t&&n.push({name:i?E.getDisplayName(i):null,fileName:e?e.fileName:null,lineNumber:e?e.lineNumber:null});i;){var o=E.getElement(i),a=E.getParentID(i),u=E.getOwnerID(i),c=u?E.getDisplayName(u):null,s=o&&o._source;n.push({name:c,fileName:s?s.fileName:null,lineNumber:s?s.lineNumber:null}),i=a}}catch(t){}console.reactStack(n)}},popNonStandardWarningStack:function(){"function"==typeof console.reactStackEnd&&console.reactStackEnd()}};t.exports=E},function(t,e,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;t.exports=r},function(t,e,n){"use strict";var r=(n(2),{isMounted:function(t){return!1},enqueueCallback:function(t,e){},enqueueForceUpdate:function(t){},enqueueReplaceState:function(t,e){},enqueueSetState:function(t,e){}});t.exports=r},function(t,e,n){"use strict";var r=!1;t.exports=r},,function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=n(41),l=r(s),f=n(129),p=n(66),h=(n(7),n(29)),d=n(78),v=n(112),g=n(136),m=n(10),y=n(38),_=n(58),b=r(_),x=function(t){function e(){i(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return window.lastAdditiveForceArrayVisualizer=t,t.topOffset=28,t.leftOffset=80,t.height=350,t.effectFormat=(0,h.format)(".2"),t.redraw=(0,y.debounce)(function(){return t.draw()},200),t}return a(e,t),c(e,[{key:"componentDidMount",value:function(){var t=this;this.mainGroup=this.svg.append("g"),this.onTopGroup=this.svg.append("g"),this.xaxisElement=this.onTopGroup.append("g").attr("transform","translate(0,35)").attr("class","force-bar-array-xaxis"),this.yaxisElement=this.onTopGroup.append("g").attr("transform","translate(0,35)").attr("class","force-bar-array-yaxis"),this.hoverGroup1=this.svg.append("g"),this.hoverGroup2=this.svg.append("g"),this.baseValueTitle=this.svg.append("text"),this.hoverLine=this.svg.append("line"),this.hoverxOutline=this.svg.append("text").attr("text-anchor","middle").attr("font-weight","bold").attr("fill","#fff").attr("stroke","#fff").attr("stroke-width","6").attr("font-size","12px"),this.hoverx=this.svg.append("text").attr("text-anchor","middle").attr("font-weight","bold").attr("fill","#000").attr("font-size","12px"),this.hoverxTitle=this.svg.append("text").attr("text-anchor","middle").attr("opacity",.6).attr("font-size","12px"),this.hoveryOutline=this.svg.append("text").attr("text-anchor","end").attr("font-weight","bold").attr("fill","#fff").attr("stroke","#fff").attr("stroke-width","6").attr("font-size","12px"),this.hovery=this.svg.append("text").attr("text-anchor","end").attr("font-weight","bold").attr("fill","#000").attr("font-size","12px"),this.xlabel=this.wrapper.select(".additive-force-array-xlabel"),this.ylabel=this.wrapper.select(".additive-force-array-ylabel");var e=void 0;"string"==typeof this.props.plot_cmap?this.props.plot_cmap in b.default.colors?e=b.default.colors[this.props.plot_cmap]:(console.log("Invalid color map name, reverting to default."),e=b.default.colors.RdBu):Array.isArray(this.props.plot_cmap)&&(e=this.props.plot_cmap),this.colors=e.map(function(t){return(0,m.hsl)(t)}),this.brighterColors=[1.45,1.6].map(function(e,n){return t.colors[n].brighter(e)});var n=(0,h.format)(",.4");if(null!=this.props.ordering_keys&&null!=this.props.ordering_keys_time_format){var r=function(t){return"object"==(void 0===t?"undefined":u(t))?this.formatTime(t):n(t)};this.parseTime=(0,d.timeParse)(this.props.ordering_keys_time_format),this.formatTime=(0,d.timeFormat)(this.props.ordering_keys_time_format),this.xtickFormat=r}else this.parseTime=null,this.formatTime=null,this.xtickFormat=n;this.xscale=(0,p.scaleLinear)(),this.xaxis=(0,v.axisBottom)().scale(this.xscale).tickSizeInner(4).tickSizeOuter(0).tickFormat(function(e){return t.xtickFormat(e)}).tickPadding(-18),this.ytickFormat=n,this.yscale=(0,p.scaleLinear)(),this.yaxis=(0,v.axisLeft)().scale(this.yscale).tickSizeInner(4).tickSizeOuter(0).tickFormat(function(e){return t.ytickFormat(t.invLinkFunction(e))}).tickPadding(2),this.xlabel.node().onchange=function(){return t.internalDraw()},this.ylabel.node().onchange=function(){return t.internalDraw()},this.svg.on("mousemove",function(e){return t.mouseMoved(e)}),this.svg.on("click",function(e){return alert("This original index of the sample you clicked is "+t.nearestExpIndex)}),this.svg.on("mouseout",function(e){return t.mouseOut(e)}),window.addEventListener("resize",this.redraw),window.setTimeout(this.redraw,50)}},{key:"componentDidUpdate",value:function(){this.draw()}},{key:"mouseOut",value:function(){this.hoverLine.attr("display","none"),this.hoverx.attr("display","none"),this.hoverxOutline.attr("display","none"),this.hoverxTitle.attr("display","none"),this.hovery.attr("display","none"),this.hoveryOutline.attr("display","none"),this.hoverGroup1.attr("display","none"),this.hoverGroup2.attr("display","none")}},{key:"mouseMoved",value:function(t){var e=this,n=void 0,r=void 0;this.hoverLine.attr("display",""),this.hoverx.attr("display",""),this.hoverxOutline.attr("display",""),this.hoverxTitle.attr("display",""),this.hovery.attr("display",""),this.hoveryOutline.attr("display",""),this.hoverGroup1.attr("display",""),this.hoverGroup2.attr("display","");var i=(0,f.mouse)(this.svg.node())[0];if(this.props.explanations){for(n=0;n<this.props.explanations.length;++n)(!r||Math.abs(r.xmapScaled-i)>Math.abs(this.props.explanations[n].xmapScaled-i))&&(r=this.props.explanations[n],this.nearestExpIndex=n);this.hoverLine.attr("x1",r.xmapScaled).attr("x2",r.xmapScaled).attr("y1",0+this.topOffset).attr("y2",this.height),this.hoverx.attr("x",r.xmapScaled).attr("y",this.topOffset-5).text(this.xtickFormat(r.xmap)),this.hoverxOutline.attr("x",r.xmapScaled).attr("y",this.topOffset-5).text(this.xtickFormat(r.xmap)),this.hoverxTitle.attr("x",r.xmapScaled).attr("y",this.topOffset-18).text(r.count>1?r.count+" averaged samples":""),this.hovery.attr("x",this.leftOffset-6).attr("y",r.joinPointy).text(this.ytickFormat(this.invLinkFunction(r.joinPoint))),this.hoveryOutline.attr("x",this.leftOffset-6).attr("y",r.joinPointy).text(this.ytickFormat(this.invLinkFunction(r.joinPoint)));for(var o=(this.props.featureNames.length,[]),a=void 0,u=void 0,c=this.currPosOrderedFeatures.length-1;c>=0;--c){var s=this.currPosOrderedFeatures[c],l=r.features[s];u=5+(l.posyTop+l.posyBottom)/2,(!a||u-a>=15)&&l.posyTop-l.posyBottom>=6&&(o.push(l),a=u)}var p=[];a=void 0;var h=!0,d=!1,v=void 0;try{for(var g,m=this.currNegOrderedFeatures[Symbol.iterator]();!(h=(g=m.next()).done);h=!0){var y=g.value,_=r.features[y];u=5+(_.negyTop+_.negyBottom)/2,(!a||a-u>=15)&&_.negyTop-_.negyBottom>=6&&(p.push(_),a=u)}}catch(t){d=!0,v=t}finally{try{!h&&m.return&&m.return()}finally{if(d)throw v}}var b=function(t){var n="";return null!==t.value&&void 0!==t.value&&(n=" = "+(isNaN(t.value)?t.value:e.ytickFormat(t.value))),r.count>1?"mean("+e.props.featureNames[t.ind]+")"+n:e.props.featureNames[t.ind]+n},x=this.hoverGroup1.selectAll(".pos-values").data(o);x.enter().append("text").attr("class","pos-values").merge(x).attr("x",r.xmapScaled+5).attr("y",function(t){return 4+(t.posyTop+t.posyBottom)/2}).attr("text-anchor","start").attr("font-size",12).attr("stroke","#fff").attr("fill","#fff").attr("stroke-width","4").attr("stroke-linejoin","round").attr("opacity",1).text(b),x.exit().remove();var w=this.hoverGroup2.selectAll(".pos-values").data(o);w.enter().append("text").attr("class","pos-values").merge(w).attr("x",r.xmapScaled+5).attr("y",function(t){return 4+(t.posyTop+t.posyBottom)/2}).attr("text-anchor","start").attr("font-size",12).attr("fill",this.colors[0]).text(b),w.exit().remove();var C=this.hoverGroup1.selectAll(".neg-values").data(p);C.enter().append("text").attr("class","neg-values").merge(C).attr("x",r.xmapScaled+5).attr("y",function(t){return 4+(t.negyTop+t.negyBottom)/2}).attr("text-anchor","start").attr("font-size",12).attr("stroke","#fff").attr("fill","#fff").attr("stroke-width","4").attr("stroke-linejoin","round").attr("opacity",1).text(b),C.exit().remove();var k=this.hoverGroup2.selectAll(".neg-values").data(p);k.enter().append("text").attr("class","neg-values").merge(k).attr("x",r.xmapScaled+5).attr("y",function(t){return 4+(t.negyTop+t.negyBottom)/2}).attr("text-anchor","start").attr("font-size",12).attr("fill",this.colors[1]).text(b),k.exit().remove()}}},{key:"draw",value:function(){var t=this;if(this.props.explanations&&0!==this.props.explanations.length){(0,y.each)(this.props.explanations,function(t,e){return t.origInd=e});var e={},n={},r={},i=!0,o=!1,a=void 0;try{for(var u,c=this.props.explanations[Symbol.iterator]();!(i=(u=c.next()).done);i=!0){var s=u.value;for(var l in s.features)void 0===e[l]&&(e[l]=0,n[l]=0,r[l]=0),s.features[l].effect>0?e[l]+=s.features[l].effect:n[l]-=s.features[l].effect,null!==s.features[l].value&&void 0!==s.features[l].value&&(r[l]+=1)}}catch(t){o=!0,a=t}finally{try{!i&&c.return&&c.return()}finally{if(o)throw a}}this.usedFeatures=(0,y.sortBy)((0,y.keys)(e),function(t){return-(e[t]+n[t])}),console.log("found ",this.usedFeatures.length," used features"),this.posOrderedFeatures=(0,y.sortBy)(this.usedFeatures,function(t){return e[t]}),this.negOrderedFeatures=(0,y.sortBy)(this.usedFeatures,function(t){return-n[t]}),this.singleValueFeatures=(0,y.filter)(this.usedFeatures,function(t){return r[t]>0});var f=["sample order by similarity","sample order by output value","original sample ordering"].concat(this.singleValueFeatures.map(function(e){return t.props.featureNames[e]}));null!=this.props.ordering_keys&&f.unshift("sample order by key");var p=this.xlabel.selectAll("option").data(f);p.enter().append("option").merge(p).attr("value",function(t){return t}).text(function(t){return t}),p.exit().remove();var h=this.props.outNames[0]?this.props.outNames[0]:"model output value";f=(0,y.map)(this.usedFeatures,function(e){return[t.props.featureNames[e],t.props.featureNames[e]+" effects"]}),f.unshift(["model output value",h]);var d=this.ylabel.selectAll("option").data(f);d.enter().append("option").merge(d).attr("value",function(t){return t[0]}).text(function(t){return t[1]}),d.exit().remove(),this.ylabel.style("top",(this.height-10-this.topOffset)/2+this.topOffset+"px").style("left",10-this.ylabel.node().offsetWidth/2+"px"),this.internalDraw()}}},{key:"internalDraw",value:function(){var t=this,e=!0,n=!1,r=void 0;try{for(var i,o=this.props.explanations[Symbol.iterator]();!(e=(i=o.next()).done);e=!0){var a=i.value,u=!0,c=!1,s=void 0;try{for(var l,f=this.usedFeatures[Symbol.iterator]();!(u=(l=f.next()).done);u=!0){var h=l.value;a.features.hasOwnProperty(h)||(a.features[h]={effect:0,value:0}),a.features[h].ind=h}}catch(t){c=!0,s=t}finally{try{!u&&f.return&&f.return()}finally{if(c)throw s}}}}catch(t){n=!0,r=t}finally{try{!e&&o.return&&o.return()}finally{if(n)throw r}}var d=void 0,v=this.xlabel.node().value,m="sample order by key"===v&&null!=this.props.ordering_keys_time_format;if(this.xscale=m?(0,p.scaleTime)():(0,p.scaleLinear)(),this.xaxis.scale(this.xscale),"sample order by similarity"===v)d=(0,y.sortBy)(this.props.explanations,function(t){return t.simIndex}),(0,y.each)(d,function(t,e){return t.xmap=e});else if("sample order by output value"===v)d=(0,y.sortBy)(this.props.explanations,function(t){return-t.outValue}),(0,y.each)(d,function(t,e){return t.xmap=e});else if("original sample ordering"===v)d=(0,y.sortBy)(this.props.explanations,function(t){return t.origInd}),(0,y.each)(d,function(t,e){return t.xmap=e});else if("sample order by key"===v)d=this.props.explanations,m?(0,y.each)(d,function(e,n){return e.xmap=t.parseTime(t.props.ordering_keys[n])}):(0,y.each)(d,function(e,n){return e.xmap=t.props.ordering_keys[n]}),d=(0,y.sortBy)(d,function(t){return t.xmap});else{var _=(0,y.findKey)(this.props.featureNames,function(t){return t===v});(0,y.each)(this.props.explanations,function(t,e){return t.xmap=t.features[_].value});var b=(0,y.sortBy)(this.props.explanations,function(t){return t.xmap}),x=(0,y.map)(b,function(t){return t.xmap});if("string"==typeof x[0])return void alert("Ordering by category names is not yet supported.");var w=(0,y.min)(x),C=(0,y.max)(x),k=(C-w)/100;d=[];for(var E=void 0,M=void 0,T=0;T<b.length;++T){var S=b[T];if(E&&!M&&S.xmap-E.xmap<=k||M&&S.xmap-M.xmap<=k){M||(M=(0,y.cloneDeep)(E),M.count=1);var N=!0,A=!1,P=void 0;try{for(var O,I=this.usedFeatures[Symbol.iterator]();!(N=(O=I.next()).done);N=!0){var D=O.value;M.features[D].effect+=S.features[D].effect,M.features[D].value+=S.features[D].value}}catch(t){A=!0,P=t}finally{try{!N&&I.return&&I.return()}finally{if(A)throw P}}M.count+=1}else if(E)if(M){var R=!0,L=!1,U=void 0;try{for(var F,j=this.usedFeatures[Symbol.iterator]();!(R=(F=j.next()).done);R=!0){var B=F.value;M.features[B].effect/=M.count,M.features[B].value/=M.count}}catch(t){L=!0,U=t}finally{try{!R&&j.return&&j.return()}finally{if(L)throw U}}d.push(M),M=void 0}else d.push(E);E=S}E.xmap-d[d.length-1].xmap>k&&d.push(E)}this.currUsedFeatures=this.usedFeatures,this.currPosOrderedFeatures=this.posOrderedFeatures,this.currNegOrderedFeatures=this.negOrderedFeatures;var V=this.ylabel.node().value;if("model output value"!==V){d=(0,y.cloneDeep)(d);for(var W=(0,y.findKey)(this.props.featureNames,function(t){return t===V}),z=0;z<d.length;++z){var H=d[z].features[W];d[z].features={},d[z].features[W]=H}this.currUsedFeatures=[W],this.currPosOrderedFeatures=[W],this.currNegOrderedFeatures=[W]}this.currExplanations=d,"identity"===this.props.link?this.invLinkFunction=function(e){return t.props.baseValue+e}:"logit"===this.props.link?this.invLinkFunction=function(e){return 1/(1+Math.exp(-(t.props.baseValue+e)))}:console.log("ERROR: Unrecognized link function: ",this.props.link),this.predValues=(0,y.map)(d,function(t){return(0,y.sum)((0,y.map)(t.features,function(t){return t.effect}))});var q=this.wrapper.node().offsetWidth;if(0==q)return setTimeout(function(){return t.draw(d)},500);this.svg.style("height",this.height+"px"),this.svg.style("width",q+"px");var Y=(0,y.map)(d,function(t){return t.xmap});this.xscale.domain([(0,y.min)(Y),(0,y.max)(Y)]).range([this.leftOffset,q]).clamp(!0),this.xaxisElement.attr("transform","translate(0,"+this.topOffset+")").call(this.xaxis);for(var K=0;K<this.currExplanations.length;++K)this.currExplanations[K].xmapScaled=this.xscale(this.currExplanations[K].xmap);for(var G=d.length,$=0,X=0;X<G;++X){var Q=d[X].features,Z=(0,y.sum)((0,y.map)((0,y.filter)(Q,function(t){return t.effect>0}),function(t){return t.effect}))||0,J=(0,y.sum)((0,y.map)((0,y.filter)(Q,function(t){return t.effect<0}),function(t){return-t.effect}))||0;$=Math.max($,2.2*Math.max(Z,J))}this.yscale.domain([-$/2,$/2]).range([this.height-10,this.topOffset]),this.yaxisElement.attr("transform","translate("+this.leftOffset+",0)").call(this.yaxis);for(var tt=0;tt<G;++tt){var et=d[tt].features,nt=((0,y.sum)((0,y.map)(et,function(t){return Math.abs(t.effect)})),(0,y.sum)((0,y.map)((0,y.filter)(et,function(t){return t.effect<0}),function(t){return-t.effect}))||0),rt=-nt,it=void 0,ot=!0,at=!1,ut=void 0;try{for(var ct,st=this.currPosOrderedFeatures[Symbol.iterator]();!(ot=(ct=st.next()).done);ot=!0)it=ct.value,et[it].posyTop=this.yscale(rt),et[it].effect>0&&(rt+=et[it].effect),et[it].posyBottom=this.yscale(rt),et[it].ind=it}catch(t){at=!0,ut=t}finally{try{!ot&&st.return&&st.return()}finally{if(at)throw ut}}var lt=rt,ft=!0,pt=!1,ht=void 0;try{for(var dt,vt=this.currNegOrderedFeatures[Symbol.iterator]();!(ft=(dt=vt.next()).done);ft=!0)it=dt.value,et[it].negyTop=this.yscale(rt),et[it].effect<0&&(rt-=et[it].effect),et[it].negyBottom=this.yscale(rt)}catch(t){pt=!0,ht=t}finally{try{!ft&&vt.return&&vt.return()}finally{if(pt)throw ht}}d[tt].joinPoint=lt,d[tt].joinPointy=this.yscale(lt)}var gt=(0,g.line)().x(function(t){return t[0]}).y(function(t){return t[1]}),mt=this.mainGroup.selectAll(".force-bar-array-area-pos").data(this.currUsedFeatures);mt.enter().append("path").attr("class","force-bar-array-area-pos").merge(mt).attr("d",function(t){var e=(0,y.map)((0,y.range)(G),function(e){return[d[e].xmapScaled,d[e].features[t].posyTop]}),n=(0,y.map)((0,y.rangeRight)(G),function(e){return[d[e].xmapScaled,d[e].features[t].posyBottom]});return gt(e.concat(n))}).attr("fill",this.colors[0]),mt.exit().remove();var yt=this.mainGroup.selectAll(".force-bar-array-area-neg").data(this.currUsedFeatures);yt.enter().append("path").attr("class","force-bar-array-area-neg").merge(yt).attr("d",function(t){var e=(0,y.map)((0,y.range)(G),function(e){return[d[e].xmapScaled,d[e].features[t].negyTop]}),n=(0,y.map)((0,y.rangeRight)(G),function(e){return[d[e].xmapScaled,d[e].features[t].negyBottom]});return gt(e.concat(n))}).attr("fill",this.colors[1]),yt.exit().remove();var _t=this.mainGroup.selectAll(".force-bar-array-divider-pos").data(this.currUsedFeatures);_t.enter().append("path").attr("class","force-bar-array-divider-pos").merge(_t).attr("d",function(t){var e=(0,y.map)((0,y.range)(G),function(e){return[d[e].xmapScaled,d[e].features[t].posyBottom]});return gt(e)}).attr("fill","none").attr("stroke-width",1).attr("stroke",function(e){return t.colors[0].brighter(1.2)}),_t.exit().remove();var bt=this.mainGroup.selectAll(".force-bar-array-divider-neg").data(this.currUsedFeatures);bt.enter().append("path").attr("class","force-bar-array-divider-neg").merge(bt).attr("d",function(t){var e=(0,y.map)((0,y.range)(G),function(e){return[d[e].xmapScaled,d[e].features[t].negyTop]});return gt(e)}).attr("fill","none").attr("stroke-width",1).attr("stroke",function(e){return t.colors[1].brighter(1.5)}),bt.exit().remove();for(var xt=function(t,e,n,r,i){var o=void 0,a=void 0;"pos"===i?(o=t[n].features[e].posyBottom,a=t[n].features[e].posyTop):(o=t[n].features[e].negyBottom,a=t[n].features[e].negyTop);for(var u=void 0,c=void 0,s=n+1;s<=r;++s)"pos"===i?(u=t[s].features[e].posyBottom,c=t[s].features[e].posyTop):(u=t[s].features[e].negyBottom,c=t[s].features[e].negyTop),u>o&&(o=u),c<a&&(a=c);return{top:o,bottom:a}},wt=[],Ct=["pos","neg"],kt=0;kt<Ct.length;kt++){var Et=Ct[kt],Mt=!0,Tt=!1,St=void 0;try{for(var Nt,At=this.currUsedFeatures[Symbol.iterator]();!(Mt=(Nt=At.next()).done);Mt=!0)for(var Pt=Nt.value,Ot=0,It=0,Dt=0,Rt={top:0,bottom:0},Lt=void 0;It<G-1;){for(;Dt<100&&It<G-1;)++It,Dt=d[It].xmapScaled-d[Ot].xmapScaled;for(Rt=xt(d,Pt,Ot,It,Et);Rt.bottom-Rt.top<20&&Ot<It;)++Ot,Rt=xt(d,Pt,Ot,It,Et);if(Dt=d[It].xmapScaled-d[Ot].xmapScaled,Rt.bottom-Rt.top>=20&&Dt>=100){for(;It<G-1;){if(++It,Lt=xt(d,Pt,Ot,It,Et),!(Lt.bottom-Lt.top>20)){--It;break}Rt=Lt}Dt=d[It].xmapScaled-d[Ot].xmapScaled,wt.push([(d[It].xmapScaled+d[Ot].xmapScaled)/2,(Rt.top+Rt.bottom)/2,this.props.featureNames[Pt]]);var Ut=d[It].xmapScaled;for(Ot=It;Ut+100>d[Ot].xmapScaled&&Ot<G-1;)++Ot;It=Ot}}}catch(t){Tt=!0,St=t}finally{try{!Mt&&At.return&&At.return()}finally{if(Tt)throw St}}}var Ft=this.onTopGroup.selectAll(".force-bar-array-flabels").data(wt);Ft.enter().append("text").attr("class","force-bar-array-flabels").merge(Ft).attr("x",function(t){return t[0]}).attr("y",function(t){return t[1]+4}).text(function(t){return t[2]}),Ft.exit().remove()}},{key:"componentWillUnmount",value:function(){window.removeEventListener("resize",this.redraw)}},{key:"render",value:function(){var t=this;return l.default.createElement("div",{ref:function(e){return t.wrapper=(0,f.select)(e)},style:{textAlign:"center"}},l.default.createElement("style",{dangerouslySetInnerHTML:{__html:"\n .force-bar-array-wrapper {\n text-align: center;\n }\n .force-bar-array-xaxis path {\n fill: none;\n opacity: 0.4;\n }\n .force-bar-array-xaxis .domain {\n opacity: 0;\n }\n .force-bar-array-xaxis paths {\n display: none;\n }\n .force-bar-array-yaxis path {\n fill: none;\n opacity: 0.4;\n }\n .force-bar-array-yaxis paths {\n display: none;\n }\n .tick line {\n stroke: #000;\n stroke-width: 1px;\n opacity: 0.4;\n }\n .tick text {\n fill: #000;\n opacity: 0.5;\n font-size: 12px;\n padding: 0px;\n }\n .force-bar-array-flabels {\n font-size: 12px;\n fill: #fff;\n text-anchor: middle;\n }\n .additive-force-array-xlabel {\n background: none;\n border: 1px solid #ccc;\n opacity: 0.5;\n margin-bottom: 0px;\n font-size: 12px;\n font-family: arial;\n margin-left: 80px;\n max-width: 300px;\n }\n .additive-force-array-xlabel:focus {\n outline: none;\n }\n .additive-force-array-ylabel {\n position: relative;\n top: 0px;\n left: 0px;\n transform: rotate(-90deg);\n background: none;\n border: 1px solid #ccc;\n opacity: 0.5;\n margin-bottom: 0px;\n font-size: 12px;\n font-family: arial;\n max-width: 150px;\n }\n .additive-force-array-ylabel:focus {\n outline: none;\n }\n .additive-force-array-hoverLine {\n stroke-width: 1px;\n stroke: #fff;\n opacity: 1;\n }"}}),l.default.createElement("select",{className:"additive-force-array-xlabel"}),l.default.createElement("div",{style:{height:"0px",textAlign:"left"}},l.default.createElement("select",{className:"additive-force-array-ylabel"})),l.default.createElement("svg",{ref:function(e){return t.svg=(0,f.select)(e)},style:{userSelect:"none",display:"block",fontFamily:"arial",sansSerif:!0}}))}}]),e}(l.default.Component);x.defaultProps={plot_cmap:"RdBu",ordering_keys:null,ordering_keys_time_format:null},e.default=x},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var u=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),c=n(41),s=r(c),l=n(129),f=n(66),p=(n(7),n(29)),h=n(112),d=n(136),v=n(10),g=n(38),m=n(58),y=r(m),b=function(t){function e(){i(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return window.lastAdditiveForceVisualizer=t,t.effectFormat=(0,p.format)(".2"),t.redraw=(0,g.debounce)(function(){return t.draw()},200),t}return a(e,t),u(e,[{key:"componentDidMount",value:function(){var t=this;this.mainGroup=this.svg.append("g"),this.axisElement=this.mainGroup.append("g").attr("transform","translate(0,35)").attr("class","force-bar-axis"),this.onTopGroup=this.svg.append("g"),this.baseValueTitle=this.svg.append("text"),this.joinPointLine=this.svg.append("line"),this.joinPointLabelOutline=this.svg.append("text"),this.joinPointLabel=this.svg.append("text"),this.joinPointTitleLeft=this.svg.append("text"),this.joinPointTitleLeftArrow=this.svg.append("text"),this.joinPointTitle=this.svg.append("text"),this.joinPointTitleRightArrow=this.svg.append("text"),this.joinPointTitleRight=this.svg.append("text"),this.hoverLabelBacking=this.svg.append("text").attr("x",10).attr("y",20).attr("text-anchor","middle").attr("font-size",12).attr("stroke","#fff").attr("fill","#fff").attr("stroke-width","4").attr("stroke-linejoin","round").text("").on("mouseover",function(e){t.hoverLabel.attr("opacity",1),t.hoverLabelBacking.attr("opacity",1)}).on("mouseout",function(e){t.hoverLabel.attr("opacity",0),t.hoverLabelBacking.attr("opacity",0)}),this.hoverLabel=this.svg.append("text").attr("x",10).attr("y",20).attr("text-anchor","middle").attr("font-size",12).attr("fill","#0f0").text("").on("mouseover",function(e){t.hoverLabel.attr("opacity",1),t.hoverLabelBacking.attr("opacity",1)}).on("mouseout",function(e){t.hoverLabel.attr("opacity",0),t.hoverLabelBacking.attr("opacity",0)});var e=void 0;"string"==typeof this.props.plot_cmap?this.props.plot_cmap in y.default.colors?e=y.default.colors[this.props.plot_cmap]:(console.log("Invalid color map name, reverting to default."),e=y.default.colors.RdBu):Array.isArray(this.props.plot_cmap)&&(e=this.props.plot_cmap),this.colors=e.map(function(t){return(0,v.hsl)(t)}),this.brighterColors=[1.45,1.6].map(function(e,n){return t.colors[n].brighter(e)}),this.colors.map(function(e,n){var r=t.svg.append("linearGradient").attr("id","linear-grad-"+n).attr("x1","0%").attr("y1","0%").attr("x2","0%").attr("y2","100%");r.append("stop").attr("offset","0%").attr("stop-color",e).attr("stop-opacity",.6),r.append("stop").attr("offset","100%").attr("stop-color",e).attr("stop-opacity",0);var i=t.svg.append("linearGradient").attr("id","linear-backgrad-"+n).attr("x1","0%").attr("y1","0%").attr("x2","0%").attr("y2","100%");i.append("stop").attr("offset","0%").attr("stop-color",e).attr("stop-opacity",.5),i.append("stop").attr("offset","100%").attr("stop-color",e).attr("stop-opacity",0)}),this.tickFormat=(0,p.format)(",.4"),this.scaleCentered=(0,f.scaleLinear)(),this.axis=(0,h.axisBottom)().scale(this.scaleCentered).tickSizeInner(4).tickSizeOuter(0).tickFormat(function(e){return t.tickFormat(t.invLinkFunction(e))}).tickPadding(-18),window.addEventListener("resize",this.redraw),window.setTimeout(this.redraw,50)}},{key:"componentDidUpdate",value:function(){this.draw()}},{key:"draw",value:function(){var t=this;(0,g.each)(this.props.featureNames,function(e,n){t.props.features[n]&&(t.props.features[n].name=e)}),"identity"===this.props.link?this.invLinkFunction=function(e){return t.props.baseValue+e}:"logit"===this.props.link?this.invLinkFunction=function(e){return 1/(1+Math.exp(-(t.props.baseValue+e)))}:console.log("ERROR: Unrecognized link function: ",this.props.link);var e=this.svg.node().parentNode.offsetWidth;if(0==e)return setTimeout(function(){return t.draw(t.props)},500);this.svg.style("height","150px"),this.svg.style("width",e+"px");var n=(0,g.sortBy)(this.props.features,function(t){return-1/(t.effect+1e-10)}),r=(0,g.sum)((0,g.map)(n,function(t){return Math.abs(t.effect)})),i=(0,g.sum)((0,g.map)((0,g.filter)(n,function(t){return t.effect>0}),function(t){return t.effect}))||0,o=(0,g.sum)((0,g.map)((0,g.filter)(n,function(t){return t.effect<0}),function(t){return-t.effect}))||0;this.domainSize=3*Math.max(i,o);var a=(0,f.scaleLinear)().domain([0,this.domainSize]).range([0,e]),u=e/2-a(o);this.scaleCentered.domain([-this.domainSize/2,this.domainSize/2]).range([0,e]).clamp(!0),this.axisElement.attr("transform","translate(0,50)").call(this.axis);var c=0,s=void 0,l=void 0,h=void 0;for(s=0;s<n.length;++s)n[s].x=c,n[s].effect<0&&void 0===l&&(l=c,h=s),c+=Math.abs(n[s].effect);void 0===l&&(l=c,h=s);var v=(0,d.line)().x(function(t){return t[0]}).y(function(t){return t[1]}),m=function(e){return void 0!==e.value&&null!==e.value&&""!==e.value?e.name+" = "+(isNaN(e.value)?e.value:t.tickFormat(e.value)):e.name};n=this.props.hideBars?[]:n;var y=this.mainGroup.selectAll(".force-bar-blocks").data(n);y.enter().append("path").attr("class","force-bar-blocks").merge(y).attr("d",function(t,e){var n=a(t.x)+u,r=a(Math.abs(t.effect)),i=t.effect<0?-4:4,o=i;return e===h&&(i=0),e===h-1&&(o=0),v([[n,56],[n+r,56],[n+r+o,64.5],[n+r,73],[n,73],[n+i,64.5]])}).attr("fill",function(e){return e.effect>0?t.colors[0]:t.colors[1]}).on("mouseover",function(e){if(a(Math.abs(e.effect))<a(r)/50||a(Math.abs(e.effect))<10){var n=a(e.x)+u,i=a(Math.abs(e.effect));t.hoverLabel.attr("opacity",1).attr("x",n+i/2).attr("y",50.5).attr("fill",e.effect>0?t.colors[0]:t.colors[1]).text(m(e)),t.hoverLabelBacking.attr("opacity",1).attr("x",n+i/2).attr("y",50.5).text(m(e))}}).on("mouseout",function(e){t.hoverLabel.attr("opacity",0),t.hoverLabelBacking.attr("opacity",0)}),y.exit().remove();var b=_.filter(n,function(t){return a(Math.abs(t.effect))>a(r)/50&&a(Math.abs(t.effect))>10}),x=this.onTopGroup.selectAll(".force-bar-labels").data(b);if(x.exit().remove(),x=x.enter().append("text").attr("class","force-bar-labels").attr("font-size","12px").attr("y",function(t){return 98}).merge(x).text(function(e){return void 0!==e.value&&null!==e.value&&""!==e.value?e.name+" = "+(isNaN(e.value)?e.value:t.tickFormat(e.value)):e.name}).attr("fill",function(e){return e.effect>0?t.colors[0]:t.colors[1]}).attr("stroke",function(t,e){return t.textWidth=Math.max(this.getComputedTextLength(),a(Math.abs(t.effect))-10),t.innerTextWidth=this.getComputedTextLength(),"none"}),this.filteredData=b,n.length>0){c=l+a.invert(5);for(var w=h;w<n.length;++w)n[w].textx=c,c+=a.invert(n[w].textWidth+10);c=l-a.invert(5);for(var C=h-1;C>=0;--C)n[C].textx=c,c-=a.invert(n[C].textWidth+10)}x.attr("x",function(t){return a(t.textx)+u+(t.effect>0?-t.textWidth/2:t.textWidth/2)}).attr("text-anchor","middle"),b=(0,g.filter)(b,function(n){return a(n.textx)+u>t.props.labelMargin&&a(n.textx)+u<e-t.props.labelMargin}),this.filteredData2=b;var k=b.slice(),E=(0,g.findIndex)(n,b[0])-1;E>=0&&k.unshift(n[E]);var M=this.mainGroup.selectAll(".force-bar-labelBacking").data(b);M.enter().append("path").attr("class","force-bar-labelBacking").attr("stroke","none").attr("opacity",.2).merge(M).attr("d",function(t){return v([[a(t.x)+a(Math.abs(t.effect))+u,73],[(t.effect>0?a(t.textx):a(t.textx)+t.textWidth)+u+5,83],[(t.effect>0?a(t.textx):a(t.textx)+t.textWidth)+u+5,104],[(t.effect>0?a(t.textx)-t.textWidth:a(t.textx))+u-5,104],[(t.effect>0?a(t.textx)-t.textWidth:a(t.textx))+u-5,83],[a(t.x)+u,73]])}).attr("fill",function(t){return"url(#linear-backgrad-"+(t.effect>0?0:1)+")"}),M.exit().remove();var T=this.mainGroup.selectAll(".force-bar-labelDividers").data(b.slice(0,-1));T.enter().append("rect").attr("class","force-bar-labelDividers").attr("height","21px").attr("width","1px").attr("y",83).merge(T).attr("x",function(t){return(t.effect>0?a(t.textx):a(t.textx)+t.textWidth)+u+4.5}).attr("fill",function(t){return"url(#linear-grad-"+(t.effect>0?0:1)+")"}),T.exit().remove();var S=this.mainGroup.selectAll(".force-bar-labelLinks").data(b.slice(0,-1));S.enter().append("line").attr("class","force-bar-labelLinks").attr("y1",73).attr("y2",83).attr("stroke-opacity",.5).attr("stroke-width",1).merge(S).attr("x1",function(t){return a(t.x)+a(Math.abs(t.effect))+u}).attr("x2",function(t){return(t.effect>0?a(t.textx):a(t.textx)+t.textWidth)+u+5}).attr("stroke",function(e){return e.effect>0?t.colors[0]:t.colors[1]}),S.exit().remove();var N=this.mainGroup.selectAll(".force-bar-blockDividers").data(n.slice(0,-1));N.enter().append("path").attr("class","force-bar-blockDividers").attr("stroke-width",2).attr("fill","none").merge(N).attr("d",function(t){var e=a(t.x)+a(Math.abs(t.effect))+u;return v([[e,56],[e+(t.effect<0?-4:4),64.5],[e,73]])}).attr("stroke",function(e,n){return h===n+1||Math.abs(e.effect)<1e-8?"#rgba(0,0,0,0)":e.effect>0?t.brighterColors[0]:t.brighterColors[1]}),N.exit().remove(),this.joinPointLine.attr("x1",a(l)+u).attr("x2",a(l)+u).attr("y1",50).attr("y2",56).attr("stroke","#F2F2F2").attr("stroke-width",1).attr("opacity",1),this.joinPointLabelOutline.attr("x",a(l)+u).attr("y",45).attr("color","#fff").attr("text-anchor","middle").attr("font-weight","bold").attr("stroke","#fff").attr("stroke-width",6).text((0,p.format)(",.2f")(this.invLinkFunction(l-o))).attr("opacity",1),console.log("joinPoint",l,u,50,o),this.joinPointLabel.attr("x",a(l)+u).attr("y",45).attr("text-anchor","middle").attr("font-weight","bold").attr("fill","#000").text((0,p.format)(",.2f")(this.invLinkFunction(l-o))).attr("opacity",1),this.joinPointTitle.attr("x",a(l)+u).attr("y",28).attr("text-anchor","middle").attr("font-size","12").attr("fill","#000").text(this.props.outNames[0]).attr("opacity",.5),this.props.hideBars||(this.joinPointTitleLeft.attr("x",a(l)+u-16).attr("y",12).attr("text-anchor","end").attr("font-size","13").attr("fill",this.colors[0]).text("higher").attr("opacity",1),this.joinPointTitleRight.attr("x",a(l)+u+16).attr("y",12).attr("text-anchor","start").attr("font-size","13").attr("fill",this.colors[1]).text("lower").attr("opacity",1),this.joinPointTitleLeftArrow.attr("x",a(l)+u+7).attr("y",8).attr("text-anchor","end").attr("font-size","13").attr("fill",this.colors[0]).text("→").attr("opacity",1),this.joinPointTitleRightArrow.attr("x",a(l)+u-7).attr("y",14).attr("text-anchor","start").attr("font-size","13").attr("fill",this.colors[1]).text("←").attr("opacity",1)),this.props.hideBaseValueLabel||this.baseValueTitle.attr("x",this.scaleCentered(0)).attr("y",28).attr("text-anchor","middle").attr("font-size","12").attr("fill","#000").text("base value").attr("opacity",.5)}},{key:"componentWillUnmount",value:function(){window.removeEventListener("resize",this.redraw)}},{key:"render",value:function(){var t=this;return s.default.createElement("svg",{ref:function(e){return t.svg=(0,l.select)(e)},style:{userSelect:"none",display:"block",fontFamily:"arial",sansSerif:!0}},s.default.createElement("style",{dangerouslySetInnerHTML:{__html:"\n .force-bar-axis path {\n fill: none;\n opacity: 0.4;\n }\n .force-bar-axis paths {\n display: none;\n }\n .tick line {\n stroke: #000;\n stroke-width: 1px;\n opacity: 0.4;\n }\n .tick text {\n fill: #000;\n opacity: 0.5;\n font-size: 12px;\n padding: 0px;\n }"}}))}}]),e}(s.default.Component);b.defaultProps={plot_cmap:"RdBu"},e.default=b},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var u=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),c=n(41),s=r(c),l=n(66),f=(n(7),n(29)),p=n(38),h=n(58),d=r(h),v=function(t){function e(){i(this,e);var t=o(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return t.width=100,window.lastSimpleListInstance=t,t.effectFormat=(0,f.format)(".2"),t}return a(e,t),u(e,[{key:"render",value:function(){var t=this,e=void 0;"string"==typeof this.props.plot_cmap?this.props.plot_cmap in d.default.colors?e=d.default.colors[this.props.plot_cmap]:(console.log("Invalid color map name, reverting to default."),e=d.default.colors.RdBu):Array.isArray(this.props.plot_cmap)&&(e=this.props.plot_cmap),console.log(this.props.features,this.props.features),this.scale=(0,l.scaleLinear)().domain([0,(0,p.max)((0,p.map)(this.props.features,function(t){return Math.abs(t.effect)}))]).range([0,this.width]);var n=(0,p.reverse)((0,p.sortBy)(Object.keys(this.props.features),function(e){return Math.abs(t.props.features[e].effect)})),r=n.map(function(n){var r=t.props.features[n],i=t.props.featureNames[n],o={width:t.scale(Math.abs(r.effect)),height:"20px",background:r.effect<0?e[0]:e[1],display:"inline-block"},a=void 0,u=void 0,c={lineHeight:"20px",display:"inline-block",width:t.width+40,verticalAlign:"top",marginRight:"5px",textAlign:"right"},l={lineHeight:"20px",display:"inline-block",width:t.width+40,verticalAlign:"top",marginLeft:"5px"};return r.effect<0?(u=s.default.createElement("span",{style:l},i),c.width=40+t.width-t.scale(Math.abs(r.effect)),c.textAlign="right",c.color="#999",c.fontSize="13px",a=s.default.createElement("span",{style:c},t.effectFormat(r.effect))):(c.textAlign="right",a=s.default.createElement("span",{style:c},i),l.width=40,l.textAlign="left",l.color="#999",l.fontSize="13px",u=s.default.createElement("span",{style:l},t.effectFormat(r.effect))),s.default.createElement("div",{key:n,style:{marginTop:"2px"}},a,s.default.createElement("div",{style:o}),u)});return s.default.createElement("span",null,r)}}]),e}(s.default.Component);v.defaultProps={plot_cmap:"RdBu"},e.default=v},function(t,e,n){"use strict";t.exports=n(359)},function(t,e,n){var r=(n(0),n(411)),i=!1;t.exports=function(t){t=t||{};var e=t.shouldRejectClick||r;i=!0,n(22).injection.injectEventPluginsByName({TapEventPlugin:n(409)(e)})}},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}var i=n(41),o=r(i),a=n(187),u=r(a),c=n(188),s=r(c),l=n(186),f=r(l),p=n(185),h=r(p),d=n(184),v=r(d);(0,s.default)(),window.SHAP={SimpleListVisualizer:f.default,AdditiveForceVisualizer:h.default,AdditiveForceArrayVisualizer:v.default,React:o.default,ReactDom:u.default}},,function(t,e,n){"use strict";function r(t){return t}function i(t,e,n){function i(t,e){var n=y.hasOwnProperty(e)?y[e]:null;C.hasOwnProperty(e)&&u("OVERRIDE_BASE"===n,"ReactClassInterface: You are attempting to override `%s` from your class specification. Ensure that your method names do not overlap with React methods.",e),t&&u("DEFINE_MANY"===n||"DEFINE_MANY_MERGED"===n,"ReactClassInterface: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",e)}function s(t,n){if(n){u("function"!=typeof n,"ReactClass: You're attempting to use a component class or function as a mixin. Instead, just use a regular object."),u(!e(n),"ReactClass: You're attempting to use a component as a mixin. Instead, just use a regular object.");var r=t.prototype,o=r.__reactAutoBindPairs;n.hasOwnProperty(c)&&b.mixins(t,n.mixins);for(var a in n)if(n.hasOwnProperty(a)&&a!==c){var s=n[a],l=r.hasOwnProperty(a);if(i(l,a),b.hasOwnProperty(a))b[a](t,s);else{var f=y.hasOwnProperty(a),d="function"==typeof s,v=d&&!f&&!l&&!1!==n.autobind;if(v)o.push(a,s),r[a]=s;else if(l){var g=y[a];u(f&&("DEFINE_MANY_MERGED"===g||"DEFINE_MANY"===g),"ReactClass: Unexpected spec policy %s for key %s when mixing in component specs.",g,a),"DEFINE_MANY_MERGED"===g?r[a]=p(r[a],s):"DEFINE_MANY"===g&&(r[a]=h(r[a],s))}else r[a]=s}}}else;}function l(t,e){if(e)for(var n in e){var r=e[n];if(e.hasOwnProperty(n)){var i=n in b;u(!i,'ReactClass: You are attempting to define a reserved property, `%s`, that shouldn\'t be on the "statics" key. Define it as an instance property instead; it will still be accessible on the constructor.',n);var o=n in t;if(o){var a=_.hasOwnProperty(n)?_[n]:null;return u("DEFINE_MANY_MERGED"===a,"ReactClass: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",n),void(t[n]=p(t[n],r))}t[n]=r}}}function f(t,e){u(t&&e&&"object"==typeof t&&"object"==typeof e,"mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects.");for(var n in e)e.hasOwnProperty(n)&&(u(void 0===t[n],"mergeIntoWithNoDuplicateKeys(): Tried to merge two objects with the same key: `%s`. This conflict may be due to a mixin; in particular, this may be caused by two getInitialState() or getDefaultProps() methods returning objects with clashing keys.",n),t[n]=e[n]);return t}function p(t,e){return function(){var n=t.apply(this,arguments),r=e.apply(this,arguments);if(null==n)return r;if(null==r)return n;var i={};return f(i,n),f(i,r),i}}function h(t,e){return function(){t.apply(this,arguments),e.apply(this,arguments)}}function d(t,e){var n=e.bind(t);return n}function v(t){for(var e=t.__reactAutoBindPairs,n=0;n<e.length;n+=2){var r=e[n],i=e[n+1];t[r]=d(t,i)}}function g(t){var e=r(function(t,r,i){this.__reactAutoBindPairs.length&&v(this),this.props=t,this.context=r,this.refs=a,this.updater=i||n,this.state=null;var o=this.getInitialState?this.getInitialState():null;u("object"==typeof o&&!Array.isArray(o),"%s.getInitialState(): must return an object or null",e.displayName||"ReactCompositeComponent"),this.state=o});e.prototype=new k,e.prototype.constructor=e,e.prototype.__reactAutoBindPairs=[],m.forEach(s.bind(null,e)),s(e,x),s(e,t),s(e,w),e.getDefaultProps&&(e.defaultProps=e.getDefaultProps()),u(e.prototype.render,"createClass(...): Class specification must implement a `render` method.");for(var i in y)e.prototype[i]||(e.prototype[i]=null);return e}var m=[],y={mixins:"DEFINE_MANY",statics:"DEFINE_MANY",propTypes:"DEFINE_MANY",contextTypes:"DEFINE_MANY",childContextTypes:"DEFINE_MANY",getDefaultProps:"DEFINE_MANY_MERGED",getInitialState:"DEFINE_MANY_MERGED",getChildContext:"DEFINE_MANY_MERGED",render:"DEFINE_ONCE",componentWillMount:"DEFINE_MANY",componentDidMount:"DEFINE_MANY",componentWillReceiveProps:"DEFINE_MANY",shouldComponentUpdate:"DEFINE_ONCE",componentWillUpdate:"DEFINE_MANY",componentDidUpdate:"DEFINE_MANY",componentWillUnmount:"DEFINE_MANY",UNSAFE_componentWillMount:"DEFINE_MANY",UNSAFE_componentWillReceiveProps:"DEFINE_MANY",UNSAFE_componentWillUpdate:"DEFINE_MANY",updateComponent:"OVERRIDE_BASE"},_={getDerivedStateFromProps:"DEFINE_MANY_MERGED"},b={displayName:function(t,e){t.displayName=e},mixins:function(t,e){if(e)for(var n=0;n<e.length;n++)s(t,e[n])},childContextTypes:function(t,e){t.childContextTypes=o({},t.childContextTypes,e)},contextTypes:function(t,e){t.contextTypes=o({},t.contextTypes,e)},getDefaultProps:function(t,e){t.getDefaultProps?t.getDefaultProps=p(t.getDefaultProps,e):t.getDefaultProps=e},propTypes:function(t,e){t.propTypes=o({},t.propTypes,e)},statics:function(t,e){l(t,e)},autobind:function(){}},x={componentDidMount:function(){this.__isMounted=!0}},w={componentWillUnmount:function(){this.__isMounted=!1}},C={replaceState:function(t,e){this.updater.enqueueReplaceState(this,t,e)},isMounted:function(){return!!this.__isMounted}},k=function(){};return o(k.prototype,t.prototype,C),g}var o=n(3),a=n(51),u=n(0),c="mixins";t.exports=i},function(t,e,n){"use strict";e.a=function(t){return function(){return t}}},function(t,e,n){"use strict";var r=n(106);e.a=function(t,e,n){var i,o,a,u,c=t.length,s=e.length,l=new Array(c*s);for(null==n&&(n=r.b),i=a=0;i<c;++i)for(u=t[i],o=0;o<s;++o,++a)l[a]=n(u,e[o]);return l}},function(t,e,n){"use strict";e.a=function(t,e){return e<t?-1:e>t?1:e>=t?0:NaN}},function(t,e,n){"use strict";var r=n(100),i=n(101),o=n(192),a=n(104),u=n(196),c=n(107),s=n(109),l=n(108);e.a=function(){function t(t){var r,o,a=t.length,u=new Array(a);for(r=0;r<a;++r)u[r]=e(t[r],r,t);var l=f(u),h=l[0],d=l[1],v=p(u,h,d);Array.isArray(v)||(v=n.i(s.c)(h,d,v),v=n.i(c.a)(Math.ceil(h/v)*v,Math.floor(d/v)*v,v));for(var g=v.length;v[0]<=h;)v.shift(),--g;for(;v[g-1]>d;)v.pop(),--g;var m,y=new Array(g+1);for(r=0;r<=g;++r)m=y[r]=[],m.x0=r>0?v[r-1]:h,m.x1=r<g?v[r]:d;for(r=0;r<a;++r)o=u[r],h<=o&&o<=d&&y[n.i(i.a)(v,o,0,g)].push(t[r]);return y}var e=u.a,f=a.a,p=l.a;return t.value=function(r){return arguments.length?(e="function"==typeof r?r:n.i(o.a)(r),t):e},t.domain=function(e){return arguments.length?(f="function"==typeof e?e:n.i(o.a)([e[0],e[1]]),t):f},t.thresholds=function(e){return arguments.length?(p="function"==typeof e?e:Array.isArray(e)?n.i(o.a)(r.b.call(e)):n.i(o.a)(e),t):p},t}},function(t,e,n){"use strict";e.a=function(t){return t}},function(t,e,n){"use strict";e.a=function(t,e){var n,r,i=t.length,o=-1;if(null==e){for(;++o<i;)if(null!=(n=t[o])&&n>=n)for(r=n;++o<i;)null!=(n=t[o])&&n>r&&(r=n)}else for(;++o<i;)if(null!=(n=e(t[o],o,t))&&n>=n)for(r=n;++o<i;)null!=(n=e(t[o],o,t))&&n>r&&(r=n);return r}},function(t,e,n){"use strict";var r=n(28);e.a=function(t,e){var i,o=t.length,a=o,u=-1,c=0;if(null==e)for(;++u<o;)isNaN(i=n.i(r.a)(t[u]))?--a:c+=i;else for(;++u<o;)isNaN(i=n.i(r.a)(e(t[u],u,t)))?--a:c+=i;if(a)return c/a}},function(t,e,n){"use strict";var r=n(19),i=n(28),o=n(59);e.a=function(t,e){var a,u=t.length,c=-1,s=[];if(null==e)for(;++c<u;)isNaN(a=n.i(i.a)(t[c]))||s.push(a);else for(;++c<u;)isNaN(a=n.i(i.a)(e(t[c],c,t)))||s.push(a);return n.i(o.a)(s.sort(r.a),.5)}},function(t,e,n){"use strict";e.a=function(t){for(var e,n,r,i=t.length,o=-1,a=0;++o<i;)a+=t[o].length;for(n=new Array(a);--i>=0;)for(r=t[i],e=r.length;--e>=0;)n[--a]=r[e];return n}},function(t,e,n){"use strict";e.a=function(t,e){for(var n=e.length,r=new Array(n);n--;)r[n]=t[e[n]];return r}},function(t,e,n){"use strict";var r=n(19);e.a=function(t,e){if(n=t.length){var n,i,o=0,a=0,u=t[a];for(null==e&&(e=r.a);++o<n;)(e(i=t[o],u)<0||0!==e(u,u))&&(u=i,a=o);return 0===e(u,u)?a:void 0}}},function(t,e,n){"use strict";e.a=function(t,e,n){for(var r,i,o=(null==n?t.length:n)-(e=null==e?0:+e);o;)i=Math.random()*o--|0,r=t[o+e],t[o+e]=t[i+e],t[i+e]=r;return t}},function(t,e,n){"use strict";e.a=function(t,e){var n,r=t.length,i=-1,o=0;if(null==e)for(;++i<r;)(n=+t[i])&&(o+=n);else for(;++i<r;)(n=+e(t[i],i,t))&&(o+=n);return o}},function(t,e,n){"use strict";var r=n(100),i=n(19),o=n(28),a=n(59);e.a=function(t,e,u){return t=r.a.call(t,o.a).sort(i.a),Math.ceil((u-e)/(2*(n.i(a.a)(t,.75)-n.i(a.a)(t,.25))*Math.pow(t.length,-1/3)))}},function(t,e,n){"use strict";var r=n(103);e.a=function(t,e,i){return Math.ceil((i-e)/(3.5*n.i(r.a)(t)*Math.pow(t.length,-1/3)))}},function(t,e,n){"use strict";var r=n(110);e.a=function(){return n.i(r.a)(arguments)}},function(t,e,n){"use strict";n.d(e,"a",function(){return r});var r=Array.prototype.slice},function(t,e,n){"use strict";function r(t){return"translate("+(t+.5)+",0)"}function i(t){return"translate(0,"+(t+.5)+")"}function o(t){return function(e){return+t(e)}}function a(t){var e=Math.max(0,t.bandwidth()-1)/2;return t.round()&&(e=Math.round(e)),function(n){return+t(n)+e}}function u(){return!this.__axis}function c(t,e){function n(n){var r=null==s?e.ticks?e.ticks.apply(e,c):e.domain():s,i=null==l?e.tickFormat?e.tickFormat.apply(e,c):d.a:l,h=Math.max(f,0)+b,k=e.range(),E=+k[0]+.5,M=+k[k.length-1]+.5,T=(e.bandwidth?a:o)(e.copy()),S=n.selection?n.selection():n,N=S.selectAll(".domain").data([null]),A=S.selectAll(".tick").data(r,e).order(),P=A.exit(),O=A.enter().append("g").attr("class","tick"),I=A.select("line"),D=A.select("text");N=N.merge(N.enter().insert("path",".tick").attr("class","domain").attr("stroke","#000")),A=A.merge(O),I=I.merge(O.append("line").attr("stroke","#000").attr(w+"2",x*f)),D=D.merge(O.append("text").attr("fill","#000").attr(w,x*h).attr("dy",t===v?"0em":t===m?"0.71em":"0.32em")),n!==S&&(N=N.transition(n),A=A.transition(n),I=I.transition(n),D=D.transition(n),P=P.transition(n).attr("opacity",_).attr("transform",function(t){return isFinite(t=T(t))?C(t):this.getAttribute("transform")}),O.attr("opacity",_).attr("transform",function(t){var e=this.parentNode.__axis;return C(e&&isFinite(e=e(t))?e:T(t))})),P.remove(),N.attr("d",t===y||t==g?"M"+x*p+","+E+"H0.5V"+M+"H"+x*p:"M"+E+","+x*p+"V0.5H"+M+"V"+x*p),A.attr("opacity",1).attr("transform",function(t){return C(T(t))}),I.attr(w+"2",x*f),D.attr(w,x*h).text(i),S.filter(u).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===g?"start":t===y?"end":"middle"),S.each(function(){this.__axis=T})}var c=[],s=null,l=null,f=6,p=6,b=3,x=t===v||t===y?-1:1,w=t===y||t===g?"x":"y",C=t===v||t===m?r:i;return n.scale=function(t){return arguments.length?(e=t,n):e},n.ticks=function(){return c=h.a.call(arguments),n},n.tickArguments=function(t){return arguments.length?(c=null==t?[]:h.a.call(t),n):c.slice()},n.tickValues=function(t){return arguments.length?(s=null==t?null:h.a.call(t),n):s&&s.slice()},n.tickFormat=function(t){return arguments.length?(l=t,n):l},n.tickSize=function(t){return arguments.length?(f=p=+t,n):f},n.tickSizeInner=function(t){return arguments.length?(f=+t,n):f},n.tickSizeOuter=function(t){return arguments.length?(p=+t,n):p},n.tickPadding=function(t){return arguments.length?(b=+t,n):b},n}function s(t){return c(v,t)}function l(t){return c(g,t)}function f(t){return c(m,t)}function p(t){return c(y,t)}e.a=s,e.b=l,e.c=f,e.d=p;var h=n(208),d=n(210),v=1,g=2,m=3,y=4,_=1e-6},function(t,e,n){"use strict";e.a=function(t){return t}},function(t,e,n){"use strict";var r=(n(214),n(215),n(60));n.d(e,"a",function(){return r.a});n(213),n(216),n(212)},function(t,e,n){"use strict"},function(t,e,n){"use strict"},function(t,e,n){"use strict";n(60)},function(t,e,n){"use strict";function r(){}function i(t,e){var n=new r;if(t instanceof r)t.each(function(t){n.add(t)});else if(t){var i=-1,o=t.length;if(null==e)for(;++i<o;)n.add(t[i]);else for(;++i<o;)n.add(e(t[i],i,t))}return n}var o=n(60),a=o.a.prototype;r.prototype=i.prototype={constructor:r,has:a.has,add:function(t){return t+="",this[o.b+t]=t,this},remove:a.remove,clear:a.clear,values:a.keys,size:a.size,empty:a.empty,each:a.each}},function(t,e,n){"use strict"},function(t,e,n){"use strict";function r(t){if(t instanceof o)return new o(t.h,t.s,t.l,t.opacity);t instanceof u.d||(t=n.i(u.e)(t));var e=t.r/255,r=t.g/255,i=t.b/255,a=(g*i+d*e-v*r)/(g+d-v),s=i-a,l=(h*(r-a)-f*s)/p,m=Math.sqrt(l*l+s*s)/(h*a*(1-a)),y=m?Math.atan2(l,s)*c.a-120:NaN;return new o(y<0?y+360:y,m,a,t.opacity)}function i(t,e,n,i){return 1===arguments.length?r(t):new o(t,e,n,null==i?1:i)}function o(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}e.a=i;var a=n(62),u=n(61),c=n(113),s=-.14861,l=1.78277,f=-.29227,p=-.90649,h=1.97294,d=h*p,v=h*l,g=l*f-p*s;n.i(a.a)(o,i,n.i(a.b)(u.f,{brighter:function(t){return t=null==t?u.g:Math.pow(u.g,t),new o(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?u.h:Math.pow(u.h,t),new o(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*c.b,e=+this.l,n=isNaN(this.s)?0:this.s*e*(1-e),r=Math.cos(t),i=Math.sin(t);return new u.d(255*(e+n*(s*r+l*i)),255*(e+n*(f*r+p*i)),255*(e+n*(h*r)),this.opacity)}}))},function(t,e,n){"use strict";function r(t){if(t instanceof o)return new o(t.l,t.a,t.b,t.opacity);if(t instanceof p){var e=t.h*v.b;return new o(t.l,Math.cos(e)*t.c,Math.sin(e)*t.c,t.opacity)}t instanceof d.d||(t=n.i(d.e)(t));var r=s(t.r),i=s(t.g),u=s(t.b),c=a((.4124564*r+.3575761*i+.1804375*u)/g),l=a((.2126729*r+.7151522*i+.072175*u)/m);return new o(116*l-16,500*(c-l),200*(l-a((.0193339*r+.119192*i+.9503041*u)/y)),t.opacity)}function i(t,e,n,i){return 1===arguments.length?r(t):new o(t,e,n,null==i?1:i)}function o(t,e,n,r){this.l=+t,this.a=+e,this.b=+n,this.opacity=+r}function a(t){return t>w?Math.pow(t,1/3):t/x+_}function u(t){return t>b?t*t*t:x*(t-_)}function c(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function s(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function l(t){if(t instanceof p)return new p(t.h,t.c,t.l,t.opacity);t instanceof o||(t=r(t));var e=Math.atan2(t.b,t.a)*v.a;return new p(e<0?e+360:e,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function f(t,e,n,r){return 1===arguments.length?l(t):new p(t,e,n,null==r?1:r)}function p(t,e,n,r){this.h=+t,this.c=+e,this.l=+n,this.opacity=+r}e.a=i,e.b=f;var h=n(62),d=n(61),v=n(113),g=.95047,m=1,y=1.08883,_=4/29,b=6/29,x=3*b*b,w=b*b*b;n.i(h.a)(o,i,n.i(h.b)(d.f,{brighter:function(t){return new o(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new o(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,e=isNaN(this.a)?t:t+this.a/500,n=isNaN(this.b)?t:t-this.b/200;return t=m*u(t),e=g*u(e),n=y*u(n),new d.d(c(3.2404542*e-1.5371385*t-.4985314*n),c(-.969266*e+1.8760108*t+.041556*n),c(.0556434*e-.2040259*t+1.0572252*n),this.opacity)}})),n.i(h.a)(p,f,n.i(h.b)(d.f,{brighter:function(t){return new p(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new p(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return r(this).rgb()}}))},function(t,e,n){"use strict";function r(t){return i=n.i(u.a)(t),o=i.format,a=i.formatPrefix,i}n.d(e,"b",function(){return o}),n.d(e,"c",function(){return a}),e.a=r;var i,o,a,u=n(117);r({decimal:".",thousands:",",grouping:[3],currency:["$",""]})},function(t,e,n){"use strict";e.a=function(t,e){t=t.toPrecision(e);t:for(var n,r=t.length,i=1,o=-1;i<r;++i)switch(t[i]){case".":o=n=i;break;case"0":0===o&&(o=i),n=i;break;case"e":break t;default:o>0&&(o=0)}return o>0?t.slice(0,o)+t.slice(n+1):t}},function(t,e,n){"use strict";e.a=function(t,e){return function(n,r){for(var i=n.length,o=[],a=0,u=t[0],c=0;i>0&&u>0&&(c+u+1>r&&(u=Math.max(1,r-c)),o.push(n.substring(i-=u,i+u)),!((c+=u+1)>r));)u=t[a=(a+1)%t.length];return o.reverse().join(e)}}},function(t,e,n){"use strict";e.a=function(t){return function(e){return e.replace(/[0-9]/g,function(e){return t[+e]})}}},function(t,e,n){"use strict";var r=n(63);e.a=function(t,e){var i=n.i(r.a)(t,e);if(!i)return t+"";var o=i[0],a=i[1];return a<0?"0."+new Array(-a).join("0")+o:o.length>a+1?o.slice(0,a+1)+"."+o.slice(a+1):o+new Array(a-o.length+2).join("0")}},function(t,e,n){"use strict";e.a=function(t){return t}},function(t,e,n){"use strict";var r=n(42);e.a=function(t){return Math.max(0,-n.i(r.a)(Math.abs(t)))}},function(t,e,n){"use strict";var r=n(42);e.a=function(t,e){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(n.i(r.a)(e)/3)))-n.i(r.a)(Math.abs(t)))}},function(t,e,n){"use strict";var r=n(42);e.a=function(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,n.i(r.a)(e)-n.i(r.a)(t))+1}},function(t,e,n){"use strict";function r(t){return function e(r){function a(e,a){var u=t((e=n.i(i.cubehelix)(e)).h,(a=n.i(i.cubehelix)(a)).h),c=n.i(o.a)(e.s,a.s),s=n.i(o.a)(e.l,a.l),l=n.i(o.a)(e.opacity,a.opacity);return function(t){return e.h=u(t),e.s=c(t),e.l=s(Math.pow(t,r)),e.opacity=l(t),e+""}}return r=+r,a.gamma=e,a}(1)}n.d(e,"a",function(){return a});var i=n(10),o=n(31),a=(r(o.b),r(o.a))},function(t,e,n){"use strict";function r(t){return function(e,r){var a=t((e=n.i(i.hcl)(e)).h,(r=n.i(i.hcl)(r)).h),u=n.i(o.a)(e.c,r.c),c=n.i(o.a)(e.l,r.l),s=n.i(o.a)(e.opacity,r.opacity);return function(t){return e.h=a(t),e.c=u(t),e.l=c(t),e.opacity=s(t),e+""}}}var i=n(10),o=n(31);r(o.b),r(o.a)},function(t,e,n){"use strict";function r(t){return function(e,r){var a=t((e=n.i(i.hsl)(e)).h,(r=n.i(i.hsl)(r)).h),u=n.i(o.a)(e.s,r.s),c=n.i(o.a)(e.l,r.l),s=n.i(o.a)(e.opacity,r.opacity);return function(t){return e.h=a(t),e.s=u(t),e.l=c(t),e.opacity=s(t),e+""}}}var i=n(10),o=n(31);r(o.b),r(o.a)},function(t,e,n){"use strict";n(10),n(31)},function(t,e,n){"use strict"},function(t,e,n){"use strict";e.a=function(t,e){return t=+t,e-=t,function(n){return Math.round(t+e*n)}}},function(t,e,n){"use strict";n.d(e,"a",function(){return i});var r=180/Math.PI,i={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};e.b=function(t,e,n,i,o,a){var u,c,s;return(u=Math.sqrt(t*t+e*e))&&(t/=u,e/=u),(s=t*n+e*i)&&(n-=t*s,i-=e*s),(c=Math.sqrt(n*n+i*i))&&(n/=c,i/=c,s/=c),t*i<e*n&&(t=-t,e=-e,s=-s,u=-u),{translateX:o,translateY:a,rotate:Math.atan2(e,t)*r,skewX:Math.atan(s)*r,scaleX:u,scaleY:c}}},function(t,e,n){"use strict";function r(t,e,r,o){function a(t){return t.length?t.pop()+" ":""}function u(t,o,a,u,c,s){if(t!==a||o!==u){var l=c.push("translate(",null,e,null,r);s.push({i:l-4,x:n.i(i.a)(t,a)},{i:l-2,x:n.i(i.a)(o,u)})}else(a||u)&&c.push("translate("+a+e+u+r)}function c(t,e,r,u){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),u.push({i:r.push(a(r)+"rotate(",null,o)-2,x:n.i(i.a)(t,e)})):e&&r.push(a(r)+"rotate("+e+o)}function s(t,e,r,u){t!==e?u.push({i:r.push(a(r)+"skewX(",null,o)-2,x:n.i(i.a)(t,e)}):e&&r.push(a(r)+"skewX("+e+o)}function l(t,e,r,o,u,c){if(t!==r||e!==o){var s=u.push(a(u)+"scale(",null,",",null,")");c.push({i:s-4,x:n.i(i.a)(t,r)},{i:s-2,x:n.i(i.a)(e,o)})}else 1===r&&1===o||u.push(a(u)+"scale("+r+","+o+")")}return function(e,n){var r=[],i=[];return e=t(e),n=t(n),u(e.translateX,e.translateY,n.translateX,n.translateY,r,i),c(e.rotate,n.rotate,r,i),s(e.skewX,n.skewX,r,i),l(e.scaleX,e.scaleY,n.scaleX,n.scaleY,r,i),e=n=null,function(t){for(var e,n=-1,o=i.length;++n<o;)r[(e=i[n]).i]=e.x(t);return r.join("")}}}var i=n(43),o=n(236);r(o.a,"px, ","px)","deg)"),r(o.b,", ",")",")")},function(t,e,n){"use strict";function r(t){return"none"===t?s.a:(o||(o=document.createElement("DIV"),a=document.documentElement,u=document.defaultView),o.style.transform=t,t=u.getComputedStyle(a.appendChild(o),null).getPropertyValue("transform"),a.removeChild(o),t=t.slice(7,-1).split(","),n.i(s.b)(+t[0],+t[1],+t[2],+t[3],+t[4],+t[5]))}function i(t){return null==t?s.a:(c||(c=document.createElementNS("http://www.w3.org/2000/svg","g")),c.setAttribute("transform",t),(t=c.transform.baseVal.consolidate())?(t=t.matrix,n.i(s.b)(t.a,t.b,t.c,t.d,t.e,t.f)):s.a)}e.a=r,e.b=i;var o,a,u,c,s=n(234)},function(t,e,n){"use strict";Math.SQRT2},function(t,e,n){"use strict";function r(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function i(){return new r}var o=Math.PI,a=2*o,u=a-1e-6;r.prototype=i.prototype={constructor:r,moveTo:function(t,e){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,e){this._+="L"+(this._x1=+t)+","+(this._y1=+e)},quadraticCurveTo:function(t,e,n,r){this._+="Q"+ +t+","+ +e+","+(this._x1=+n)+","+(this._y1=+r)},bezierCurveTo:function(t,e,n,r,i,o){this._+="C"+ +t+","+ +e+","+ +n+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(t,e,n,r,i){t=+t,e=+e,n=+n,r=+r,i=+i;var a=this._x1,u=this._y1,c=n-t,s=r-e,l=a-t,f=u-e,p=l*l+f*f;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=e);else if(p>1e-6)if(Math.abs(f*c-s*l)>1e-6&&i){var h=n-a,d=r-u,v=c*c+s*s,g=h*h+d*d,m=Math.sqrt(v),y=Math.sqrt(p),_=i*Math.tan((o-Math.acos((v+p-g)/(2*m*y)))/2),b=_/y,x=_/m;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*l)+","+(e+b*f)),this._+="A"+i+","+i+",0,0,"+ +(f*h>l*d)+","+(this._x1=t+x*c)+","+(this._y1=e+x*s)}else this._+="L"+(this._x1=t)+","+(this._y1=e);else;},arc:function(t,e,n,r,i,c){t=+t,e=+e,n=+n;var s=n*Math.cos(r),l=n*Math.sin(r),f=t+s,p=e+l,h=1^c,d=c?r-i:i-r;if(n<0)throw new Error("negative radius: "+n);null===this._x1?this._+="M"+f+","+p:(Math.abs(this._x1-f)>1e-6||Math.abs(this._y1-p)>1e-6)&&(this._+="L"+f+","+p),n&&(d<0&&(d=d%a+a),d>u?this._+="A"+n+","+n+",0,1,"+h+","+(t-s)+","+(e-l)+"A"+n+","+n+",0,1,"+h+","+(this._x1=f)+","+(this._y1=p):d>1e-6&&(this._+="A"+n+","+n+",0,"+ +(d>=o)+","+h+","+(this._x1=t+n*Math.cos(i))+","+(this._y1=e+n*Math.sin(i))))},rect:function(t,e,n,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}},e.a=i},function(t,e,n){"use strict";function r(){function t(){var t=c().length,r=l[1]<l[0],o=l[r-0],u=l[1-r];e=(u-o)/Math.max(1,t-p+2*h),f&&(e=Math.floor(e)),o+=(u-o-e*(t-p))*d,i=e*(1-p),f&&(o=Math.round(o),i=Math.round(i));var v=n.i(a.range)(t).map(function(t){return o+e*t});return s(r?v.reverse():v)}var e,i,o=n.i(u.a)().unknown(void 0),c=o.domain,s=o.range,l=[0,1],f=!1,p=0,h=0,d=.5;return delete o.unknown,o.domain=function(e){return arguments.length?(c(e),t()):c()},o.range=function(e){return arguments.length?(l=[+e[0],+e[1]],t()):l.slice()},o.rangeRound=function(e){return l=[+e[0],+e[1]],f=!0,t()},o.bandwidth=function(){return i},o.step=function(){return e},o.round=function(e){return arguments.length?(f=!!e,t()):f},o.padding=function(e){return arguments.length?(p=h=Math.max(0,Math.min(1,e)),t()):p},o.paddingInner=function(e){return arguments.length?(p=Math.max(0,Math.min(1,e)),t()):p},o.paddingOuter=function(e){return arguments.length?(h=Math.max(0,Math.min(1,e)),t()):h},o.align=function(e){return arguments.length?(d=Math.max(0,Math.min(1,e)),t()):d},o.copy=function(){return r().domain(c()).range(l).round(f).paddingInner(p).paddingOuter(h).align(d)},t()}function i(t){var e=t.copy;return t.padding=t.paddingOuter,delete t.paddingInner,delete t.paddingOuter,t.copy=function(){return i(e())},t}function o(){return i(r().paddingInner(1))}e.a=r,e.b=o;var a=n(7),u=n(127)},function(t,e,n){"use strict";var r=n(33);e.a=n.i(r.a)("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf")},function(t,e,n){"use strict";var r=n(33);e.a=n.i(r.a)("1f77b4aec7e8ff7f0effbb782ca02c98df8ad62728ff98969467bdc5b0d58c564bc49c94e377c2f7b6d27f7f7fc7c7c7bcbd22dbdb8d17becf9edae5")},function(t,e,n){"use strict";var r=n(33);e.a=n.i(r.a)("393b795254a36b6ecf9c9ede6379398ca252b5cf6bcedb9c8c6d31bd9e39e7ba52e7cb94843c39ad494ad6616be7969c7b4173a55194ce6dbdde9ed6")},function(t,e,n){"use strict";var r=n(33);e.a=n.i(r.a)("3182bd6baed69ecae1c6dbefe6550dfd8d3cfdae6bfdd0a231a35474c476a1d99bc7e9c0756bb19e9ac8bcbddcdadaeb636363969696bdbdbdd9d9d9")},function(t,e,n){"use strict";var r=n(10),i=n(30);e.a=n.i(i.d)(n.i(r.cubehelix)(300,.5,0),n.i(r.cubehelix)(-240,.5,1))},function(t,e,n){"use strict";function r(){function t(t){return+t}var e=[0,1];return t.invert=t,t.domain=t.range=function(n){return arguments.length?(e=i.a.call(n,a.a),t):e.slice()},t.copy=function(){return r().domain(e)},n.i(o.b)(t)}e.a=r;var i=n(16),o=n(34),a=n(126)},function(t,e,n){"use strict";function r(t,e){return(e=Math.log(e/t))?function(n){return Math.log(n/t)/e}:n.i(p.a)(e)}function i(t,e){return t<0?function(n){return-Math.pow(-e,n)*Math.pow(-t,1-n)}:function(n){return Math.pow(e,n)*Math.pow(t,1-n)}}function o(t){return isFinite(t)?+("1e"+t):t<0?0:t}function a(t){return 10===t?o:t===Math.E?Math.exp:function(e){return Math.pow(t,e)}}function u(t){return t===Math.E?Math.log:10===t&&Math.log10||2===t&&Math.log2||(t=Math.log(t),function(e){return Math.log(e)/t})}function c(t){return function(e){return-t(-e)}}function s(){function t(){return v=u(p),g=a(p),o()[0]<0&&(v=c(v),g=c(g)),e}var e=n.i(d.a)(r,i).domain([1,10]),o=e.domain,p=10,v=u(10),g=a(10);return e.base=function(e){return arguments.length?(p=+e,t()):p},e.domain=function(e){return arguments.length?(o(e),t()):o()},e.ticks=function(t){var e,r=o(),i=r[0],a=r[r.length-1];(e=a<i)&&(f=i,i=a,a=f);var u,c,s,f=v(i),h=v(a),d=null==t?10:+t,m=[];if(!(p%1)&&h-f<d){if(f=Math.round(f)-1,h=Math.round(h)+1,i>0){for(;f<h;++f)for(c=1,u=g(f);c<p;++c)if(!((s=u*c)<i)){if(s>a)break;m.push(s)}}else for(;f<h;++f)for(c=p-1,u=g(f);c>=1;--c)if(!((s=u*c)<i)){if(s>a)break;m.push(s)}}else m=n.i(l.ticks)(f,h,Math.min(h-f,d)).map(g);return e?m.reverse():m},e.tickFormat=function(t,r){if(null==r&&(r=10===p?".0e":","),"function"!=typeof r&&(r=n.i(f.format)(r)),t===1/0)return r;null==t&&(t=10);var i=Math.max(1,p*t/e.ticks().length);return function(t){var e=t/g(Math.round(v(t)));return e*p<p-.5&&(e*=p),e<=i?r(t):""}},e.nice=function(){return o(n.i(h.a)(o(),{floor:function(t){return g(Math.floor(v(t)))},ceil:function(t){return g(Math.ceil(v(t)))}}))},e.copy=function(){return n.i(d.c)(e,s().base(p))},e}e.a=s;var l=n(7),f=n(29),p=n(67),h=n(125),d=n(44)},function(t,e,n){"use strict";function r(t,e){return t<0?-Math.pow(-t,e):Math.pow(t,e)}function i(){function t(t,e){return(e=r(e,o)-(t=r(t,o)))?function(n){return(r(n,o)-t)/e}:n.i(a.a)(e)}function e(t,e){return e=r(e,o)-(t=r(t,o)),function(n){return r(t+e*n,1/o)}}var o=1,s=n.i(c.a)(t,e),l=s.domain;return s.exponent=function(t){return arguments.length?(o=+t,l(l())):o},s.copy=function(){return n.i(c.c)(s,i().exponent(o))},n.i(u.b)(s)}function o(){return i().exponent(.5)}e.a=i,e.b=o;var a=n(67),u=n(34),c=n(44)},function(t,e,n){"use strict";function r(){function t(){var t=0,r=Math.max(1,u.length);for(c=new Array(r-1);++t<r;)c[t-1]=n.i(i.quantile)(a,t/r);return e}function e(t){if(!isNaN(t=+t))return u[n.i(i.bisect)(c,t)]}var a=[],u=[],c=[];return e.invertExtent=function(t){var e=u.indexOf(t);return e<0?[NaN,NaN]:[e>0?c[e-1]:a[0],e<c.length?c[e]:a[a.length-1]]},e.domain=function(e){if(!arguments.length)return a.slice();a=[];for(var n,r=0,o=e.length;r<o;++r)null==(n=e[r])||isNaN(n=+n)||a.push(n);return a.sort(i.ascending),t()},e.range=function(e){return arguments.length?(u=o.b.call(e),t()):u.slice()},e.quantiles=function(){return c.slice()},e.copy=function(){return r().domain(a).range(u)},e}e.a=r;var i=n(7),o=n(16)},function(t,e,n){"use strict";function r(){function t(t){if(t<=t)return f[n.i(i.bisect)(l,t,0,s)]}function e(){var e=-1;for(l=new Array(s);++e<s;)l[e]=((e+1)*c-(e-s)*u)/(s+1);return t}var u=0,c=1,s=1,l=[.5],f=[0,1];return t.domain=function(t){return arguments.length?(u=+t[0],c=+t[1],e()):[u,c]},t.range=function(t){return arguments.length?(s=(f=o.b.call(t)).length-1,e()):f.slice()},t.invertExtent=function(t){var e=f.indexOf(t);return e<0?[NaN,NaN]:e<1?[u,l[0]]:e>=s?[l[s-1],c]:[l[e-1],l[e]]},t.copy=function(){return r().domain([u,c]).range(f)},n.i(a.b)(t)}e.a=r;var i=n(7),o=n(16),a=n(34)},function(t,e,n){"use strict";n.d(e,"b",function(){return o}),n.d(e,"c",function(){return a});var r=n(10),i=n(30),o=n.i(i.d)(n.i(r.cubehelix)(-100,.75,.35),n.i(r.cubehelix)(80,1.5,.8)),a=n.i(i.d)(n.i(r.cubehelix)(260,.75,.35),n.i(r.cubehelix)(80,1.5,.8)),u=n.i(r.cubehelix)();e.a=function(t){(t<0||t>1)&&(t-=Math.floor(t));var e=Math.abs(t-.5);return u.h=360*t-100,u.s=1.5-1.5*e,u.l=.8-.9*e,u+""}},function(t,e,n){"use strict";function r(t){function e(e){var n=(e-o)/(a-o);return t(u?Math.max(0,Math.min(1,n)):n)}var o=0,a=1,u=!1;return e.domain=function(t){return arguments.length?(o=+t[0],a=+t[1],e):[o,a]},e.clamp=function(t){return arguments.length?(u=!!t,e):u},e.interpolator=function(n){return arguments.length?(t=n,e):t},e.copy=function(){return r(t).domain([o,a]).clamp(u)},n.i(i.b)(e)}e.a=r;var i=n(34)},function(t,e,n){"use strict";function r(){function t(t){if(t<=t)return a[n.i(i.bisect)(e,t,0,u)]}var e=[.5],a=[0,1],u=1;return t.domain=function(n){return arguments.length?(e=o.b.call(n),u=Math.min(e.length,a.length-1),t):e.slice()},t.range=function(n){return arguments.length?(a=o.b.call(n),u=Math.min(e.length,a.length-1),t):a.slice()},t.invertExtent=function(t){var n=a.indexOf(t);return[e[n-1],e[n]]},t.copy=function(){return r().domain(e).range(a)},t}e.a=r;var i=n(7),o=n(16)},function(t,e,n){"use strict";var r=n(7),i=n(29);e.a=function(t,e,o){var a,u=t[0],c=t[t.length-1],s=n.i(r.tickStep)(u,c,null==e?10:e);switch(o=n.i(i.formatSpecifier)(null==o?",f":o),o.type){case"s":var l=Math.max(Math.abs(u),Math.abs(c));return null!=o.precision||isNaN(a=n.i(i.precisionPrefix)(s,l))||(o.precision=a),n.i(i.formatPrefix)(o,l);case"":case"e":case"g":case"p":case"r":null!=o.precision||isNaN(a=n.i(i.precisionRound)(s,Math.max(Math.abs(u),Math.abs(c))))||(o.precision=a-("e"===o.type));break;case"f":case"%":null!=o.precision||isNaN(a=n.i(i.precisionFixed)(s))||(o.precision=a-2*("%"===o.type))}return n.i(i.format)(o)}},function(t,e,n){"use strict";var r=n(128),i=n(78),o=n(80);e.a=function(){return n.i(r.b)(o.h,o.k,o.l,o.b,o.m,o.n,o.o,o.p,i.utcFormat).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)])}},function(t,e,n){"use strict";function r(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}}n.d(e,"b",function(){return o}),n.d(e,"c",function(){return a}),n.d(e,"d",function(){return u});var i=n(33);e.a=r(n.i(i.a)("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725"));var o=r(n.i(i.a)("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),a=r(n.i(i.a)("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),u=r(n.i(i.a)("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921"))},function(t,e,n){"use strict";e.a=function(t){return function(){return t}}},function(t,e,n){"use strict";var r=n(45),i=n(131);e.a=function(t){return n.i(i.a)(n.i(r.a)(t).call(document.documentElement))}},function(t,e,n){"use strict";function r(){return new i}function i(){this._="@"+(++o).toString(36)}e.a=r;var o=0;i.prototype=r.prototype={constructor:i,get:function(t){for(var e=this._;!(e in t);)if(!(t=t.parentNode))return;return t[e]},set:function(t,e){return t[this._]=e},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}}},function(t,e,n){"use strict";var r=n(72),i=n(46);e.a=function(t){var e=n.i(r.a)();return e.changedTouches&&(e=e.changedTouches[0]),n.i(i.a)(t,e)}},function(t,e,n){"use strict";var r=n(8);e.a=function(t){return"string"==typeof t?new r.b([document.querySelectorAll(t)],[document.documentElement]):new r.b([null==t?[]:t],r.c)}},function(t,e,n){"use strict";var r=n(45);e.a=function(t){var e="function"==typeof t?t:n.i(r.a)(t);return this.select(function(){return this.appendChild(e.apply(this,arguments))})}},function(t,e,n){"use strict";function r(t){return function(){this.removeAttribute(t)}}function i(t){return function(){this.removeAttributeNS(t.space,t.local)}}function o(t,e){return function(){this.setAttribute(t,e)}}function a(t,e){return function(){this.setAttributeNS(t.space,t.local,e)}}function u(t,e){return function(){var n=e.apply(this,arguments);null==n?this.removeAttribute(t):this.setAttribute(t,n)}}function c(t,e){return function(){var n=e.apply(this,arguments);null==n?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,n)}}var s=n(68);e.a=function(t,e){var l=n.i(s.a)(t);if(arguments.length<2){var f=this.node();return l.local?f.getAttributeNS(l.space,l.local):f.getAttribute(l)}return this.each((null==e?l.local?i:r:"function"==typeof e?l.local?c:u:l.local?a:o)(l,e))}},function(t,e,n){"use strict";e.a=function(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this}},function(t,e,n){"use strict";function r(t){return t.trim().split(/^|\s+/)}function i(t){return t.classList||new o(t)}function o(t){this._node=t,this._names=r(t.getAttribute("class")||"")}function a(t,e){for(var n=i(t),r=-1,o=e.length;++r<o;)n.add(e[r])}function u(t,e){for(var n=i(t),r=-1,o=e.length;++r<o;)n.remove(e[r])}function c(t){return function(){a(this,t)}}function s(t){return function(){u(this,t)}}function l(t,e){return function(){(e.apply(this,arguments)?a:u)(this,t)}}o.prototype={add:function(t){this._names.indexOf(t)<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var e=this._names.indexOf(t);e>=0&&(this._names.splice(e,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}},e.a=function(t,e){var n=r(t+"");if(arguments.length<2){for(var o=i(this.node()),a=-1,u=n.length;++a<u;)if(!o.contains(n[a]))return!1;return!0}return this.each(("function"==typeof e?l:e?c:s)(n,e))}},function(t,e,n){"use strict";function r(){return this.parentNode.insertBefore(this.cloneNode(!1),this.nextSibling)}function i(){return this.parentNode.insertBefore(this.cloneNode(!0),this.nextSibling)}e.a=function(t){return this.select(t?i:r)}},function(t,e,n){"use strict";function r(t,e,n,r,i,o){for(var u,c=0,s=e.length,l=o.length;c<l;++c)(u=e[c])?(u.__data__=o[c],r[c]=u):n[c]=new a.b(t,o[c]);for(;c<s;++c)(u=e[c])&&(i[c]=u)}function i(t,e,n,r,i,o,u){var s,l,f,p={},h=e.length,d=o.length,v=new Array(h);for(s=0;s<h;++s)(l=e[s])&&(v[s]=f=c+u.call(l,l.__data__,s,e),f in p?i[s]=l:p[f]=l);for(s=0;s<d;++s)f=c+u.call(t,o[s],s,o),(l=p[f])?(r[s]=l,l.__data__=o[s],p[f]=null):n[s]=new a.b(t,o[s]);for(s=0;s<h;++s)(l=e[s])&&p[v[s]]===l&&(i[s]=l)}var o=n(8),a=n(132),u=n(256),c="$";e.a=function(t,e){if(!t)return y=new Array(this.size()),d=-1,this.each(function(t){y[++d]=t}),y;var a=e?i:r,c=this._parents,s=this._groups;"function"!=typeof t&&(t=n.i(u.a)(t));for(var l=s.length,f=new Array(l),p=new Array(l),h=new Array(l),d=0;d<l;++d){var v=c[d],g=s[d],m=g.length,y=t.call(v,v&&v.__data__,d,c),_=y.length,b=p[d]=new Array(_),x=f[d]=new Array(_);a(v,g,b,x,h[d]=new Array(m),y,e);for(var w,C,k=0,E=0;k<_;++k)if(w=b[k]){for(k>=E&&(E=k+1);!(C=x[E])&&++E<_;);w._next=C||null}}return f=new o.b(f,c),f._enter=p,f._exit=h,f}},function(t,e,n){"use strict";e.a=function(t){return arguments.length?this.property("__data__",t):this.node().__data__}},function(t,e,n){"use strict";function r(t,e,r){var i=n.i(a.a)(t),o=i.CustomEvent;"function"==typeof o?o=new o(e,r):(o=i.document.createEvent("Event"),r?(o.initEvent(e,r.bubbles,r.cancelable),o.detail=r.detail):o.initEvent(e,!1,!1)),t.dispatchEvent(o)}function i(t,e){return function(){return r(this,t,e)}}function o(t,e){return function(){return r(this,t,e.apply(this,arguments))}}var a=n(73);e.a=function(t,e){return this.each(("function"==typeof e?o:i)(t,e))}},function(t,e,n){"use strict";e.a=function(t){for(var e=this._groups,n=0,r=e.length;n<r;++n)for(var i,o=e[n],a=0,u=o.length;a<u;++a)(i=o[a])&&t.call(i,i.__data__,a,o);return this}},function(t,e,n){"use strict";e.a=function(){return!this.node()}},function(t,e,n){"use strict";var r=n(133),i=n(8);e.a=function(){return new i.b(this._exit||this._groups.map(r.a),this._parents)}},function(t,e,n){"use strict";var r=n(8),i=n(130);e.a=function(t){"function"!=typeof t&&(t=n.i(i.a)(t));for(var e=this._groups,o=e.length,a=new Array(o),u=0;u<o;++u)for(var c,s=e[u],l=s.length,f=a[u]=[],p=0;p<l;++p)(c=s[p])&&t.call(c,c.__data__,p,s)&&f.push(c);return new r.b(a,this._parents)}},function(t,e,n){"use strict";function r(){this.innerHTML=""}function i(t){return function(){this.innerHTML=t}}function o(t){return function(){var e=t.apply(this,arguments);this.innerHTML=null==e?"":e}}e.a=function(t){return arguments.length?this.each(null==t?r:("function"==typeof t?o:i)(t)):this.node().innerHTML}},function(t,e,n){"use strict";function r(){return null}var i=n(45),o=n(71);e.a=function(t,e){var a="function"==typeof t?t:n.i(i.a)(t),u=null==e?r:"function"==typeof e?e:n.i(o.a)(e);return this.select(function(){return this.insertBefore(a.apply(this,arguments),u.apply(this,arguments)||null)})}},function(t,e,n){"use strict";function r(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}e.a=function(){return this.each(r)}},function(t,e,n){"use strict";var r=n(8);e.a=function(t){for(var e=this._groups,n=t._groups,i=e.length,o=n.length,a=Math.min(i,o),u=new Array(i),c=0;c<a;++c)for(var s,l=e[c],f=n[c],p=l.length,h=u[c]=new Array(p),d=0;d<p;++d)(s=l[d]||f[d])&&(h[d]=s);for(;c<i;++c)u[c]=e[c];return new r.b(u,this._parents)}},function(t,e,n){"use strict";e.a=function(){for(var t=this._groups,e=0,n=t.length;e<n;++e)for(var r=t[e],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null}},function(t,e,n){"use strict";e.a=function(){var t=new Array(this.size()),e=-1;return this.each(function(){t[++e]=this}),t}},function(t,e,n){"use strict";e.a=function(){for(var t=this._groups,e=-1,n=t.length;++e<n;)for(var r,i=t[e],o=i.length-1,a=i[o];--o>=0;)(r=i[o])&&(a&&a!==r.nextSibling&&a.parentNode.insertBefore(r,a),a=r);return this}},function(t,e,n){"use strict";function r(t){return function(){delete this[t]}}function i(t,e){return function(){this[t]=e}}function o(t,e){return function(){var n=e.apply(this,arguments);null==n?delete this[t]:this[t]=n}}e.a=function(t,e){return arguments.length>1?this.each((null==e?r:"function"==typeof e?o:i)(t,e)):this.node()[t]}},function(t,e,n){"use strict";function r(){this.nextSibling&&this.parentNode.appendChild(this)}e.a=function(){return this.each(r)}},function(t,e,n){"use strict";function r(){var t=this.parentNode;t&&t.removeChild(this)}e.a=function(){return this.each(r)}},function(t,e,n){"use strict";var r=n(8),i=n(71);e.a=function(t){"function"!=typeof t&&(t=n.i(i.a)(t));for(var e=this._groups,o=e.length,a=new Array(o),u=0;u<o;++u)for(var c,s,l=e[u],f=l.length,p=a[u]=new Array(f),h=0;h<f;++h)(c=l[h])&&(s=t.call(c,c.__data__,h,l))&&("__data__"in c&&(s.__data__=c.__data__),p[h]=s);return new r.b(a,this._parents)}},function(t,e,n){"use strict";var r=n(8),i=n(135);e.a=function(t){"function"!=typeof t&&(t=n.i(i.a)(t));for(var e=this._groups,o=e.length,a=[],u=[],c=0;c<o;++c)for(var s,l=e[c],f=l.length,p=0;p<f;++p)(s=l[p])&&(a.push(t.call(s,s.__data__,p,l)),u.push(s));return new r.b(a,u)}},function(t,e,n){"use strict";e.a=function(){var t=0;return this.each(function(){++t}),t}},function(t,e,n){"use strict";function r(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}var i=n(8);e.a=function(t){function e(e,n){return e&&n?t(e.__data__,n.__data__):!e-!n}t||(t=r);for(var n=this._groups,o=n.length,a=new Array(o),u=0;u<o;++u){for(var c,s=n[u],l=s.length,f=a[u]=new Array(l),p=0;p<l;++p)(c=s[p])&&(f[p]=c);f.sort(e)}return new i.b(a,this._parents).order()}},function(t,e,n){"use strict";function r(){this.textContent=""}function i(t){return function(){this.textContent=t}}function o(t){return function(){var e=t.apply(this,arguments);this.textContent=null==e?"":e}}e.a=function(t){return arguments.length?this.each(null==t?r:("function"==typeof t?o:i)(t)):this.node().textContent}},function(t,e,n){"use strict";var r=n(72),i=n(46);e.a=function(t,e,o){arguments.length<3&&(o=e,e=n.i(r.a)().changedTouches);for(var a,u=0,c=e?e.length:0;u<c;++u)if((a=e[u]).identifier===o)return n.i(i.a)(t,a);return null}},function(t,e,n){"use strict";var r=n(72),i=n(46);e.a=function(t,e){null==e&&(e=n.i(r.a)().touches);for(var o=0,a=e?e.length:0,u=new Array(a);o<a;++o)u[o]=n.i(i.a)(t,e[o]);return u}},function(t,e,n){"use strict";function r(t){return t.innerRadius}function i(t){return t.outerRadius}function o(t){return t.startAngle}function a(t){return t.endAngle}function u(t){return t&&t.padAngle}function c(t,e,n,r,i,o,a,u){var c=n-t,s=r-e,l=a-i,f=u-o,p=(l*(e-o)-f*(t-i))/(f*c-l*s);return[t+p*c,e+p*s]}function s(t,e,r,i,o,a,u){var c=t-r,s=e-i,l=(u?a:-a)/n.i(p.d)(c*c+s*s),f=l*s,h=-l*c,d=t+f,v=e+h,g=r+f,m=i+h,y=(d+g)/2,_=(v+m)/2,b=g-d,x=m-v,w=b*b+x*x,C=o-a,k=d*m-g*v,E=(x<0?-1:1)*n.i(p.d)(n.i(p.e)(0,C*C*w-k*k)),M=(k*x-b*E)/w,T=(-k*b-x*E)/w,S=(k*x+b*E)/w,N=(-k*b+x*E)/w,A=M-y,P=T-_,O=S-y,I=N-_;return A*A+P*P>O*O+I*I&&(M=S,T=N),{cx:M,cy:T,x01:-f,y01:-h,x11:M*(o/C-1),y11:T*(o/C-1)}}var l=n(32),f=n(17),p=n(35);e.a=function(){function t(){var t,r,i=+e.apply(this,arguments),o=+h.apply(this,arguments),a=g.apply(this,arguments)-p.f,u=m.apply(this,arguments)-p.f,f=n.i(p.g)(u-a),b=u>a;if(_||(_=t=n.i(l.a)()),o<i&&(r=o,o=i,i=r),o>p.a)if(f>p.c-p.a)_.moveTo(o*n.i(p.h)(a),o*n.i(p.i)(a)),_.arc(0,0,o,a,u,!b),i>p.a&&(_.moveTo(i*n.i(p.h)(u),i*n.i(p.i)(u)),_.arc(0,0,i,u,a,b));else{var x,w,C=a,k=u,E=a,M=u,T=f,S=f,N=y.apply(this,arguments)/2,A=N>p.a&&(v?+v.apply(this,arguments):n.i(p.d)(i*i+o*o)),P=n.i(p.j)(n.i(p.g)(o-i)/2,+d.apply(this,arguments)),O=P,I=P;if(A>p.a){var D=n.i(p.k)(A/i*n.i(p.i)(N)),R=n.i(p.k)(A/o*n.i(p.i)(N));(T-=2*D)>p.a?(D*=b?1:-1,E+=D,M-=D):(T=0,E=M=(a+u)/2),(S-=2*R)>p.a?(R*=b?1:-1,C+=R,k-=R):(S=0,C=k=(a+u)/2)}var L=o*n.i(p.h)(C),U=o*n.i(p.i)(C),F=i*n.i(p.h)(M),j=i*n.i(p.i)(M);if(P>p.a){var B=o*n.i(p.h)(k),V=o*n.i(p.i)(k),W=i*n.i(p.h)(E),z=i*n.i(p.i)(E);if(f<p.b){var H=T>p.a?c(L,U,W,z,B,V,F,j):[F,j],q=L-H[0],Y=U-H[1],K=B-H[0],G=V-H[1],$=1/n.i(p.i)(n.i(p.l)((q*K+Y*G)/(n.i(p.d)(q*q+Y*Y)*n.i(p.d)(K*K+G*G)))/2),X=n.i(p.d)(H[0]*H[0]+H[1]*H[1]);O=n.i(p.j)(P,(i-X)/($-1)),I=n.i(p.j)(P,(o-X)/($+1))}}S>p.a?I>p.a?(x=s(W,z,L,U,o,I,b),w=s(B,V,F,j,o,I,b),_.moveTo(x.cx+x.x01,x.cy+x.y01),I<P?_.arc(x.cx,x.cy,I,n.i(p.m)(x.y01,x.x01),n.i(p.m)(w.y01,w.x01),!b):(_.arc(x.cx,x.cy,I,n.i(p.m)(x.y01,x.x01),n.i(p.m)(x.y11,x.x11),!b),_.arc(0,0,o,n.i(p.m)(x.cy+x.y11,x.cx+x.x11),n.i(p.m)(w.cy+w.y11,w.cx+w.x11),!b),_.arc(w.cx,w.cy,I,n.i(p.m)(w.y11,w.x11),n.i(p.m)(w.y01,w.x01),!b))):(_.moveTo(L,U),_.arc(0,0,o,C,k,!b)):_.moveTo(L,U),i>p.a&&T>p.a?O>p.a?(x=s(F,j,B,V,i,-O,b),w=s(L,U,W,z,i,-O,b),_.lineTo(x.cx+x.x01,x.cy+x.y01),O<P?_.arc(x.cx,x.cy,O,n.i(p.m)(x.y01,x.x01),n.i(p.m)(w.y01,w.x01),!b):(_.arc(x.cx,x.cy,O,n.i(p.m)(x.y01,x.x01),n.i(p.m)(x.y11,x.x11),!b),_.arc(0,0,i,n.i(p.m)(x.cy+x.y11,x.cx+x.x11),n.i(p.m)(w.cy+w.y11,w.cx+w.x11),b),_.arc(w.cx,w.cy,O,n.i(p.m)(w.y11,w.x11),n.i(p.m)(w.y01,w.x01),!b))):_.arc(0,0,i,M,E,b):_.lineTo(F,j)}else _.moveTo(0,0);if(_.closePath(),t)return _=null,t+""||null}var e=r,h=i,d=n.i(f.a)(0),v=null,g=o,m=a,y=u,_=null;return t.centroid=function(){var t=(+e.apply(this,arguments)+ +h.apply(this,arguments))/2,r=(+g.apply(this,arguments)+ +m.apply(this,arguments))/2-p.b/2;return[n.i(p.h)(r)*t,n.i(p.i)(r)*t]},t.innerRadius=function(r){return arguments.length?(e="function"==typeof r?r:n.i(f.a)(+r),t):e},t.outerRadius=function(e){return arguments.length?(h="function"==typeof e?e:n.i(f.a)(+e),t):h},t.cornerRadius=function(e){return arguments.length?(d="function"==typeof e?e:n.i(f.a)(+e),t):d},t.padRadius=function(e){return arguments.length?(v=null==e?null:"function"==typeof e?e:n.i(f.a)(+e),t):v},t.startAngle=function(e){return arguments.length?(g="function"==typeof e?e:n.i(f.a)(+e),t):g},t.endAngle=function(e){return arguments.length?(m="function"==typeof e?e:n.i(f.a)(+e),t):m},t.padAngle=function(e){return arguments.length?(y="function"==typeof e?e:n.i(f.a)(+e),t):y},t.context=function(e){return arguments.length?(_=null==e?null:e,t):_},t}},function(t,e,n){"use strict";var r=n(141),i=n(137),o=n(142);e.a=function(){var t=n.i(i.a)().curve(r.b),e=t.curve,a=t.lineX0,u=t.lineX1,c=t.lineY0,s=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return n.i(o.b)(a())},delete t.lineX0,t.lineEndAngle=function(){return n.i(o.b)(u())},delete t.lineX1,t.lineInnerRadius=function(){return n.i(o.b)(c())},delete t.lineY0,t.lineOuterRadius=function(){return n.i(o.b)(s())},delete t.lineY1,t.curve=function(t){return arguments.length?e(n.i(r.a)(t)):e()._curve},t}},function(t,e,n){"use strict";function r(t){this._context=t}var i=n(50),o=n(47);r.prototype={areaStart:i.a,areaEnd:i.a,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:n.i(o.c)(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},e.a=function(t){return new r(t)}},function(t,e,n){"use strict";function r(t){this._context=t}var i=n(47);r.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,o=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,o):this._context.moveTo(r,o);break;case 3:this._point=4;default:n.i(i.c)(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},e.a=function(t){return new r(t)}},function(t,e,n){"use strict";function r(t,e){this._basis=new i.b(t),this._beta=e}var i=n(47);r.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,n=t.length-1;if(n>0)for(var r,i=t[0],o=e[0],a=t[n]-i,u=e[n]-o,c=-1;++c<=n;)r=c/n,this._basis.point(this._beta*t[c]+(1-this._beta)*(i+r*a),this._beta*e[c]+(1-this._beta)*(o+r*u));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}},e.a=function t(e){function n(t){return 1===e?new i.b(t):new r(t,e)}return n.beta=function(e){return t(+e)},n}(.85)},function(t,e,n){"use strict";function r(t,e){this._context=t,this._alpha=e}var i=n(139),o=n(50),a=n(74);r.prototype={areaStart:o.a,areaEnd:o.a,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,i=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+i*i,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:n.i(a.b)(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}},e.a=function t(e){function n(t){return e?new r(t,e):new i.b(t,0)}return n.alpha=function(e){return t(+e)},n}(.5)},function(t,e,n){"use strict";function r(t,e){this._context=t,this._alpha=e}var i=n(140),o=n(74);r.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,i=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+i*i,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:n.i(o.b)(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}},e.a=function t(e){function n(t){return e?new r(t,e):new i.b(t,0)}return n.alpha=function(e){return t(+e)},n}(.5)},function(t,e,n){"use strict";function r(t){this._context=t}var i=n(50);r.prototype={areaStart:i.a,areaEnd:i.a,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,e){t=+t,e=+e,this._point?this._context.lineTo(t,e):(this._point=1,this._context.moveTo(t,e))}},e.a=function(t){return new r(t)}},function(t,e,n){"use strict";function r(t){return t<0?-1:1}function i(t,e,n){var i=t._x1-t._x0,o=e-t._x1,a=(t._y1-t._y0)/(i||o<0&&-0),u=(n-t._y1)/(o||i<0&&-0),c=(a*o+u*i)/(i+o);return(r(a)+r(u))*Math.min(Math.abs(a),Math.abs(u),.5*Math.abs(c))||0}function o(t,e){var n=t._x1-t._x0;return n?(3*(t._y1-t._y0)/n-e)/2:e}function a(t,e,n){var r=t._x0,i=t._y0,o=t._x1,a=t._y1,u=(o-r)/3;t._context.bezierCurveTo(r+u,i+u*e,o-u,a-u*n,o,a)}function u(t){this._context=t}function c(t){this._context=new s(t)}function s(t){this._context=t}function l(t){return new u(t)}function f(t){return new c(t)}e.a=l,e.b=f,u.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:a(this,this._t0,o(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){var n=NaN;if(t=+t,e=+e,t!==this._x1||e!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,a(this,o(this,n=i(this,t,e)),n);break;default:a(this,this._t0,n=i(this,t,e))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e,this._t0=n}}},(c.prototype=Object.create(u.prototype)).point=function(t,e){u.prototype.point.call(this,e,t)},s.prototype={moveTo:function(t,e){this._context.moveTo(e,t)},closePath:function(){this._context.closePath()},lineTo:function(t,e){this._context.lineTo(e,t)},bezierCurveTo:function(t,e,n,r,i,o){this._context.bezierCurveTo(e,t,r,n,o,i)}}},function(t,e,n){"use strict";function r(t){this._context=t}function i(t){var e,n,r=t.length-1,i=new Array(r),o=new Array(r),a=new Array(r);for(i[0]=0,o[0]=2,a[0]=t[0]+2*t[1],e=1;e<r-1;++e)i[e]=1,o[e]=4,a[e]=4*t[e]+2*t[e+1];for(i[r-1]=2,o[r-1]=7,a[r-1]=8*t[r-1]+t[r],e=1;e<r;++e)n=i[e]/o[e-1],o[e]-=n,a[e]-=n*a[e-1];for(i[r-1]=a[r-1]/o[r-1],e=r-2;e>=0;--e)i[e]=(a[e]-i[e+1])/o[e];for(o[r-1]=(t[r]+i[r-1])/2,e=0;e<r-1;++e)o[e]=2*t[e+1]-i[e+1];return[i,o]}r.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,e=this._y,n=t.length;if(n)if(this._line?this._context.lineTo(t[0],e[0]):this._context.moveTo(t[0],e[0]),2===n)this._context.lineTo(t[1],e[1]);else for(var r=i(t),o=i(e),a=0,u=1;u<n;++a,++u)this._context.bezierCurveTo(r[0][a],o[0][a],r[1][a],o[1][a],t[u],e[u]);(this._line||0!==this._line&&1===n)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,e){this._x.push(+t),this._y.push(+e)}},e.a=function(t){return new r(t)}},function(t,e,n){"use strict";function r(t,e){this._context=t,this._t=e}function i(t){return new r(t,0)}function o(t){return new r(t,1)}e.c=i,e.b=o,r.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var n=this._x*(1-this._t)+t*this._t;this._context.lineTo(n,this._y),this._context.lineTo(n,e)}}this._x=t,this._y=e}},e.a=function(t){return new r(t,.5)}},function(t,e,n){"use strict";e.a=function(t,e){return e<t?-1:e>t?1:e>=t?0:NaN}},function(t,e,n){"use strict";e.a=function(t){return t}},function(t,e,n){"use strict";function r(t){return t.source}function i(t){return t.target}function o(t){function e(){var e,r=h.a.call(arguments),i=o.apply(this,r),l=a.apply(this,r);if(s||(s=e=n.i(p.a)()),t(s,+u.apply(this,(r[0]=i,r)),+c.apply(this,r),+u.apply(this,(r[0]=l,r)),+c.apply(this,r)),e)return s=null,e+""||null}var o=r,a=i,u=v.a,c=v.b,s=null;return e.source=function(t){return arguments.length?(o=t,e):o},e.target=function(t){return arguments.length?(a=t,e):a},e.x=function(t){return arguments.length?(u="function"==typeof t?t:n.i(d.a)(+t),e):u},e.y=function(t){return arguments.length?(c="function"==typeof t?t:n.i(d.a)(+t),e):c},e.context=function(t){return arguments.length?(s=null==t?null:t,e):s},e}function a(t,e,n,r,i){t.moveTo(e,n),t.bezierCurveTo(e=(e+r)/2,n,e,i,r,i)}function u(t,e,n,r,i){t.moveTo(e,n),t.bezierCurveTo(e,n=(n+i)/2,r,n,r,i)}function c(t,e,r,i,o){var a=n.i(g.a)(e,r),u=n.i(g.a)(e,r=(r+o)/2),c=n.i(g.a)(i,r),s=n.i(g.a)(i,o);t.moveTo(a[0],a[1]),t.bezierCurveTo(u[0],u[1],c[0],c[1],s[0],s[1])}function s(){return o(a)}function l(){return o(u)}function f(){var t=o(c);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t}e.a=s,e.b=l,e.c=f;var p=n(32),h=n(138),d=n(17),v=n(77),g=n(143)},function(t,e,n){"use strict";e.a=function(t,e){if((u=t.length)>1)for(var n,r,i,o,a,u,c=0,s=t[e[0]].length;c<s;++c)for(o=a=0,n=0;n<u;++n)(i=(r=t[e[n]][c])[1]-r[0])>=0?(r[0]=o,r[1]=o+=i):i<0?(r[1]=a,r[0]=a+=i):r[0]=o}},function(t,e,n){"use strict";var r=n(36);e.a=function(t,e){if((o=t.length)>0){for(var i,o,a,u=0,c=t[0].length;u<c;++u){for(a=i=0;i<o;++i)a+=t[i][u][1]||0;if(a)for(i=0;i<o;++i)t[i][u][1]/=a}n.i(r.a)(t,e)}}},function(t,e,n){"use strict";var r=n(36);e.a=function(t,e){if((i=t.length)>0){for(var i,o=0,a=t[e[0]],u=a.length;o<u;++o){for(var c=0,s=0;c<i;++c)s+=t[c][o][1]||0;a[o][1]+=a[o][0]=-s/2}n.i(r.a)(t,e)}}},function(t,e,n){"use strict";var r=n(36);e.a=function(t,e){if((a=t.length)>0&&(o=(i=t[e[0]]).length)>0){for(var i,o,a,u=0,c=1;c<o;++c){for(var s=0,l=0,f=0;s<a;++s){for(var p=t[e[s]],h=p[c][1]||0,d=p[c-1][1]||0,v=(h-d)/2,g=0;g<s;++g){var m=t[e[g]];v+=(m[c][1]||0)-(m[c-1][1]||0)}l+=h,f+=v*h}i[c-1][1]+=i[c-1][0]=u,l&&(u-=f/l)}i[c-1][1]+=i[c-1][0]=u,n.i(r.a)(t,e)}}},function(t,e,n){"use strict";var r=n(76);e.a=function(t){return n.i(r.a)(t).reverse()}},function(t,e,n){"use strict";var r=n(37),i=n(76);e.a=function(t){var e,o,a=t.length,u=t.map(i.b),c=n.i(r.a)(t).sort(function(t,e){return u[e]-u[t]}),s=0,l=0,f=[],p=[];for(e=0;e<a;++e)o=c[e],s<l?(s+=u[o],f.push(o)):(l+=u[o],p.push(o));return p.reverse().concat(f)}},function(t,e,n){"use strict";var r=n(37);e.a=function(t){return n.i(r.a)(t).reverse()}},function(t,e,n){"use strict";var r=n(17),i=n(301),o=n(302),a=n(35);e.a=function(){function t(t){var n,r,i,o,p,h=t.length,d=0,v=new Array(h),g=new Array(h),m=+s.apply(this,arguments),y=Math.min(a.c,Math.max(-a.c,l.apply(this,arguments)-m)),_=Math.min(Math.abs(y)/h,f.apply(this,arguments)),b=_*(y<0?-1:1);for(n=0;n<h;++n)(p=g[v[n]=n]=+e(t[n],n,t))>0&&(d+=p);for(null!=u?v.sort(function(t,e){return u(g[t],g[e])}):null!=c&&v.sort(function(e,n){return c(t[e],t[n])}),n=0,i=d?(y-h*b)/d:0;n<h;++n,m=o)r=v[n],p=g[r],o=m+(p>0?p*i:0)+b,g[r]={data:t[r],index:n,value:p,startAngle:m,endAngle:o,padAngle:_};return g}var e=o.a,u=i.a,c=null,s=n.i(r.a)(0),l=n.i(r.a)(a.c),f=n.i(r.a)(0);return t.value=function(i){return arguments.length?(e="function"==typeof i?i:n.i(r.a)(+i),t):e},t.sortValues=function(e){return arguments.length?(u=e,c=null,t):u},t.sort=function(e){return arguments.length?(c=e,u=null,t):c},t.startAngle=function(e){return arguments.length?(s="function"==typeof e?e:n.i(r.a)(+e),t):s},t.endAngle=function(e){return arguments.length?(l="function"==typeof e?e:n.i(r.a)(+e),t):l},t.padAngle=function(e){return arguments.length?(f="function"==typeof e?e:n.i(r.a)(+e),t):f},t}},function(t,e,n){"use strict";function r(t,e){return t[e]}var i=n(138),o=n(17),a=n(36),u=n(37);e.a=function(){function t(t){var n,r,i=e.apply(this,arguments),o=t.length,a=i.length,u=new Array(a);for(n=0;n<a;++n){for(var f,p=i[n],h=u[n]=new Array(o),d=0;d<o;++d)h[d]=f=[0,+l(t[d],p,d,t)],f.data=t[d];h.key=p}for(n=0,r=c(u);n<a;++n)u[r[n]].index=n;return s(u,r),u}var e=n.i(o.a)([]),c=u.a,s=a.a,l=r;return t.keys=function(r){return arguments.length?(e="function"==typeof r?r:n.i(o.a)(i.a.call(r)),t):e},t.value=function(e){return arguments.length?(l="function"==typeof e?e:n.i(o.a)(+e),t):l},t.order=function(e){return arguments.length?(c=null==e?u.a:"function"==typeof e?e:n.i(o.a)(i.a.call(e)),t):c},t.offset=function(e){return arguments.length?(s=null==e?a.a:e,t):s},t}},function(t,e,n){"use strict";n.d(e,"b",function(){return p});var r=n(32),i=n(144),o=n(145),a=n(146),u=n(148),c=n(147),s=n(149),l=n(150),f=n(17),p=[i.a,o.a,a.a,c.a,u.a,s.a,l.a];e.a=function(){function t(){var t;if(a||(a=t=n.i(r.a)()),e.apply(this,arguments).draw(a,+o.apply(this,arguments)),t)return a=null,t+""||null}var e=n.i(f.a)(i.a),o=n.i(f.a)(64),a=null;return t.type=function(r){return arguments.length?(e="function"==typeof r?r:n.i(f.a)(r),t):e},t.size=function(e){return arguments.length?(o="function"==typeof e?e:n.i(f.a)(+e),t):o},t.context=function(e){return arguments.length?(a=null==e?null:e,t):a},t}},function(t,e,n){"use strict";function r(t){var e=new Date(t);return isNaN(e)?null:e}var i=n(151),o=n(79),a=+new Date("2000-01-01T00:00:00.000Z")?r:n.i(o.e)(i.b);e.a=a},function(t,e,n){"use strict";var r=n(5),i=n(13),o=n.i(r.a)(function(t){t.setHours(0,0,0,0)},function(t,e){t.setDate(t.getDate()+e)},function(t,e){return(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*i.d)/i.b},function(t){return t.getDate()-1});e.a=o;o.range},function(t,e,n){"use strict";var r=n(5),i=n(13),o=n.i(r.a)(function(t){var e=t.getTimezoneOffset()*i.d%i.c;e<0&&(e+=i.c),t.setTime(Math.floor((+t-e)/i.c)*i.c+e)},function(t,e){t.setTime(+t+e*i.c)},function(t,e){return(e-t)/i.c},function(t){return t.getHours()});e.a=o;o.range},function(t,e,n){"use strict";var r=n(5),i=n.i(r.a)(function(){},function(t,e){t.setTime(+t+e)},function(t,e){return e-t});i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?n.i(r.a)(function(e){e.setTime(Math.floor(e/t)*t)},function(e,n){e.setTime(+e+n*t)},function(e,n){return(n-e)/t}):i:null},e.a=i;i.range},function(t,e,n){"use strict";var r=n(5),i=n(13),o=n.i(r.a)(function(t){t.setTime(Math.floor(t/i.d)*i.d)},function(t,e){t.setTime(+t+e*i.d)},function(t,e){return(e-t)/i.d},function(t){return t.getMinutes()});e.a=o;o.range},function(t,e,n){"use strict";var r=n(5),i=n.i(r.a)(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,e){t.setMonth(t.getMonth()+e)},function(t,e){return e.getMonth()-t.getMonth()+12*(e.getFullYear()-t.getFullYear())},function(t){return t.getMonth()});e.a=i;i.range},function(t,e,n){"use strict";var r=n(5),i=n(13),o=n.i(r.a)(function(t){t.setTime(Math.floor(t/i.e)*i.e)},function(t,e){t.setTime(+t+e*i.e)},function(t,e){return(e-t)/i.e},function(t){return t.getUTCSeconds()});e.a=o;o.range},function(t,e,n){"use strict";var r=n(5),i=n(13),o=n.i(r.a)(function(t){t.setUTCHours(0,0,0,0)},function(t,e){t.setUTCDate(t.getUTCDate()+e)},function(t,e){return(e-t)/i.b},function(t){return t.getUTCDate()-1});e.a=o;o.range},function(t,e,n){"use strict";var r=n(5),i=n(13),o=n.i(r.a)(function(t){t.setUTCMinutes(0,0,0)},function(t,e){t.setTime(+t+e*i.c)},function(t,e){return(e-t)/i.c},function(t){return t.getUTCHours()});e.a=o;o.range},function(t,e,n){"use strict";var r=n(5),i=n(13),o=n.i(r.a)(function(t){t.setUTCSeconds(0,0)},function(t,e){t.setTime(+t+e*i.d)},function(t,e){return(e-t)/i.d},function(t){return t.getUTCMinutes()});e.a=o;o.range},function(t,e,n){"use strict";var r=n(5),i=n.i(r.a)(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,e){t.setUTCMonth(t.getUTCMonth()+e)},function(t,e){return e.getUTCMonth()-t.getUTCMonth()+12*(e.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()});e.a=i;i.range},function(t,e,n){"use strict";function r(t){return n.i(i.a)(function(e){e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)},function(t,e){t.setUTCDate(t.getUTCDate()+7*e)},function(t,e){return(e-t)/o.a})}n.d(e,"a",function(){return a}),n.d(e,"b",function(){return u}),n.d(e,"c",function(){return l});var i=n(5),o=n(13),a=r(0),u=r(1),c=r(2),s=r(3),l=r(4),f=r(5),p=r(6);a.range,u.range,c.range,s.range,l.range,f.range,p.range},function(t,e,n){"use strict";var r=n(5),i=n.i(r.a)(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,e){t.setUTCFullYear(t.getUTCFullYear()+e)},function(t,e){return e.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()});i.every=function(t){return isFinite(t=Math.floor(t))&&t>0?n.i(r.a)(function(e){e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)},function(e,n){e.setUTCFullYear(e.getUTCFullYear()+n*t)}):null},e.a=i;i.range},function(t,e,n){"use strict";function r(t){return n.i(i.a)(function(e){e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)},function(t,e){t.setDate(t.getDate()+7*e)},function(t,e){return(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*o.d)/o.a})}n.d(e,"a",function(){return a}),n.d(e,"b",function(){return u}),n.d(e,"c",function(){return l});var i=n(5),o=n(13),a=r(0),u=r(1),c=r(2),s=r(3),l=r(4),f=r(5),p=r(6);a.range,u.range,c.range,s.range,l.range,f.range,p.range},function(t,e,n){"use strict";var r=n(5),i=n.i(r.a)(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,e){t.setFullYear(t.getFullYear()+e)},function(t,e){return e.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});i.every=function(t){return isFinite(t=Math.floor(t))&&t>0?n.i(r.a)(function(e){e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)},function(e,n){e.setFullYear(e.getFullYear()+n*t)}):null},e.a=i;i.range},function(t,e,n){"use strict";function r(t){return t.replace(i,function(t,e){return e.toUpperCase()})}var i=/-(.)/g;t.exports=r},function(t,e,n){"use strict";function r(t){return i(t.replace(o,"ms-"))}var i=n(329),o=/^-ms-/;t.exports=r},function(t,e,n){"use strict";function r(t,e){return!(!t||!e)&&(t===e||!i(t)&&(i(e)?r(t,e.parentNode):"contains"in t?t.contains(e):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(e))))}var i=n(339);t.exports=r},function(t,e,n){"use strict";function r(t){var e=t.length;if((Array.isArray(t)||"object"!=typeof t&&"function"!=typeof t)&&a(!1),"number"!=typeof e&&a(!1),0===e||e-1 in t||a(!1),"function"==typeof t.callee&&a(!1),t.hasOwnProperty)try{return Array.prototype.slice.call(t)}catch(t){}for(var n=Array(e),r=0;r<e;r++)n[r]=t[r];return n}function i(t){return!!t&&("object"==typeof t||"function"==typeof t)&&"length"in t&&!("setInterval"in t)&&"number"!=typeof t.nodeType&&(Array.isArray(t)||"callee"in t||"item"in t)}function o(t){return i(t)?Array.isArray(t)?t.slice():r(t):[t]}var a=n(0);t.exports=o},function(t,e,n){"use strict";function r(t){var e=t.match(l);return e&&e[1].toLowerCase()}function i(t,e){var n=s;s||c(!1);var i=r(t),o=i&&u(i);if(o){n.innerHTML=o[1]+t+o[2];for(var l=o[0];l--;)n=n.lastChild}else n.innerHTML=t;var f=n.getElementsByTagName("script");f.length&&(e||c(!1),a(f).forEach(e));for(var p=Array.from(n.childNodes);n.lastChild;)n.removeChild(n.lastChild);return p}var o=n(6),a=n(332),u=n(334),c=n(0),s=o.canUseDOM?document.createElement("div"):null,l=/^\s*<(\w+)/;t.exports=i},function(t,e,n){"use strict";function r(t){return a||o(!1),p.hasOwnProperty(t)||(t="*"),u.hasOwnProperty(t)||(a.innerHTML="*"===t?"<link />":"<"+t+"></"+t+">",u[t]=!a.firstChild),u[t]?p[t]:null}var i=n(6),o=n(0),a=i.canUseDOM?document.createElement("div"):null,u={},c=[1,'<select multiple="true">',"</select>"],s=[1,"<table>","</table>"],l=[3,"<table><tbody><tr>","</tr></tbody></table>"],f=[1,'<svg xmlns="http://www.w3.org/2000/svg">',"</svg>"],p={"*":[1,"?<div>","</div>"],area:[1,"<map>","</map>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],legend:[1,"<fieldset>","</fieldset>"],param:[1,"<object>","</object>"],tr:[2,"<table><tbody>","</tbody></table>"],optgroup:c,option:c,caption:s,colgroup:s,tbody:s,tfoot:s,thead:s,td:l,th:l};["circle","clipPath","defs","ellipse","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","text","tspan"].forEach(function(t){p[t]=f,u[t]=!0}),t.exports=r},function(t,e,n){"use strict";function r(t){return t.Window&&t instanceof t.Window?{x:t.pageXOffset||t.document.documentElement.scrollLeft,y:t.pageYOffset||t.document.documentElement.scrollTop}:{x:t.scrollLeft,y:t.scrollTop}}t.exports=r},function(t,e,n){"use strict";function r(t){return t.replace(i,"-$1").toLowerCase()}var i=/([A-Z])/g;t.exports=r},function(t,e,n){"use strict";function r(t){return i(t).replace(o,"-ms-")}var i=n(336),o=/^ms-/;t.exports=r},function(t,e,n){"use strict";function r(t){var e=t?t.ownerDocument||t:document,n=e.defaultView||window;return!(!t||!("function"==typeof n.Node?t instanceof n.Node:"object"==typeof t&&"number"==typeof t.nodeType&&"string"==typeof t.nodeName))}t.exports=r},function(t,e,n){"use strict";function r(t){return i(t)&&3==t.nodeType}var i=n(338);t.exports=r},function(t,e,n){"use strict";var r=function(t){var e;for(e in t)if(t.hasOwnProperty(e))return e;return null};t.exports=r},function(t,e,n){"use strict";function r(t){var e={};return function(n){return e.hasOwnProperty(n)||(e[n]=t.call(this,n)),e[n]}}t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r,i){}t.exports=r},function(t,e,n){"use strict";function r(){return null}var i=n(3),o=n(344),a=n(342),u=function(){};t.exports=function(t,e){function n(t){var e=t&&(E&&t[E]||t[M]);if("function"==typeof e)return e}function c(t,e){return t===e?0!==t||1/t==1/e:t!==t&&e!==e}function s(t){this.message=t,this.stack=""}function l(t){function n(n,r,i,a,u,c,l){if(a=a||T,c=c||i,l!==o){if(e){var f=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw f.name="Invariant Violation",f}}return null==r[i]?n?new s(null===r[i]?"The "+u+" `"+c+"` is marked as required in `"+a+"`, but its value is `null`.":"The "+u+" `"+c+"` is marked as required in `"+a+"`, but its value is `undefined`."):null:t(r,i,a,u,c)}var r=n.bind(null,!1);return r.isRequired=n.bind(null,!0),r}function f(t){function e(e,n,r,i,o,a){var u=e[n];if(x(u)!==t)return new s("Invalid "+i+" `"+o+"` of type `"+w(u)+"` supplied to `"+r+"`, expected `"+t+"`.");return null}return l(e)}function p(t){function e(e,n,r,i,a){if("function"!=typeof t)return new s("Property `"+a+"` of component `"+r+"` has invalid PropType notation inside arrayOf.");var u=e[n];if(!Array.isArray(u)){return new s("Invalid "+i+" `"+a+"` of type `"+x(u)+"` supplied to `"+r+"`, expected an array.")}for(var c=0;c<u.length;c++){var l=t(u,c,r,i,a+"["+c+"]",o);if(l instanceof Error)return l}return null}return l(e)}function h(t){function e(e,n,r,i,o){if(!(e[n]instanceof t)){var a=t.name||T;return new s("Invalid "+i+" `"+o+"` of type `"+k(e[n])+"` supplied to `"+r+"`, expected instance of `"+a+"`.")}return null}return l(e)}function d(t){function e(e,n,r,i,o){for(var a=e[n],u=0;u<t.length;u++)if(c(a,t[u]))return null;return new s("Invalid "+i+" `"+o+"` of value `"+a+"` supplied to `"+r+"`, expected one of "+JSON.stringify(t)+".")}return Array.isArray(t)?l(e):r}function v(t){function e(e,n,r,i,a){if("function"!=typeof t)return new s("Property `"+a+"` of component `"+r+"` has invalid PropType notation inside objectOf.");var u=e[n],c=x(u);if("object"!==c)return new s("Invalid "+i+" `"+a+"` of type `"+c+"` supplied to `"+r+"`, expected an object.");for(var l in u)if(u.hasOwnProperty(l)){var f=t(u,l,r,i,a+"."+l,o);if(f instanceof Error)return f}return null}return l(e)}function g(t){function e(e,n,r,i,a){for(var u=0;u<t.length;u++){if(null==(0,t[u])(e,n,r,i,a,o))return null}return new s("Invalid "+i+" `"+a+"` supplied to `"+r+"`.")}if(!Array.isArray(t))return r;for(var n=0;n<t.length;n++){var i=t[n];if("function"!=typeof i)return u("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+C(i)+" at index "+n+"."),r}return l(e)}function m(t){function e(e,n,r,i,a){var u=e[n],c=x(u);if("object"!==c)return new s("Invalid "+i+" `"+a+"` of type `"+c+"` supplied to `"+r+"`, expected `object`.");for(var l in t){var f=t[l];if(f){var p=f(u,l,r,i,a+"."+l,o);if(p)return p}}return null}return l(e)}function y(t){function e(e,n,r,a,u){var c=e[n],l=x(c);if("object"!==l)return new s("Invalid "+a+" `"+u+"` of type `"+l+"` supplied to `"+r+"`, expected `object`.");var f=i({},e[n],t);for(var p in f){var h=t[p];if(!h)return new s("Invalid "+a+" `"+u+"` key `"+p+"` supplied to `"+r+"`.\nBad object: "+JSON.stringify(e[n],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(t),null," "));var d=h(c,p,r,a,u+"."+p,o);if(d)return d}return null}return l(e)}function _(e){switch(typeof e){case"number":case"string":case"undefined":return!0;case"boolean":return!e;case"object":if(Array.isArray(e))return e.every(_);if(null===e||t(e))return!0;var r=n(e);if(!r)return!1;var i,o=r.call(e);if(r!==e.entries){for(;!(i=o.next()).done;)if(!_(i.value))return!1}else for(;!(i=o.next()).done;){var a=i.value;if(a&&!_(a[1]))return!1}return!0;default:return!1}}function b(t,e){return"symbol"===t||("Symbol"===e["@@toStringTag"]||"function"==typeof Symbol&&e instanceof Symbol)}function x(t){var e=typeof t;return Array.isArray(t)?"array":t instanceof RegExp?"object":b(e,t)?"symbol":e}function w(t){if(void 0===t||null===t)return""+t;var e=x(t);if("object"===e){if(t instanceof Date)return"date";if(t instanceof RegExp)return"regexp"}return e}function C(t){var e=w(t);switch(e){case"array":case"object":return"an "+e;case"boolean":case"date":case"regexp":return"a "+e;default:return e}}function k(t){return t.constructor&&t.constructor.name?t.constructor.name:T}var E="function"==typeof Symbol&&Symbol.iterator,M="@@iterator",T="<<anonymous>>",S={array:f("array"),bool:f("boolean"),func:f("function"),number:f("number"),object:f("object"),string:f("string"),symbol:f("symbol"),any:function(){return l(r)}(),arrayOf:p,element:function(){function e(e,n,r,i,o){var a=e[n];if(!t(a)){return new s("Invalid "+i+" `"+o+"` of type `"+x(a)+"` supplied to `"+r+"`, expected a single ReactElement.")}return null}return l(e)}(),instanceOf:h,node:function(){function t(t,e,n,r,i){return _(t[e])?null:new s("Invalid "+r+" `"+i+"` supplied to `"+n+"`, expected a ReactNode.")}return l(t)}(),objectOf:v,oneOf:d,oneOfType:g,shape:m,exact:y};return s.prototype=Error.prototype,S.checkPropTypes=a,S.PropTypes=S,S}},function(t,e,n){"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(t,e,n){"use strict";var r={Properties:{"aria-current":0,"aria-details":0,"aria-disabled":0,"aria-hidden":0,"aria-invalid":0,"aria-keyshortcuts":0,"aria-label":0,"aria-roledescription":0,"aria-autocomplete":0,"aria-checked":0,"aria-expanded":0,"aria-haspopup":0,"aria-level":0,"aria-modal":0,"aria-multiline":0,"aria-multiselectable":0,"aria-orientation":0,"aria-placeholder":0,"aria-pressed":0,"aria-readonly":0,"aria-required":0,"aria-selected":0,"aria-sort":0,"aria-valuemax":0,"aria-valuemin":0,"aria-valuenow":0,"aria-valuetext":0,"aria-atomic":0,"aria-busy":0,"aria-live":0,"aria-relevant":0,"aria-dropeffect":0,"aria-grabbed":0,"aria-activedescendant":0,"aria-colcount":0,"aria-colindex":0,"aria-colspan":0,"aria-controls":0,"aria-describedby":0,"aria-errormessage":0,"aria-flowto":0,"aria-labelledby":0,"aria-owns":0,"aria-posinset":0,"aria-rowcount":0,"aria-rowindex":0,"aria-rowspan":0,"aria-setsize":0},DOMAttributeNames:{},DOMPropertyNames:{}};t.exports=r},function(t,e,n){"use strict";var r=n(4),i=n(154),o={focusDOMComponent:function(){i(r.getNodeFromInstance(this))}};t.exports=o},function(t,e,n){"use strict";function r(t){return(t.ctrlKey||t.altKey||t.metaKey)&&!(t.ctrlKey&&t.altKey)}function i(t){switch(t){case"topCompositionStart":return E.compositionStart;case"topCompositionEnd":return E.compositionEnd;case"topCompositionUpdate":return E.compositionUpdate}}function o(t,e){return"topKeyDown"===t&&e.keyCode===y}function a(t,e){switch(t){case"topKeyUp":return-1!==m.indexOf(e.keyCode);case"topKeyDown":return e.keyCode!==y;case"topKeyPress":case"topMouseDown":case"topBlur":return!0;default:return!1}}function u(t){var e=t.detail;return"object"==typeof e&&"data"in e?e.data:null}function c(t,e,n,r){var c,s;if(_?c=i(t):T?a(t,n)&&(c=E.compositionEnd):o(t,n)&&(c=E.compositionStart),!c)return null;w&&(T||c!==E.compositionStart?c===E.compositionEnd&&T&&(s=T.getData()):T=d.getPooled(r));var l=v.getPooled(c,e,n,r);if(s)l.data=s;else{var f=u(n);null!==f&&(l.data=f)}return p.accumulateTwoPhaseDispatches(l),l}function s(t,e){switch(t){case"topCompositionEnd":return u(e);case"topKeyPress":return e.which!==C?null:(M=!0,k);case"topTextInput":var n=e.data;return n===k&&M?null:n;default:return null}}function l(t,e){if(T){if("topCompositionEnd"===t||!_&&a(t,e)){var n=T.getData();return d.release(T),T=null,n}return null}switch(t){case"topPaste":return null;case"topKeyPress":return e.which&&!r(e)?String.fromCharCode(e.which):null;case"topCompositionEnd":return w?null:e.data;default:return null}}function f(t,e,n,r){var i;if(!(i=x?s(t,n):l(t,n)))return null;var o=g.getPooled(E.beforeInput,e,n,r);return o.data=i,p.accumulateTwoPhaseDispatches(o),o}var p=n(23),h=n(6),d=n(354),v=n(391),g=n(394),m=[9,13,27,32],y=229,_=h.canUseDOM&&"CompositionEvent"in window,b=null;h.canUseDOM&&"documentMode"in document&&(b=document.documentMode);var x=h.canUseDOM&&"TextEvent"in window&&!b&&!function(){var t=window.opera;return"object"==typeof t&&"function"==typeof t.version&&parseInt(t.version(),10)<=12}(),w=h.canUseDOM&&(!_||b&&b>8&&b<=11),C=32,k=String.fromCharCode(C),E={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["topCompositionEnd","topKeyPress","topTextInput","topPaste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:["topBlur","topCompositionEnd","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:["topBlur","topCompositionStart","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:["topBlur","topCompositionUpdate","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]}},M=!1,T=null,S={eventTypes:E,extractEvents:function(t,e,n,r){return[c(t,e,n,r),f(t,e,n,r)]}};t.exports=S},function(t,e,n){"use strict";var r=n(158),i=n(6),o=(n(9),n(330),n(400)),a=n(337),u=n(341),c=(n(2),u(function(t){return a(t)})),s=!1,l="cssFloat";if(i.canUseDOM){var f=document.createElement("div").style;try{f.font=""}catch(t){s=!0}void 0===document.documentElement.style.cssFloat&&(l="styleFloat")}var p={createMarkupForStyles:function(t,e){var n="";for(var r in t)if(t.hasOwnProperty(r)){var i=0===r.indexOf("--"),a=t[r];null!=a&&(n+=c(r)+":",n+=o(r,a,e,i)+";")}return n||null},setValueForStyles:function(t,e,n){var i=t.style;for(var a in e)if(e.hasOwnProperty(a)){var u=0===a.indexOf("--"),c=o(a,e[a],n,u);if("float"!==a&&"cssFloat"!==a||(a=l),u)i.setProperty(a,c);else if(c)i[a]=c;else{var f=s&&r.shorthandPropertyExpansions[a];if(f)for(var p in f)i[p]="";else i[a]=""}}}};t.exports=p},function(t,e,n){"use strict";function r(t,e,n){var r=M.getPooled(P.change,t,e,n);return r.type="change",w.accumulateTwoPhaseDispatches(r),r}function i(t){var e=t.nodeName&&t.nodeName.toLowerCase();return"select"===e||"input"===e&&"file"===t.type}function o(t){var e=r(I,t,S(t));E.batchedUpdates(a,e)}function a(t){x.enqueueEvents(t),x.processEventQueue(!1)}function u(t,e){O=t,I=e,O.attachEvent("onchange",o)}function c(){O&&(O.detachEvent("onchange",o),O=null,I=null)}function s(t,e){var n=T.updateValueIfChanged(t),r=!0===e.simulated&&L._allowSimulatedPassThrough;if(n||r)return t}function l(t,e){if("topChange"===t)return e}function f(t,e,n){"topFocus"===t?(c(),u(e,n)):"topBlur"===t&&c()}function p(t,e){O=t,I=e,O.attachEvent("onpropertychange",d)}function h(){O&&(O.detachEvent("onpropertychange",d),O=null,I=null)}function d(t){"value"===t.propertyName&&s(I,t)&&o(t)}function v(t,e,n){"topFocus"===t?(h(),p(e,n)):"topBlur"===t&&h()}function g(t,e,n){if("topSelectionChange"===t||"topKeyUp"===t||"topKeyDown"===t)return s(I,n)}function m(t){var e=t.nodeName;return e&&"input"===e.toLowerCase()&&("checkbox"===t.type||"radio"===t.type)}function y(t,e,n){if("topClick"===t)return s(e,n)}function _(t,e,n){if("topInput"===t||"topChange"===t)return s(e,n)}function b(t,e){if(null!=t){var n=t._wrapperState||e._wrapperState;if(n&&n.controlled&&"number"===e.type){var r=""+e.value;e.getAttribute("value")!==r&&e.setAttribute("value",r)}}}var x=n(22),w=n(23),C=n(6),k=n(4),E=n(12),M=n(14),T=n(173),S=n(94),N=n(95),A=n(175),P={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:["topBlur","topChange","topClick","topFocus","topInput","topKeyDown","topKeyUp","topSelectionChange"]}},O=null,I=null,D=!1;C.canUseDOM&&(D=N("change")&&(!document.documentMode||document.documentMode>8));var R=!1;C.canUseDOM&&(R=N("input")&&(!document.documentMode||document.documentMode>9));var L={eventTypes:P,_allowSimulatedPassThrough:!0,_isInputEventSupported:R,extractEvents:function(t,e,n,o){var a,u,c=e?k.getNodeFromInstance(e):window;if(i(c)?D?a=l:u=f:A(c)?R?a=_:(a=g,u=v):m(c)&&(a=y),a){var s=a(t,e,n);if(s){return r(s,n,o)}}u&&u(t,c,e),"topBlur"===t&&b(e,c)}};t.exports=L},function(t,e,n){"use strict";var r=n(1),i=n(20),o=n(6),a=n(333),u=n(11),c=(n(0),{dangerouslyReplaceNodeWithMarkup:function(t,e){if(o.canUseDOM||r("56"),e||r("57"),"HTML"===t.nodeName&&r("58"),"string"==typeof e){var n=a(e,u)[0];t.parentNode.replaceChild(n,t)}else i.replaceChildWithTree(t,e)}});t.exports=c},function(t,e,n){"use strict";var r=["ResponderEventPlugin","SimpleEventPlugin","TapEventPlugin","EnterLeaveEventPlugin","ChangeEventPlugin","SelectEventPlugin","BeforeInputEventPlugin"];t.exports=r},function(t,e,n){"use strict";var r=n(23),i=n(4),o=n(54),a={mouseEnter:{registrationName:"onMouseEnter",dependencies:["topMouseOut","topMouseOver"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["topMouseOut","topMouseOver"]}},u={eventTypes:a,extractEvents:function(t,e,n,u){if("topMouseOver"===t&&(n.relatedTarget||n.fromElement))return null;if("topMouseOut"!==t&&"topMouseOver"!==t)return null;var c;if(u.window===u)c=u;else{var s=u.ownerDocument;c=s?s.defaultView||s.parentWindow:window}var l,f;if("topMouseOut"===t){l=e;var p=n.relatedTarget||n.toElement;f=p?i.getClosestInstanceFromNode(p):null}else l=null,f=e;if(l===f)return null;var h=null==l?c:i.getNodeFromInstance(l),d=null==f?c:i.getNodeFromInstance(f),v=o.getPooled(a.mouseLeave,l,n,u);v.type="mouseleave",v.target=h,v.relatedTarget=d;var g=o.getPooled(a.mouseEnter,f,n,u);return g.type="mouseenter",g.target=d,g.relatedTarget=h,r.accumulateEnterLeaveDispatches(v,g,l,f),[v,g]}};t.exports=u},function(t,e,n){"use strict";var r={topAbort:null,topAnimationEnd:null,topAnimationIteration:null,topAnimationStart:null,topBlur:null,topCanPlay:null,topCanPlayThrough:null,topChange:null,topClick:null,topCompositionEnd:null,topCompositionStart:null,topCompositionUpdate:null,topContextMenu:null,topCopy:null,topCut:null,topDoubleClick:null,topDrag:null,topDragEnd:null,topDragEnter:null,topDragExit:null,topDragLeave:null,topDragOver:null,topDragStart:null,topDrop:null,topDurationChange:null,topEmptied:null,topEncrypted:null,topEnded:null,topError:null,topFocus:null,topInput:null,topInvalid:null,topKeyDown:null,topKeyPress:null,topKeyUp:null,topLoad:null,topLoadedData:null,topLoadedMetadata:null,topLoadStart:null,topMouseDown:null,topMouseMove:null,topMouseOut:null,topMouseOver:null,topMouseUp:null,topPaste:null,topPause:null,topPlay:null,topPlaying:null,topProgress:null,topRateChange:null,topReset:null,topScroll:null,topSeeked:null,topSeeking:null,topSelectionChange:null,topStalled:null,topSubmit:null,topSuspend:null,topTextInput:null,topTimeUpdate:null,topTouchCancel:null,topTouchEnd:null,topTouchMove:null,topTouchStart:null,topTransitionEnd:null,topVolumeChange:null,topWaiting:null,topWheel:null},i={topLevelTypes:r};t.exports=i},function(t,e,n){"use strict";function r(t){this._root=t,this._startText=this.getText(),this._fallbackText=null}var i=n(3),o=n(18),a=n(172);i(r.prototype,{destructor:function(){this._root=null,this._startText=null,this._fallbackText=null},getText:function(){return"value"in this._root?this._root.value:this._root[a()]},getData:function(){if(this._fallbackText)return this._fallbackText;var t,e,n=this._startText,r=n.length,i=this.getText(),o=i.length;for(t=0;t<r&&n[t]===i[t];t++);var a=r-t;for(e=1;e<=a&&n[r-e]===i[o-e];e++);var u=e>1?1-e:void 0;return this._fallbackText=i.slice(t,u),this._fallbackText}}),o.addPoolingTo(r),t.exports=r},function(t,e,n){"use strict";var r=n(21),i=r.injection.MUST_USE_PROPERTY,o=r.injection.HAS_BOOLEAN_VALUE,a=r.injection.HAS_NUMERIC_VALUE,u=r.injection.HAS_POSITIVE_NUMERIC_VALUE,c=r.injection.HAS_OVERLOADED_BOOLEAN_VALUE,s={isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-["+r.ATTRIBUTE_NAME_CHAR+"]*$")),Properties:{accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:o,allowTransparency:0,alt:0,as:0,async:o,autoComplete:0,autoPlay:o,capture:o,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:i|o,cite:0,classID:0,className:0,cols:u,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:o,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:o,defer:o,dir:0,disabled:o,download:c,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:o,formTarget:0,frameBorder:0,headers:0,height:0,hidden:o,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:o,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:i|o,muted:i|o,name:0,nonce:0,noValidate:o,open:o,optimum:0,pattern:0,placeholder:0,playsInline:o,poster:0,preload:0,profile:0,radioGroup:0,readOnly:o,referrerPolicy:0,rel:0,required:o,reversed:o,role:0,rows:u,rowSpan:a,sandbox:0,scope:0,scoped:o,scrolling:0,seamless:o,selected:i|o,shape:0,size:u,sizes:0,span:u,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:a,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:o,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"},DOMPropertyNames:{},DOMMutationMethods:{value:function(t,e){if(null==e)return t.removeAttribute("value");"number"!==t.type||!1===t.hasAttribute("value")?t.setAttribute("value",""+e):t.validity&&!t.validity.badInput&&t.ownerDocument.activeElement!==t&&t.setAttribute("value",""+e)}}};t.exports=s},function(t,e,n){"use strict";(function(e){function r(t,e,n,r){var i=void 0===t[n];null!=e&&i&&(t[n]=o(e,!0))}var i=n(24),o=n(174),a=(n(85),n(96)),u=n(177);n(2);void 0!==e&&e.env;var c={instantiateChildren:function(t,e,n,i){if(null==t)return null;var o={};return u(t,r,o),o},updateChildren:function(t,e,n,r,u,c,s,l,f){if(e||t){var p,h;for(p in e)if(e.hasOwnProperty(p)){h=t&&t[p];var d=h&&h._currentElement,v=e[p];if(null!=h&&a(d,v))i.receiveComponent(h,v,u,l),e[p]=h;else{h&&(r[p]=i.getHostNode(h),i.unmountComponent(h,!1));var g=o(v,!0);e[p]=g;var m=i.mountComponent(g,u,c,s,l,f);n.push(m)}}for(p in t)!t.hasOwnProperty(p)||e&&e.hasOwnProperty(p)||(h=t[p],r[p]=i.getHostNode(h),i.unmountComponent(h,!1))}},unmountChildren:function(t,e){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];i.unmountComponent(r,e)}}};t.exports=c}).call(e,n(156))},function(t,e,n){"use strict";var r=n(82),i=n(364),o={processChildrenUpdates:i.dangerouslyProcessChildrenUpdates,replaceNodeWithMarkup:r.dangerouslyReplaceNodeWithMarkup};t.exports=o},function(t,e,n){"use strict";function r(t){}function i(t){return!(!t.prototype||!t.prototype.isReactComponent)}function o(t){return!(!t.prototype||!t.prototype.isPureReactComponent)}var a=n(1),u=n(3),c=n(26),s=n(87),l=n(15),f=n(88),p=n(39),h=(n(9),n(168)),d=n(24),v=n(51),g=(n(0),n(81)),m=n(96),y=(n(2),{ImpureClass:0,PureClass:1,StatelessFunctional:2});r.prototype.render=function(){var t=p.get(this)._currentElement.type,e=t(this.props,this.context,this.updater);return e};var _=1,b={construct:function(t){this._currentElement=t,this._rootNodeID=0,this._compositeType=null,this._instance=null,this._hostParent=null,this._hostContainerInfo=null,this._updateBatchNumber=null,this._pendingElement=null,this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._renderedNodeType=null,this._renderedComponent=null,this._context=null,this._mountOrder=0,this._topLevelWrapper=null,this._pendingCallbacks=null,this._calledComponentWillUnmount=!1},mountComponent:function(t,e,n,u){this._context=u,this._mountOrder=_++,this._hostParent=e,this._hostContainerInfo=n;var s,l=this._currentElement.props,f=this._processContext(u),h=this._currentElement.type,d=t.getUpdateQueue(),g=i(h),m=this._constructComponent(g,l,f,d);g||null!=m&&null!=m.render?o(h)?this._compositeType=y.PureClass:this._compositeType=y.ImpureClass:(s=m,null===m||!1===m||c.isValidElement(m)||a("105",h.displayName||h.name||"Component"),m=new r(h),this._compositeType=y.StatelessFunctional);m.props=l,m.context=f,m.refs=v,m.updater=d,this._instance=m,p.set(m,this);var b=m.state;void 0===b&&(m.state=b=null),("object"!=typeof b||Array.isArray(b))&&a("106",this.getName()||"ReactCompositeComponent"),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1;var x;return x=m.unstable_handleError?this.performInitialMountWithErrorHandling(s,e,n,t,u):this.performInitialMount(s,e,n,t,u),m.componentDidMount&&t.getReactMountReady().enqueue(m.componentDidMount,m),x},_constructComponent:function(t,e,n,r){return this._constructComponentWithoutOwner(t,e,n,r)},_constructComponentWithoutOwner:function(t,e,n,r){var i=this._currentElement.type;return t?new i(e,n,r):i(e,n,r)},performInitialMountWithErrorHandling:function(t,e,n,r,i){var o,a=r.checkpoint();try{o=this.performInitialMount(t,e,n,r,i)}catch(u){r.rollback(a),this._instance.unstable_handleError(u),this._pendingStateQueue&&(this._instance.state=this._processPendingState(this._instance.props,this._instance.context)),a=r.checkpoint(),this._renderedComponent.unmountComponent(!0),r.rollback(a),o=this.performInitialMount(t,e,n,r,i)}return o},performInitialMount:function(t,e,n,r,i){var o=this._instance,a=0;o.componentWillMount&&(o.componentWillMount(),this._pendingStateQueue&&(o.state=this._processPendingState(o.props,o.context))),void 0===t&&(t=this._renderValidatedComponent());var u=h.getType(t);this._renderedNodeType=u;var c=this._instantiateReactComponent(t,u!==h.EMPTY);this._renderedComponent=c;var s=d.mountComponent(c,r,e,n,this._processChildContext(i),a);return s},getHostNode:function(){return d.getHostNode(this._renderedComponent)},unmountComponent:function(t){if(this._renderedComponent){var e=this._instance;if(e.componentWillUnmount&&!e._calledComponentWillUnmount)if(e._calledComponentWillUnmount=!0,t){var n=this.getName()+".componentWillUnmount()";f.invokeGuardedCallback(n,e.componentWillUnmount.bind(e))}else e.componentWillUnmount();this._renderedComponent&&(d.unmountComponent(this._renderedComponent,t),this._renderedNodeType=null,this._renderedComponent=null,this._instance=null),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._pendingCallbacks=null,this._pendingElement=null,this._context=null,this._rootNodeID=0,this._topLevelWrapper=null,p.remove(e)}},_maskContext:function(t){var e=this._currentElement.type,n=e.contextTypes;if(!n)return v;var r={};for(var i in n)r[i]=t[i];return r},_processContext:function(t){var e=this._maskContext(t);return e},_processChildContext:function(t){var e,n=this._currentElement.type,r=this._instance;if(r.getChildContext&&(e=r.getChildContext()),e){"object"!=typeof n.childContextTypes&&a("107",this.getName()||"ReactCompositeComponent");for(var i in e)i in n.childContextTypes||a("108",this.getName()||"ReactCompositeComponent",i);return u({},t,e)}return t},_checkContextTypes:function(t,e,n){},receiveComponent:function(t,e,n){var r=this._currentElement,i=this._context;this._pendingElement=null,this.updateComponent(e,r,t,i,n)},performUpdateIfNecessary:function(t){null!=this._pendingElement?d.receiveComponent(this,this._pendingElement,t,this._context):null!==this._pendingStateQueue||this._pendingForceUpdate?this.updateComponent(t,this._currentElement,this._currentElement,this._context,this._context):this._updateBatchNumber=null},updateComponent:function(t,e,n,r,i){var o=this._instance;null==o&&a("136",this.getName()||"ReactCompositeComponent");var u,c=!1;this._context===i?u=o.context:(u=this._processContext(i),c=!0);var s=e.props,l=n.props;e!==n&&(c=!0),c&&o.componentWillReceiveProps&&o.componentWillReceiveProps(l,u);var f=this._processPendingState(l,u),p=!0;this._pendingForceUpdate||(o.shouldComponentUpdate?p=o.shouldComponentUpdate(l,f,u):this._compositeType===y.PureClass&&(p=!g(s,l)||!g(o.state,f))),this._updateBatchNumber=null,p?(this._pendingForceUpdate=!1,this._performComponentUpdate(n,l,f,u,t,i)):(this._currentElement=n,this._context=i,o.props=l,o.state=f,o.context=u)},_processPendingState:function(t,e){var n=this._instance,r=this._pendingStateQueue,i=this._pendingReplaceState;if(this._pendingReplaceState=!1,this._pendingStateQueue=null,!r)return n.state;if(i&&1===r.length)return r[0];for(var o=u({},i?r[0]:n.state),a=i?1:0;a<r.length;a++){var c=r[a];u(o,"function"==typeof c?c.call(n,o,t,e):c)}return o},_performComponentUpdate:function(t,e,n,r,i,o){var a,u,c,s=this._instance,l=Boolean(s.componentDidUpdate);l&&(a=s.props,u=s.state,c=s.context),s.componentWillUpdate&&s.componentWillUpdate(e,n,r),this._currentElement=t,this._context=o,s.props=e,s.state=n,s.context=r,this._updateRenderedComponent(i,o),l&&i.getReactMountReady().enqueue(s.componentDidUpdate.bind(s,a,u,c),s)},_updateRenderedComponent:function(t,e){var n=this._renderedComponent,r=n._currentElement,i=this._renderValidatedComponent(),o=0;if(m(r,i))d.receiveComponent(n,i,t,this._processChildContext(e));else{var a=d.getHostNode(n);d.unmountComponent(n,!1);var u=h.getType(i);this._renderedNodeType=u;var c=this._instantiateReactComponent(i,u!==h.EMPTY);this._renderedComponent=c;var s=d.mountComponent(c,t,this._hostParent,this._hostContainerInfo,this._processChildContext(e),o);this._replaceNodeWithMarkup(a,s,n)}},_replaceNodeWithMarkup:function(t,e,n){s.replaceNodeWithMarkup(t,e,n)},_renderValidatedComponentWithoutOwnerOrContext:function(){var t=this._instance;return t.render()},_renderValidatedComponent:function(){var t;if(this._compositeType!==y.StatelessFunctional){l.current=this;try{t=this._renderValidatedComponentWithoutOwnerOrContext()}finally{l.current=null}}else t=this._renderValidatedComponentWithoutOwnerOrContext();return null===t||!1===t||c.isValidElement(t)||a("109",this.getName()||"ReactCompositeComponent"),t},attachRef:function(t,e){var n=this.getPublicInstance();null==n&&a("110");var r=e.getPublicInstance();(n.refs===v?n.refs={}:n.refs)[t]=r},detachRef:function(t){delete this.getPublicInstance().refs[t]},getName:function(){var t=this._currentElement.type,e=this._instance&&this._instance.constructor;return t.displayName||e&&e.displayName||t.name||e&&e.name||null},getPublicInstance:function(){var t=this._instance;return this._compositeType===y.StatelessFunctional?null:t},_instantiateReactComponent:null};t.exports=b},function(t,e,n){"use strict";var r=n(4),i=n(372),o=n(167),a=n(24),u=n(12),c=n(385),s=n(401),l=n(171),f=n(408);n(2);i.inject();var p={findDOMNode:s,render:o.render,unmountComponentAtNode:o.unmountComponentAtNode,version:c,unstable_batchedUpdates:u.batchedUpdates,unstable_renderSubtreeIntoContainer:f};"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject&&__REACT_DEVTOOLS_GLOBAL_HOOK__.inject({ComponentTree:{getClosestInstanceFromNode:r.getClosestInstanceFromNode,getNodeFromInstance:function(t){return t._renderedComponent&&(t=l(t)),t?r.getNodeFromInstance(t):null}},Mount:o,Reconciler:a});t.exports=p},function(t,e,n){"use strict";function r(t){if(t){var e=t._currentElement._owner||null;if(e){var n=e.getName();if(n)return" This DOM node was rendered by `"+n+"`."}}return""}function i(t,e){e&&($[t._tag]&&(null!=e.children||null!=e.dangerouslySetInnerHTML)&&g("137",t._tag,t._currentElement._owner?" Check the render method of "+t._currentElement._owner.getName()+".":""),null!=e.dangerouslySetInnerHTML&&(null!=e.children&&g("60"),"object"==typeof e.dangerouslySetInnerHTML&&z in e.dangerouslySetInnerHTML||g("61")),null!=e.style&&"object"!=typeof e.style&&g("62",r(t)))}function o(t,e,n,r){if(!(r instanceof D)){var i=t._hostContainerInfo,o=i._node&&i._node.nodeType===q,u=o?i._node:i._ownerDocument;B(e,u),r.getReactMountReady().enqueue(a,{inst:t,registrationName:e,listener:n})}}function a(){var t=this;k.putListener(t.inst,t.registrationName,t.listener)}function u(){var t=this;N.postMountWrapper(t)}function c(){var t=this;O.postMountWrapper(t)}function s(){var t=this;A.postMountWrapper(t)}function l(){L.track(this)}function f(){var t=this;t._rootNodeID||g("63");var e=j(t);switch(e||g("64"),t._tag){case"iframe":case"object":t._wrapperState.listeners=[M.trapBubbledEvent("topLoad","load",e)];break;case"video":case"audio":t._wrapperState.listeners=[];for(var n in Y)Y.hasOwnProperty(n)&&t._wrapperState.listeners.push(M.trapBubbledEvent(n,Y[n],e));break;case"source":t._wrapperState.listeners=[M.trapBubbledEvent("topError","error",e)];break;case"img":t._wrapperState.listeners=[M.trapBubbledEvent("topError","error",e),M.trapBubbledEvent("topLoad","load",e)];break;case"form":t._wrapperState.listeners=[M.trapBubbledEvent("topReset","reset",e),M.trapBubbledEvent("topSubmit","submit",e)];break;case"input":case"select":case"textarea":t._wrapperState.listeners=[M.trapBubbledEvent("topInvalid","invalid",e)]}}function p(){P.postUpdateWrapper(this)}function h(t){Z.call(Q,t)||(X.test(t)||g("65",t),Q[t]=!0)}function d(t,e){return t.indexOf("-")>=0||null!=e.is}function v(t){var e=t.type;h(e),this._currentElement=t,this._tag=e.toLowerCase(),this._namespaceURI=null,this._renderedChildren=null,this._previousStyle=null,this._previousStyleCopy=null,this._hostNode=null,this._hostParent=null,this._rootNodeID=0,this._domID=0,this._hostContainerInfo=null,this._wrapperState=null,this._topLevelWrapper=null,this._flags=0}var g=n(1),m=n(3),y=n(346),_=n(348),b=n(20),x=n(83),w=n(21),C=n(160),k=n(22),E=n(84),M=n(53),T=n(161),S=n(4),N=n(365),A=n(366),P=n(162),O=n(369),I=(n(9),n(378)),D=n(383),R=(n(11),n(56)),L=(n(0),n(95),n(81),n(173)),U=(n(97),n(2),T),F=k.deleteListener,j=S.getNodeFromInstance,B=M.listenTo,V=E.registrationNameModules,W={string:!0,number:!0},z="__html",H={children:null,dangerouslySetInnerHTML:null,suppressContentEditableWarning:null},q=11,Y={topAbort:"abort",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topSeeked:"seeked",topSeeking:"seeking",topStalled:"stalled",topSuspend:"suspend",topTimeUpdate:"timeupdate",topVolumeChange:"volumechange",topWaiting:"waiting"},K={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},G={listing:!0,pre:!0,textarea:!0},$=m({menuitem:!0},K),X=/^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,Q={},Z={}.hasOwnProperty,J=1;v.displayName="ReactDOMComponent",v.Mixin={mountComponent:function(t,e,n,r){this._rootNodeID=J++,this._domID=n._idCounter++,this._hostParent=e,this._hostContainerInfo=n;var o=this._currentElement.props;switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":this._wrapperState={listeners:null},t.getReactMountReady().enqueue(f,this);break;case"input":N.mountWrapper(this,o,e),o=N.getHostProps(this,o),t.getReactMountReady().enqueue(l,this),t.getReactMountReady().enqueue(f,this);break;case"option":A.mountWrapper(this,o,e),o=A.getHostProps(this,o);break;case"select":P.mountWrapper(this,o,e),o=P.getHostProps(this,o),t.getReactMountReady().enqueue(f,this);break;case"textarea":O.mountWrapper(this,o,e),o=O.getHostProps(this,o),t.getReactMountReady().enqueue(l,this),t.getReactMountReady().enqueue(f,this)}i(this,o);var a,p;null!=e?(a=e._namespaceURI,p=e._tag):n._tag&&(a=n._namespaceURI,p=n._tag),(null==a||a===x.svg&&"foreignobject"===p)&&(a=x.html),a===x.html&&("svg"===this._tag?a=x.svg:"math"===this._tag&&(a=x.mathml)),this._namespaceURI=a;var h;if(t.useCreateElement){var d,v=n._ownerDocument;if(a===x.html)if("script"===this._tag){var g=v.createElement("div"),m=this._currentElement.type;g.innerHTML="<"+m+"></"+m+">",d=g.removeChild(g.firstChild)}else d=o.is?v.createElement(this._currentElement.type,o.is):v.createElement(this._currentElement.type);else d=v.createElementNS(a,this._currentElement.type);S.precacheNode(this,d),this._flags|=U.hasCachedChildNodes,this._hostParent||C.setAttributeForRoot(d),this._updateDOMProperties(null,o,t);var _=b(d);this._createInitialChildren(t,o,r,_),h=_}else{var w=this._createOpenTagMarkupAndPutListeners(t,o),k=this._createContentMarkup(t,o,r);h=!k&&K[this._tag]?w+"/>":w+">"+k+"</"+this._currentElement.type+">"}switch(this._tag){case"input":t.getReactMountReady().enqueue(u,this),o.autoFocus&&t.getReactMountReady().enqueue(y.focusDOMComponent,this);break;case"textarea":t.getReactMountReady().enqueue(c,this),o.autoFocus&&t.getReactMountReady().enqueue(y.focusDOMComponent,this);break;case"select":case"button":o.autoFocus&&t.getReactMountReady().enqueue(y.focusDOMComponent,this);break;case"option":t.getReactMountReady().enqueue(s,this)}return h},_createOpenTagMarkupAndPutListeners:function(t,e){var n="<"+this._currentElement.type;for(var r in e)if(e.hasOwnProperty(r)){var i=e[r];if(null!=i)if(V.hasOwnProperty(r))i&&o(this,r,i,t);else{"style"===r&&(i&&(i=this._previousStyleCopy=m({},e.style)),i=_.createMarkupForStyles(i,this));var a=null;null!=this._tag&&d(this._tag,e)?H.hasOwnProperty(r)||(a=C.createMarkupForCustomAttribute(r,i)):a=C.createMarkupForProperty(r,i),a&&(n+=" "+a)}}return t.renderToStaticMarkup?n:(this._hostParent||(n+=" "+C.createMarkupForRoot()),n+=" "+C.createMarkupForID(this._domID))},_createContentMarkup:function(t,e,n){var r="",i=e.dangerouslySetInnerHTML;if(null!=i)null!=i.__html&&(r=i.__html);else{var o=W[typeof e.children]?e.children:null,a=null!=o?null:e.children;if(null!=o)r=R(o);else if(null!=a){var u=this.mountChildren(a,t,n);r=u.join("")}}return G[this._tag]&&"\n"===r.charAt(0)?"\n"+r:r},_createInitialChildren:function(t,e,n,r){var i=e.dangerouslySetInnerHTML;if(null!=i)null!=i.__html&&b.queueHTML(r,i.__html);else{var o=W[typeof e.children]?e.children:null,a=null!=o?null:e.children;if(null!=o)""!==o&&b.queueText(r,o);else if(null!=a)for(var u=this.mountChildren(a,t,n),c=0;c<u.length;c++)b.queueChild(r,u[c])}},receiveComponent:function(t,e,n){var r=this._currentElement;this._currentElement=t,this.updateComponent(e,r,t,n)},updateComponent:function(t,e,n,r){var o=e.props,a=this._currentElement.props;switch(this._tag){case"input":o=N.getHostProps(this,o),a=N.getHostProps(this,a);break;case"option":o=A.getHostProps(this,o),a=A.getHostProps(this,a);break;case"select":o=P.getHostProps(this,o),a=P.getHostProps(this,a);break;case"textarea":o=O.getHostProps(this,o),a=O.getHostProps(this,a)}switch(i(this,a),this._updateDOMProperties(o,a,t),this._updateDOMChildren(o,a,t,r),this._tag){case"input":N.updateWrapper(this),L.updateValueIfChanged(this);break;case"textarea":O.updateWrapper(this);break;case"select":t.getReactMountReady().enqueue(p,this)}},_updateDOMProperties:function(t,e,n){var r,i,a;for(r in t)if(!e.hasOwnProperty(r)&&t.hasOwnProperty(r)&&null!=t[r])if("style"===r){var u=this._previousStyleCopy;for(i in u)u.hasOwnProperty(i)&&(a=a||{},a[i]="");this._previousStyleCopy=null}else V.hasOwnProperty(r)?t[r]&&F(this,r):d(this._tag,t)?H.hasOwnProperty(r)||C.deleteValueForAttribute(j(this),r):(w.properties[r]||w.isCustomAttribute(r))&&C.deleteValueForProperty(j(this),r);for(r in e){var c=e[r],s="style"===r?this._previousStyleCopy:null!=t?t[r]:void 0;if(e.hasOwnProperty(r)&&c!==s&&(null!=c||null!=s))if("style"===r)if(c?c=this._previousStyleCopy=m({},c):this._previousStyleCopy=null,s){for(i in s)!s.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(a=a||{},a[i]="");for(i in c)c.hasOwnProperty(i)&&s[i]!==c[i]&&(a=a||{},a[i]=c[i])}else a=c;else if(V.hasOwnProperty(r))c?o(this,r,c,n):s&&F(this,r);else if(d(this._tag,e))H.hasOwnProperty(r)||C.setValueForAttribute(j(this),r,c);else if(w.properties[r]||w.isCustomAttribute(r)){var l=j(this);null!=c?C.setValueForProperty(l,r,c):C.deleteValueForProperty(l,r)}}a&&_.setValueForStyles(j(this),a,this)},_updateDOMChildren:function(t,e,n,r){var i=W[typeof t.children]?t.children:null,o=W[typeof e.children]?e.children:null,a=t.dangerouslySetInnerHTML&&t.dangerouslySetInnerHTML.__html,u=e.dangerouslySetInnerHTML&&e.dangerouslySetInnerHTML.__html,c=null!=i?null:t.children,s=null!=o?null:e.children,l=null!=i||null!=a,f=null!=o||null!=u;null!=c&&null==s?this.updateChildren(null,n,r):l&&!f&&this.updateTextContent(""),null!=o?i!==o&&this.updateTextContent(""+o):null!=u?a!==u&&this.updateMarkup(""+u):null!=s&&this.updateChildren(s,n,r)},getHostNode:function(){return j(this)},unmountComponent:function(t){switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":var e=this._wrapperState.listeners;if(e)for(var n=0;n<e.length;n++)e[n].remove();break;case"input":case"textarea":L.stopTracking(this);break;case"html":case"head":case"body":g("66",this._tag)}this.unmountChildren(t),S.uncacheNode(this),k.deleteAllListeners(this),this._rootNodeID=0,this._domID=0,this._wrapperState=null},getPublicInstance:function(){return j(this)}},m(v.prototype,v.Mixin,I.Mixin),t.exports=v},function(t,e,n){"use strict";function r(t,e){var n={_topLevelWrapper:t,_idCounter:1,_ownerDocument:e?e.nodeType===i?e:e.ownerDocument:null,_node:e,_tag:e?e.nodeName.toLowerCase():null,_namespaceURI:e?e.namespaceURI:null};return n}var i=(n(97),9);t.exports=r},function(t,e,n){"use strict";var r=n(3),i=n(20),o=n(4),a=function(t){this._currentElement=null,this._hostNode=null,this._hostParent=null,this._hostContainerInfo=null,this._domID=0};r(a.prototype,{mountComponent:function(t,e,n,r){var a=n._idCounter++;this._domID=a,this._hostParent=e,this._hostContainerInfo=n;var u=" react-empty: "+this._domID+" ";if(t.useCreateElement){var c=n._ownerDocument,s=c.createComment(u);return o.precacheNode(this,s),i(s)}return t.renderToStaticMarkup?"":"\x3c!--"+u+"--\x3e"},receiveComponent:function(){},getHostNode:function(){return o.getNodeFromInstance(this)},unmountComponent:function(){o.uncacheNode(this)}}),t.exports=a},function(t,e,n){"use strict";var r={useCreateElement:!0,useFiber:!1};t.exports=r},function(t,e,n){"use strict";var r=n(82),i=n(4),o={dangerouslyProcessChildrenUpdates:function(t,e){var n=i.getNodeFromInstance(t);r.processUpdates(n,e)}};t.exports=o},function(t,e,n){"use strict";function r(){this._rootNodeID&&p.updateWrapper(this)}function i(t){return"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}function o(t){var e=this._currentElement.props,n=s.executeOnChange(e,t);f.asap(r,this);var i=e.name;if("radio"===e.type&&null!=i){for(var o=l.getNodeFromInstance(this),u=o;u.parentNode;)u=u.parentNode;for(var c=u.querySelectorAll("input[name="+JSON.stringify(""+i)+'][type="radio"]'),p=0;p<c.length;p++){var h=c[p];if(h!==o&&h.form===o.form){var d=l.getInstanceFromNode(h);d||a("90"),f.asap(r,d)}}}return n}var a=n(1),u=n(3),c=n(160),s=n(86),l=n(4),f=n(12),p=(n(0),n(2),{getHostProps:function(t,e){var n=s.getValue(e),r=s.getChecked(e);return u({type:void 0,step:void 0,min:void 0,max:void 0},e,{defaultChecked:void 0,defaultValue:void 0,value:null!=n?n:t._wrapperState.initialValue,checked:null!=r?r:t._wrapperState.initialChecked,onChange:t._wrapperState.onChange})},mountWrapper:function(t,e){var n=e.defaultValue;t._wrapperState={initialChecked:null!=e.checked?e.checked:e.defaultChecked,initialValue:null!=e.value?e.value:n,listeners:null,onChange:o.bind(t),controlled:i(e)}},updateWrapper:function(t){var e=t._currentElement.props,n=e.checked;null!=n&&c.setValueForProperty(l.getNodeFromInstance(t),"checked",n||!1);var r=l.getNodeFromInstance(t),i=s.getValue(e);if(null!=i)if(0===i&&""===r.value)r.value="0";else if("number"===e.type){var o=parseFloat(r.value,10)||0;(i!=o||i==o&&r.value!=i)&&(r.value=""+i)}else r.value!==""+i&&(r.value=""+i);else null==e.value&&null!=e.defaultValue&&r.defaultValue!==""+e.defaultValue&&(r.defaultValue=""+e.defaultValue),null==e.checked&&null!=e.defaultChecked&&(r.defaultChecked=!!e.defaultChecked)},postMountWrapper:function(t){var e=t._currentElement.props,n=l.getNodeFromInstance(t);switch(e.type){case"submit":case"reset":break;case"color":case"date":case"datetime":case"datetime-local":case"month":case"time":case"week":n.value="",n.value=n.defaultValue;break;default:n.value=n.value}var r=n.name;""!==r&&(n.name=""),n.defaultChecked=!n.defaultChecked,n.defaultChecked=!n.defaultChecked,""!==r&&(n.name=r)}});t.exports=p},function(t,e,n){"use strict";function r(t){var e="";return o.Children.forEach(t,function(t){null!=t&&("string"==typeof t||"number"==typeof t?e+=t:c||(c=!0))}),e}var i=n(3),o=n(26),a=n(4),u=n(162),c=(n(2),!1),s={mountWrapper:function(t,e,n){var i=null;if(null!=n){var o=n;"optgroup"===o._tag&&(o=o._hostParent),null!=o&&"select"===o._tag&&(i=u.getSelectValueContext(o))}var a=null;if(null!=i){var c;if(c=null!=e.value?e.value+"":r(e.children),a=!1,Array.isArray(i)){for(var s=0;s<i.length;s++)if(""+i[s]===c){a=!0;break}}else a=""+i===c}t._wrapperState={selected:a}},postMountWrapper:function(t){var e=t._currentElement.props;if(null!=e.value){a.getNodeFromInstance(t).setAttribute("value",e.value)}},getHostProps:function(t,e){var n=i({selected:void 0,children:void 0},e);null!=t._wrapperState.selected&&(n.selected=t._wrapperState.selected);var o=r(e.children);return o&&(n.children=o),n}};t.exports=s},function(t,e,n){"use strict";function r(t,e,n,r){return t===n&&e===r}function i(t){var e=document.selection,n=e.createRange(),r=n.text.length,i=n.duplicate();i.moveToElementText(t),i.setEndPoint("EndToStart",n);var o=i.text.length;return{start:o,end:o+r}}function o(t){var e=window.getSelection&&window.getSelection();if(!e||0===e.rangeCount)return null;var n=e.anchorNode,i=e.anchorOffset,o=e.focusNode,a=e.focusOffset,u=e.getRangeAt(0);try{u.startContainer.nodeType,u.endContainer.nodeType}catch(t){return null}var c=r(e.anchorNode,e.anchorOffset,e.focusNode,e.focusOffset),s=c?0:u.toString().length,l=u.cloneRange();l.selectNodeContents(t),l.setEnd(u.startContainer,u.startOffset);var f=r(l.startContainer,l.startOffset,l.endContainer,l.endOffset),p=f?0:l.toString().length,h=p+s,d=document.createRange();d.setStart(n,i),d.setEnd(o,a);var v=d.collapsed;return{start:v?h:p,end:v?p:h}}function a(t,e){var n,r,i=document.selection.createRange().duplicate();void 0===e.end?(n=e.start,r=n):e.start>e.end?(n=e.end,r=e.start):(n=e.start,r=e.end),i.moveToElementText(t),i.moveStart("character",n),i.setEndPoint("EndToStart",i),i.moveEnd("character",r-n),i.select()}function u(t,e){if(window.getSelection){var n=window.getSelection(),r=t[l()].length,i=Math.min(e.start,r),o=void 0===e.end?i:Math.min(e.end,r);if(!n.extend&&i>o){var a=o;o=i,i=a}var u=s(t,i),c=s(t,o);if(u&&c){var f=document.createRange();f.setStart(u.node,u.offset),n.removeAllRanges(),i>o?(n.addRange(f),n.extend(c.node,c.offset)):(f.setEnd(c.node,c.offset),n.addRange(f))}}}var c=n(6),s=n(405),l=n(172),f=c.canUseDOM&&"selection"in document&&!("getSelection"in window),p={getOffsets:f?i:o,setOffsets:f?a:u};t.exports=p},function(t,e,n){"use strict";var r=n(1),i=n(3),o=n(82),a=n(20),u=n(4),c=n(56),s=(n(0),n(97),function(t){this._currentElement=t,this._stringText=""+t,this._hostNode=null,this._hostParent=null,this._domID=0,this._mountIndex=0,this._closingComment=null,this._commentNodes=null});i(s.prototype,{mountComponent:function(t,e,n,r){var i=n._idCounter++,o=" react-text: "+i+" ";if(this._domID=i,this._hostParent=e,t.useCreateElement){var s=n._ownerDocument,l=s.createComment(o),f=s.createComment(" /react-text "),p=a(s.createDocumentFragment());return a.queueChild(p,a(l)),this._stringText&&a.queueChild(p,a(s.createTextNode(this._stringText))),a.queueChild(p,a(f)),u.precacheNode(this,l),this._closingComment=f,p}var h=c(this._stringText);return t.renderToStaticMarkup?h:"\x3c!--"+o+"--\x3e"+h+"\x3c!-- /react-text --\x3e"},receiveComponent:function(t,e){if(t!==this._currentElement){this._currentElement=t;var n=""+t;if(n!==this._stringText){this._stringText=n;var r=this.getHostNode();o.replaceDelimitedText(r[0],r[1],n)}}},getHostNode:function(){var t=this._commentNodes;if(t)return t;if(!this._closingComment)for(var e=u.getNodeFromInstance(this),n=e.nextSibling;;){if(null==n&&r("67",this._domID),8===n.nodeType&&" /react-text "===n.nodeValue){this._closingComment=n;break}n=n.nextSibling}return t=[this._hostNode,this._closingComment],this._commentNodes=t,t},unmountComponent:function(){this._closingComment=null,this._commentNodes=null,u.uncacheNode(this)}}),t.exports=s},function(t,e,n){"use strict";function r(){this._rootNodeID&&l.updateWrapper(this)}function i(t){var e=this._currentElement.props,n=u.executeOnChange(e,t);return s.asap(r,this),n}var o=n(1),a=n(3),u=n(86),c=n(4),s=n(12),l=(n(0),n(2),{getHostProps:function(t,e){return null!=e.dangerouslySetInnerHTML&&o("91"),a({},e,{value:void 0,defaultValue:void 0,children:""+t._wrapperState.initialValue,onChange:t._wrapperState.onChange})},mountWrapper:function(t,e){var n=u.getValue(e),r=n;if(null==n){var a=e.defaultValue,c=e.children;null!=c&&(null!=a&&o("92"),Array.isArray(c)&&(c.length<=1||o("93"),c=c[0]),a=""+c),null==a&&(a=""),r=a}t._wrapperState={initialValue:""+r,listeners:null,onChange:i.bind(t)}},updateWrapper:function(t){var e=t._currentElement.props,n=c.getNodeFromInstance(t),r=u.getValue(e);if(null!=r){var i=""+r;i!==n.value&&(n.value=i),null==e.defaultValue&&(n.defaultValue=i)}null!=e.defaultValue&&(n.defaultValue=e.defaultValue)},postMountWrapper:function(t){var e=c.getNodeFromInstance(t),n=e.textContent;n===t._wrapperState.initialValue&&(e.value=n)}});t.exports=l},function(t,e,n){"use strict";function r(t,e){"_hostNode"in t||c("33"),"_hostNode"in e||c("33");for(var n=0,r=t;r;r=r._hostParent)n++;for(var i=0,o=e;o;o=o._hostParent)i++;for(;n-i>0;)t=t._hostParent,n--;for(;i-n>0;)e=e._hostParent,i--;for(var a=n;a--;){if(t===e)return t;t=t._hostParent,e=e._hostParent}return null}function i(t,e){"_hostNode"in t||c("35"),"_hostNode"in e||c("35");for(;e;){if(e===t)return!0;e=e._hostParent}return!1}function o(t){return"_hostNode"in t||c("36"),t._hostParent}function a(t,e,n){for(var r=[];t;)r.push(t),t=t._hostParent;var i;for(i=r.length;i-- >0;)e(r[i],"captured",n);for(i=0;i<r.length;i++)e(r[i],"bubbled",n)}function u(t,e,n,i,o){for(var a=t&&e?r(t,e):null,u=[];t&&t!==a;)u.push(t),t=t._hostParent;for(var c=[];e&&e!==a;)c.push(e),e=e._hostParent;var s;for(s=0;s<u.length;s++)n(u[s],"bubbled",i);for(s=c.length;s-- >0;)n(c[s],"captured",o)}var c=n(1);n(0);t.exports={isAncestor:i,getLowestCommonAncestor:r,getParentInstance:o,traverseTwoPhase:a,traverseEnterLeave:u}},function(t,e,n){"use strict";function r(){this.reinitializeTransaction()}var i=n(3),o=n(12),a=n(55),u=n(11),c={initialize:u,close:function(){p.isBatchingUpdates=!1}},s={initialize:u,close:o.flushBatchedUpdates.bind(o)},l=[s,c];i(r.prototype,a,{getTransactionWrappers:function(){return l}});var f=new r,p={isBatchingUpdates:!1,batchedUpdates:function(t,e,n,r,i,o){var a=p.isBatchingUpdates;return p.isBatchingUpdates=!0,a?t(e,n,r,i,o):f.perform(t,null,e,n,r,i,o)}};t.exports=p},function(t,e,n){"use strict";function r(){C||(C=!0,y.EventEmitter.injectReactEventListener(m),y.EventPluginHub.injectEventPluginOrder(u),y.EventPluginUtils.injectComponentTree(p),y.EventPluginUtils.injectTreeTraversal(d),y.EventPluginHub.injectEventPluginsByName({SimpleEventPlugin:w,EnterLeaveEventPlugin:c,ChangeEventPlugin:a,SelectEventPlugin:x,BeforeInputEventPlugin:o}),y.HostComponent.injectGenericComponentClass(f),y.HostComponent.injectTextComponentClass(v),y.DOMProperty.injectDOMPropertyConfig(i),y.DOMProperty.injectDOMPropertyConfig(s),y.DOMProperty.injectDOMPropertyConfig(b),y.EmptyComponent.injectEmptyComponentFactory(function(t){return new h(t)}),y.Updates.injectReconcileTransaction(_),y.Updates.injectBatchingStrategy(g),y.Component.injectEnvironment(l))}var i=n(345),o=n(347),a=n(349),u=n(351),c=n(352),s=n(355),l=n(357),f=n(360),p=n(4),h=n(362),d=n(370),v=n(368),g=n(371),m=n(375),y=n(376),_=n(381),b=n(386),x=n(387),w=n(388),C=!1;t.exports={inject:r}},function(t,e,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;t.exports=r},function(t,e,n){"use strict";function r(t){i.enqueueEvents(t),i.processEventQueue(!1)}var i=n(22),o={handleTopLevel:function(t,e,n,o){r(i.extractEvents(t,e,n,o))}};t.exports=o},function(t,e,n){"use strict";function r(t){for(;t._hostParent;)t=t._hostParent;var e=f.getNodeFromInstance(t),n=e.parentNode;return f.getClosestInstanceFromNode(n)}function i(t,e){this.topLevelType=t,this.nativeEvent=e,this.ancestors=[]}function o(t){var e=h(t.nativeEvent),n=f.getClosestInstanceFromNode(e),i=n;do{t.ancestors.push(i),i=i&&r(i)}while(i);for(var o=0;o<t.ancestors.length;o++)n=t.ancestors[o],v._handleTopLevel(t.topLevelType,n,t.nativeEvent,h(t.nativeEvent))}function a(t){t(d(window))}var u=n(3),c=n(153),s=n(6),l=n(18),f=n(4),p=n(12),h=n(94),d=n(335);u(i.prototype,{destructor:function(){this.topLevelType=null,this.nativeEvent=null,this.ancestors.length=0}}),l.addPoolingTo(i,l.twoArgumentPooler);var v={_enabled:!0,_handleTopLevel:null,WINDOW_HANDLE:s.canUseDOM?window:null,setHandleTopLevel:function(t){v._handleTopLevel=t},setEnabled:function(t){v._enabled=!!t},isEnabled:function(){return v._enabled},trapBubbledEvent:function(t,e,n){return n?c.listen(n,e,v.dispatchEvent.bind(null,t)):null},trapCapturedEvent:function(t,e,n){return n?c.capture(n,e,v.dispatchEvent.bind(null,t)):null},monitorScrollValue:function(t){var e=a.bind(null,t);c.listen(window,"scroll",e)},dispatchEvent:function(t,e){if(v._enabled){var n=i.getPooled(t,e);try{p.batchedUpdates(o,n)}finally{i.release(n)}}}};t.exports=v},function(t,e,n){"use strict";var r=n(21),i=n(22),o=n(52),a=n(87),u=n(163),c=n(53),s=n(165),l=n(12),f={Component:a.injection,DOMProperty:r.injection,EmptyComponent:u.injection,EventPluginHub:i.injection,EventPluginUtils:o.injection,EventEmitter:c.injection,HostComponent:s.injection,Updates:l.injection};t.exports=f},function(t,e,n){"use strict";var r=n(399),i=/\/?>/,o=/^<\!\-\-/,a={CHECKSUM_ATTR_NAME:"data-react-checksum",addChecksumToMarkup:function(t){var e=r(t);return o.test(t)?t:t.replace(i," "+a.CHECKSUM_ATTR_NAME+'="'+e+'"$&')},canReuseMarkup:function(t,e){var n=e.getAttribute(a.CHECKSUM_ATTR_NAME);return n=n&&parseInt(n,10),r(t)===n}};t.exports=a},function(t,e,n){"use strict";function r(t,e,n){return{type:"INSERT_MARKUP",content:t,fromIndex:null,fromNode:null,toIndex:n,afterNode:e}}function i(t,e,n){return{type:"MOVE_EXISTING",content:null,fromIndex:t._mountIndex,fromNode:p.getHostNode(t),toIndex:n,afterNode:e}}function o(t,e){return{type:"REMOVE_NODE",content:null,fromIndex:t._mountIndex,fromNode:e,toIndex:null,afterNode:null}}function a(t){return{type:"SET_MARKUP",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null}}function u(t){return{type:"TEXT_CONTENT",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null}}function c(t,e){return e&&(t=t||[],t.push(e)),t}function s(t,e){f.processChildrenUpdates(t,e)}var l=n(1),f=n(87),p=(n(39),n(9),n(15),n(24)),h=n(356),d=(n(11),n(402)),v=(n(0),{Mixin:{_reconcilerInstantiateChildren:function(t,e,n){return h.instantiateChildren(t,e,n)},_reconcilerUpdateChildren:function(t,e,n,r,i,o){var a,u=0;return a=d(e,u),h.updateChildren(t,a,n,r,i,this,this._hostContainerInfo,o,u),a},mountChildren:function(t,e,n){var r=this._reconcilerInstantiateChildren(t,e,n);this._renderedChildren=r;var i=[],o=0;for(var a in r)if(r.hasOwnProperty(a)){var u=r[a],c=0,s=p.mountComponent(u,e,this,this._hostContainerInfo,n,c);u._mountIndex=o++,i.push(s)}return i},updateTextContent:function(t){var e=this._renderedChildren;h.unmountChildren(e,!1);for(var n in e)e.hasOwnProperty(n)&&l("118");s(this,[u(t)])},updateMarkup:function(t){var e=this._renderedChildren;h.unmountChildren(e,!1);for(var n in e)e.hasOwnProperty(n)&&l("118");s(this,[a(t)])},updateChildren:function(t,e,n){this._updateChildren(t,e,n)},_updateChildren:function(t,e,n){var r=this._renderedChildren,i={},o=[],a=this._reconcilerUpdateChildren(r,t,o,i,e,n);if(a||r){var u,l=null,f=0,h=0,d=0,v=null;for(u in a)if(a.hasOwnProperty(u)){var g=r&&r[u],m=a[u];g===m?(l=c(l,this.moveChild(g,v,f,h)),h=Math.max(g._mountIndex,h),g._mountIndex=f):(g&&(h=Math.max(g._mountIndex,h)),l=c(l,this._mountChildAtIndex(m,o[d],v,f,e,n)),d++),f++,v=p.getHostNode(m)}for(u in i)i.hasOwnProperty(u)&&(l=c(l,this._unmountChild(r[u],i[u])));l&&s(this,l),this._renderedChildren=a}},unmountChildren:function(t){var e=this._renderedChildren;h.unmountChildren(e,t),this._renderedChildren=null},moveChild:function(t,e,n,r){if(t._mountIndex<r)return i(t,e,n)},createChild:function(t,e,n){return r(n,e,t._mountIndex)},removeChild:function(t,e){return o(t,e)},_mountChildAtIndex:function(t,e,n,r,i,o){return t._mountIndex=r,this.createChild(t,n,e)},_unmountChild:function(t,e){var n=this.removeChild(t,e);return t._mountIndex=null,n}}});t.exports=v},function(t,e,n){"use strict";function r(t){return!(!t||"function"!=typeof t.attachRef||"function"!=typeof t.detachRef)}var i=n(1),o=(n(0),{addComponentAsRefTo:function(t,e,n){r(n)||i("119"),n.attachRef(e,t)},removeComponentAsRefFrom:function(t,e,n){r(n)||i("120");var o=n.getPublicInstance();o&&o.refs[e]===t.getPublicInstance()&&n.detachRef(e)}});t.exports=o},function(t,e,n){"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(t,e,n){"use strict";function r(t){this.reinitializeTransaction(),this.renderToStaticMarkup=!1,this.reactMountReady=o.getPooled(null),this.useCreateElement=t}var i=n(3),o=n(159),a=n(18),u=n(53),c=n(166),s=(n(9),n(55)),l=n(89),f={initialize:c.getSelectionInformation,close:c.restoreSelection},p={initialize:function(){var t=u.isEnabled();return u.setEnabled(!1),t},close:function(t){u.setEnabled(t)}},h={initialize:function(){this.reactMountReady.reset()},close:function(){this.reactMountReady.notifyAll()}},d=[f,p,h],v={getTransactionWrappers:function(){return d},getReactMountReady:function(){return this.reactMountReady},getUpdateQueue:function(){return l},checkpoint:function(){return this.reactMountReady.checkpoint()},rollback:function(t){this.reactMountReady.rollback(t)},destructor:function(){o.release(this.reactMountReady),this.reactMountReady=null}};i(r.prototype,s,v),a.addPoolingTo(r),t.exports=r},function(t,e,n){"use strict";function r(t,e,n){"function"==typeof t?t(e.getPublicInstance()):o.addComponentAsRefTo(e,t,n)}function i(t,e,n){"function"==typeof t?t(null):o.removeComponentAsRefFrom(e,t,n)}var o=n(379),a={};a.attachRefs=function(t,e){if(null!==e&&"object"==typeof e){var n=e.ref;null!=n&&r(n,t,e._owner)}},a.shouldUpdateRefs=function(t,e){var n=null,r=null;null!==t&&"object"==typeof t&&(n=t.ref,r=t._owner);var i=null,o=null;return null!==e&&"object"==typeof e&&(i=e.ref,o=e._owner),n!==i||"string"==typeof i&&o!==r},a.detachRefs=function(t,e){if(null!==e&&"object"==typeof e){var n=e.ref;null!=n&&i(n,t,e._owner)}},t.exports=a},function(t,e,n){"use strict";function r(t){this.reinitializeTransaction(),this.renderToStaticMarkup=t,this.useCreateElement=!1,this.updateQueue=new u(this)}var i=n(3),o=n(18),a=n(55),u=(n(9),n(384)),c=[],s={enqueue:function(){}},l={getTransactionWrappers:function(){return c},getReactMountReady:function(){return s},getUpdateQueue:function(){return this.updateQueue},destructor:function(){},checkpoint:function(){},rollback:function(){}};i(r.prototype,a,l),o.addPoolingTo(r),t.exports=r},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var i=n(89),o=(n(2),function(){function t(e){r(this,t),this.transaction=e}return t.prototype.isMounted=function(t){return!1},t.prototype.enqueueCallback=function(t,e,n){this.transaction.isInTransaction()&&i.enqueueCallback(t,e,n)},t.prototype.enqueueForceUpdate=function(t){this.transaction.isInTransaction()&&i.enqueueForceUpdate(t)},t.prototype.enqueueReplaceState=function(t,e){this.transaction.isInTransaction()&&i.enqueueReplaceState(t,e)},t.prototype.enqueueSetState=function(t,e){this.transaction.isInTransaction()&&i.enqueueSetState(t,e)},t}());t.exports=o},function(t,e,n){"use strict";t.exports="15.6.2"},function(t,e,n){"use strict";var r={xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace"},i={accentHeight:"accent-height",accumulate:0,additive:0,alignmentBaseline:"alignment-baseline",allowReorder:"allowReorder",alphabetic:0,amplitude:0,arabicForm:"arabic-form",ascent:0,attributeName:"attributeName",attributeType:"attributeType",autoReverse:"autoReverse",azimuth:0,baseFrequency:"baseFrequency",baseProfile:"baseProfile",baselineShift:"baseline-shift",bbox:0,begin:0,bias:0,by:0,calcMode:"calcMode",capHeight:"cap-height",clip:0,clipPath:"clip-path",clipRule:"clip-rule",clipPathUnits:"clipPathUnits",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",contentScriptType:"contentScriptType",contentStyleType:"contentStyleType",cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:"diffuseConstant",direction:0,display:0,divisor:0,dominantBaseline:"dominant-baseline",dur:0,dx:0,dy:0,edgeMode:"edgeMode",elevation:0,enableBackground:"enable-background",end:0,exponent:0,externalResourcesRequired:"externalResourcesRequired",fill:0,fillOpacity:"fill-opacity",fillRule:"fill-rule",filter:0,filterRes:"filterRes",filterUnits:"filterUnits",floodColor:"flood-color",floodOpacity:"flood-opacity",focusable:0,fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",glyphRef:"glyphRef",gradientTransform:"gradientTransform",gradientUnits:"gradientUnits",hanging:0,horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",ideographic:0,imageRendering:"image-rendering",in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:"kernelMatrix",kernelUnitLength:"kernelUnitLength",kerning:0,keyPoints:"keyPoints",keySplines:"keySplines",keyTimes:"keyTimes",lengthAdjust:"lengthAdjust",letterSpacing:"letter-spacing",lightingColor:"lighting-color",limitingConeAngle:"limitingConeAngle",local:0,markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",markerHeight:"markerHeight",markerUnits:"markerUnits",markerWidth:"markerWidth",mask:0,maskContentUnits:"maskContentUnits",maskUnits:"maskUnits",mathematical:0,mode:0,numOctaves:"numOctaves",offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pathLength:"pathLength",patternContentUnits:"patternContentUnits",patternTransform:"patternTransform",patternUnits:"patternUnits",pointerEvents:"pointer-events",points:0,pointsAtX:"pointsAtX",pointsAtY:"pointsAtY",pointsAtZ:"pointsAtZ",preserveAlpha:"preserveAlpha",preserveAspectRatio:"preserveAspectRatio",primitiveUnits:"primitiveUnits",r:0,radius:0,refX:"refX",refY:"refY",renderingIntent:"rendering-intent",repeatCount:"repeatCount",repeatDur:"repeatDur",requiredExtensions:"requiredExtensions",requiredFeatures:"requiredFeatures",restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:"shape-rendering",slope:0,spacing:0,specularConstant:"specularConstant",specularExponent:"specularExponent",speed:0,spreadMethod:"spreadMethod",startOffset:"startOffset",stdDeviation:"stdDeviation",stemh:0,stemv:0,stitchTiles:"stitchTiles",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",string:0,stroke:0,strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",surfaceScale:"surfaceScale",systemLanguage:"systemLanguage",tableValues:"tableValues",targetX:"targetX",targetY:"targetY",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",textLength:"textLength",to:0,transform:0,u1:0,u2:0,underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicode:0,unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",values:0,vectorEffect:"vector-effect",version:0,vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",viewBox:"viewBox",viewTarget:"viewTarget",visibility:0,widths:0,wordSpacing:"word-spacing",writingMode:"writing-mode",x:0,xHeight:"x-height",x1:0,x2:0,xChannelSelector:"xChannelSelector",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlns:0,xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space",y:0,y1:0,y2:0,yChannelSelector:"yChannelSelector",z:0,zoomAndPan:"zoomAndPan"},o={Properties:{},DOMAttributeNamespaces:{xlinkActuate:r.xlink,xlinkArcrole:r.xlink,xlinkHref:r.xlink,xlinkRole:r.xlink,xlinkShow:r.xlink,xlinkTitle:r.xlink,xlinkType:r.xlink,xmlBase:r.xml,xmlLang:r.xml,xmlSpace:r.xml},DOMAttributeNames:{}};Object.keys(i).forEach(function(t){o.Properties[t]=0,i[t]&&(o.DOMAttributeNames[t]=i[t])}),t.exports=o},function(t,e,n){"use strict";function r(t){if("selectionStart"in t&&c.hasSelectionCapabilities(t))return{start:t.selectionStart,end:t.selectionEnd};if(window.getSelection){var e=window.getSelection();return{anchorNode:e.anchorNode,anchorOffset:e.anchorOffset,focusNode:e.focusNode,focusOffset:e.focusOffset}}if(document.selection){var n=document.selection.createRange();return{parentElement:n.parentElement(),text:n.text,top:n.boundingTop,left:n.boundingLeft}}}function i(t,e){if(y||null==v||v!==l())return null;var n=r(v);if(!m||!p(m,n)){m=n;var i=s.getPooled(d.select,g,t,e);return i.type="select",i.target=v,o.accumulateTwoPhaseDispatches(i),i}return null}var o=n(23),a=n(6),u=n(4),c=n(166),s=n(14),l=n(155),f=n(175),p=n(81),h=a.canUseDOM&&"documentMode"in document&&document.documentMode<=11,d={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:["topBlur","topContextMenu","topFocus","topKeyDown","topKeyUp","topMouseDown","topMouseUp","topSelectionChange"]}},v=null,g=null,m=null,y=!1,_=!1,b={eventTypes:d,extractEvents:function(t,e,n,r){if(!_)return null;var o=e?u.getNodeFromInstance(e):window;switch(t){case"topFocus":(f(o)||"true"===o.contentEditable)&&(v=o,g=e,m=null);break;case"topBlur":v=null,g=null,m=null;break;case"topMouseDown":y=!0;break;case"topContextMenu":case"topMouseUp":return y=!1,i(n,r);case"topSelectionChange":if(h)break;case"topKeyDown":case"topKeyUp":return i(n,r)}return null},didPutListener:function(t,e,n){"onSelect"===e&&(_=!0)}};t.exports=b},function(t,e,n){"use strict";function r(t){return"."+t._rootNodeID}function i(t){return"button"===t||"input"===t||"select"===t||"textarea"===t}var o=n(1),a=n(153),u=n(23),c=n(4),s=n(389),l=n(390),f=n(14),p=n(393),h=n(395),d=n(54),v=n(392),g=n(396),m=n(397),y=n(25),_=n(398),b=n(11),x=n(92),w=(n(0),{}),C={};["abort","animationEnd","animationIteration","animationStart","blur","canPlay","canPlayThrough","click","contextMenu","copy","cut","doubleClick","drag","dragEnd","dragEnter","dragExit","dragLeave","dragOver","dragStart","drop","durationChange","emptied","encrypted","ended","error","focus","input","invalid","keyDown","keyPress","keyUp","load","loadedData","loadedMetadata","loadStart","mouseDown","mouseMove","mouseOut","mouseOver","mouseUp","paste","pause","play","playing","progress","rateChange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeUpdate","touchCancel","touchEnd","touchMove","touchStart","transitionEnd","volumeChange","waiting","wheel"].forEach(function(t){var e=t[0].toUpperCase()+t.slice(1),n="on"+e,r="top"+e,i={phasedRegistrationNames:{bubbled:n,captured:n+"Capture"},dependencies:[r]};w[t]=i,C[r]=i});var k={},E={eventTypes:w,extractEvents:function(t,e,n,r){var i=C[t];if(!i)return null;var a;switch(t){case"topAbort":case"topCanPlay":case"topCanPlayThrough":case"topDurationChange":case"topEmptied":case"topEncrypted":case"topEnded":case"topError":case"topInput":case"topInvalid":case"topLoad":case"topLoadedData":case"topLoadedMetadata":case"topLoadStart":case"topPause":case"topPlay":case"topPlaying":case"topProgress":case"topRateChange":case"topReset":case"topSeeked":case"topSeeking":case"topStalled":case"topSubmit":case"topSuspend":case"topTimeUpdate":case"topVolumeChange":case"topWaiting":a=f;break;case"topKeyPress":if(0===x(n))return null;case"topKeyDown":case"topKeyUp":a=h;break;case"topBlur":case"topFocus":a=p;break;case"topClick":if(2===n.button)return null;case"topDoubleClick":case"topMouseDown":case"topMouseMove":case"topMouseUp":case"topMouseOut":case"topMouseOver":case"topContextMenu":a=d;break;case"topDrag":case"topDragEnd":case"topDragEnter":case"topDragExit":case"topDragLeave":case"topDragOver":case"topDragStart":case"topDrop":a=v;break;case"topTouchCancel":case"topTouchEnd":case"topTouchMove":case"topTouchStart":a=g;break;case"topAnimationEnd":case"topAnimationIteration":case"topAnimationStart":a=s;break;case"topTransitionEnd":a=m;break;case"topScroll":a=y;break;case"topWheel":a=_;break;case"topCopy":case"topCut":case"topPaste":a=l}a||o("86",t);var c=a.getPooled(i,e,n,r);return u.accumulateTwoPhaseDispatches(c),c},didPutListener:function(t,e,n){if("onClick"===e&&!i(t._tag)){var o=r(t),u=c.getNodeFromInstance(t);k[o]||(k[o]=a.listen(u,"click",b))}},willDeleteListener:function(t,e){if("onClick"===e&&!i(t._tag)){var n=r(t);k[n].remove(),delete k[n]}}};t.exports=E},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(14),o={animationName:null,elapsedTime:null,pseudoElement:null};i.augmentClass(r,o),t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(14),o={clipboardData:function(t){return"clipboardData"in t?t.clipboardData:window.clipboardData}};i.augmentClass(r,o),t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(14),o={data:null};i.augmentClass(r,o),t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(54),o={dataTransfer:null};i.augmentClass(r,o),t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(25),o={relatedTarget:null};i.augmentClass(r,o),t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(14),o={data:null};i.augmentClass(r,o),t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(25),o=n(92),a=n(403),u=n(93),c={key:a,location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:u,charCode:function(t){return"keypress"===t.type?o(t):0},keyCode:function(t){return"keydown"===t.type||"keyup"===t.type?t.keyCode:0},which:function(t){return"keypress"===t.type?o(t):"keydown"===t.type||"keyup"===t.type?t.keyCode:0}};i.augmentClass(r,c),t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(25),o=n(93),a={touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:o};i.augmentClass(r,a),t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(14),o={propertyName:null,elapsedTime:null,pseudoElement:null};i.augmentClass(r,o),t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){return i.call(this,t,e,n,r)}var i=n(54),o={deltaX:function(t){return"deltaX"in t?t.deltaX:"wheelDeltaX"in t?-t.wheelDeltaX:0},deltaY:function(t){return"deltaY"in t?t.deltaY:"wheelDeltaY"in t?-t.wheelDeltaY:"wheelDelta"in t?-t.wheelDelta:0},deltaZ:null,deltaMode:null};i.augmentClass(r,o),t.exports=r},function(t,e,n){"use strict";function r(t){for(var e=1,n=0,r=0,o=t.length,a=-4&o;r<a;){for(var u=Math.min(r+4096,a);r<u;r+=4)n+=(e+=t.charCodeAt(r))+(e+=t.charCodeAt(r+1))+(e+=t.charCodeAt(r+2))+(e+=t.charCodeAt(r+3));e%=i,n%=i}for(;r<o;r++)n+=e+=t.charCodeAt(r);return e%=i,n%=i,e|n<<16}var i=65521;t.exports=r},function(t,e,n){"use strict";function r(t,e,n,r){if(null==e||"boolean"==typeof e||""===e)return"";var i=isNaN(e);if(r||i||0===e||o.hasOwnProperty(t)&&o[t])return""+e;if("string"==typeof e){e=e.trim()}return e+"px"}var i=n(158),o=(n(2),i.isUnitlessNumber);t.exports=r},function(t,e,n){"use strict";function r(t){if(null==t)return null;if(1===t.nodeType)return t;var e=a.get(t);if(e)return e=u(e),e?o.getNodeFromInstance(e):null;"function"==typeof t.render?i("44"):i("45",Object.keys(t))}var i=n(1),o=(n(15),n(4)),a=n(39),u=n(171);n(0),n(2);t.exports=r},function(t,e,n){"use strict";(function(e){function r(t,e,n,r){if(t&&"object"==typeof t){var i=t,o=void 0===i[n];o&&null!=e&&(i[n]=e)}}function i(t,e){if(null==t)return t;var n={};return o(t,r,n),n}var o=(n(85),n(177));n(2);void 0!==e&&e.env,t.exports=i}).call(e,n(156))},function(t,e,n){"use strict";function r(t){if(t.key){var e=o[t.key]||t.key;if("Unidentified"!==e)return e}if("keypress"===t.type){var n=i(t);return 13===n?"Enter":String.fromCharCode(n)}return"keydown"===t.type||"keyup"===t.type?a[t.keyCode]||"Unidentified":""}var i=n(92),o={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},a={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"};t.exports=r},function(t,e,n){"use strict";function r(t){var e=t&&(i&&t[i]||t[o]);if("function"==typeof e)return e}var i="function"==typeof Symbol&&Symbol.iterator,o="@@iterator";t.exports=r},function(t,e,n){"use strict";function r(t){for(;t&&t.firstChild;)t=t.firstChild;return t}function i(t){for(;t;){if(t.nextSibling)return t.nextSibling;t=t.parentNode}}function o(t,e){for(var n=r(t),o=0,a=0;n;){if(3===n.nodeType){if(a=o+n.textContent.length,o<=e&&a>=e)return{node:n,offset:e-o};o=a}n=r(i(n))}}t.exports=o},function(t,e,n){"use strict";function r(t,e){var n={};return n[t.toLowerCase()]=e.toLowerCase(),n["Webkit"+t]="webkit"+e,n["Moz"+t]="moz"+e,n["ms"+t]="MS"+e,n["O"+t]="o"+e.toLowerCase(),n}function i(t){if(u[t])return u[t];if(!a[t])return t;var e=a[t];for(var n in e)if(e.hasOwnProperty(n)&&n in c)return u[t]=e[n];return""}var o=n(6),a={animationend:r("Animation","AnimationEnd"),animationiteration:r("Animation","AnimationIteration"),animationstart:r("Animation","AnimationStart"),transitionend:r("Transition","TransitionEnd")},u={},c={};o.canUseDOM&&(c=document.createElement("div").style,"AnimationEvent"in window||(delete a.animationend.animation,delete a.animationiteration.animation,delete a.animationstart.animation),"TransitionEvent"in window||delete a.transitionend.transition),t.exports=i},function(t,e,n){"use strict";function r(t){return'"'+i(t)+'"'}var i=n(56);t.exports=r},function(t,e,n){"use strict";var r=n(167);t.exports=r.renderSubtreeIntoContainer},function(t,e,n){"use strict";function r(t,e){var n=l.extractSingleTouch(e);return n?n[t.page]:t.page in e?e[t.page]:e[t.client]+f[t.envScroll]}function i(t,e){var n=r(b.x,e),i=r(b.y,e);return Math.pow(Math.pow(n-t.x,2)+Math.pow(i-t.y,2),.5)}function o(t){return{tapMoveThreshold:g,ignoreMouseThreshold:m,eventTypes:C,extractEvents:function(e,n,o,a){if(!h(e)&&!d(e))return null;if(v(e))_=k();else if(t(_,k()))return null;var u=null,l=i(y,o);return d(e)&&l<g&&(u=s.getPooled(C.touchTap,n,o,a)),h(e)?(y.x=r(b.x,o),y.y=r(b.y,o)):d(e)&&(y.x=0,y.y=0),c.accumulateTwoPhaseDispatches(u),u}}}var a=n(353),u=n(52),c=n(23),s=n(25),l=n(410),f=n(90),p=n(340),h=(a.topLevelTypes,u.isStartish),d=u.isEndish,v=function(t){return["topTouchCancel","topTouchEnd","topTouchStart","topTouchMove"].indexOf(t)>=0},g=10,m=750,y={x:null,y:null},_=null,b={x:{page:"pageX",client:"clientX",envScroll:"currentPageScrollLeft"},y:{page:"pageY",client:"clientY",envScroll:"currentPageScrollTop"}},x=["topTouchStart","topTouchCancel","topTouchEnd","topTouchMove"],w=["topMouseDown","topMouseMove","topMouseUp"].concat(x),C={touchTap:{phasedRegistrationNames:{bubbled:p({onTouchTap:null}),captured:p({onTouchTapCapture:null})},dependencies:w}},k=function(){return Date.now?Date.now:function(){return+new Date}}();t.exports=o},function(t,e){var n={extractSingleTouch:function(t){var e=t.touches,n=t.changedTouches,r=e&&e.length>0,i=n&&n.length>0;return!r&&i?n[0]:r?e[0]:t}};t.exports=n},function(t,e){t.exports=function(t,e){if(t&&e-t<750)return!0}},function(t,e,n){"use strict";function r(t){var e={"=":"=0",":":"=2"};return"$"+(""+t).replace(/[=:]/g,function(t){return e[t]})}function i(t){var e=/(=0|=2)/g,n={"=0":"=","=2":":"};return(""+("."===t[0]&&"$"===t[1]?t.substring(2):t.substring(1))).replace(e,function(t){return n[t]})}var o={escape:r,unescape:i};t.exports=o},function(t,e,n){"use strict";var r=n(40),i=(n(0),function(t){var e=this;if(e.instancePool.length){var n=e.instancePool.pop();return e.call(n,t),n}return new e(t)}),o=function(t,e){var n=this;if(n.instancePool.length){var r=n.instancePool.pop();return n.call(r,t,e),r}return new n(t,e)},a=function(t,e,n){var r=this;if(r.instancePool.length){var i=r.instancePool.pop();return r.call(i,t,e,n),i}return new r(t,e,n)},u=function(t,e,n,r){var i=this;if(i.instancePool.length){var o=i.instancePool.pop();return i.call(o,t,e,n,r),o}return new i(t,e,n,r)},c=function(t){var e=this;t instanceof e||r("25"),t.destructor(),e.instancePool.length<e.poolSize&&e.instancePool.push(t)},s=i,l=function(t,e){var n=t;return n.instancePool=[],n.getPooled=e||s,n.poolSize||(n.poolSize=10),n.release=c,n},f={addPoolingTo:l,oneArgumentPooler:i,twoArgumentPooler:o,threeArgumentPooler:a,fourArgumentPooler:u};t.exports=f},function(t,e,n){"use strict";function r(t){return(""+t).replace(b,"$&/")}function i(t,e){this.func=t,this.context=e,this.count=0}function o(t,e,n){var r=t.func,i=t.context;r.call(i,e,t.count++)}function a(t,e,n){if(null==t)return t;var r=i.getPooled(e,n);m(t,o,r),i.release(r)}function u(t,e,n,r){this.result=t,this.keyPrefix=e,this.func=n,this.context=r,this.count=0}function c(t,e,n){var i=t.result,o=t.keyPrefix,a=t.func,u=t.context,c=a.call(u,e,t.count++);Array.isArray(c)?s(c,i,n,g.thatReturnsArgument):null!=c&&(v.isValidElement(c)&&(c=v.cloneAndReplaceKey(c,o+(!c.key||e&&e.key===c.key?"":r(c.key)+"/")+n)),i.push(c))}function s(t,e,n,i,o){var a="";null!=n&&(a=r(n)+"/");var s=u.getPooled(e,a,i,o);m(t,c,s),u.release(s)}function l(t,e,n){if(null==t)return t;var r=[];return s(t,r,null,e,n),r}function f(t,e,n){return null}function p(t,e){return m(t,f,null)}function h(t){var e=[];return s(t,e,null,g.thatReturnsArgument),e}var d=n(413),v=n(27),g=n(11),m=n(423),y=d.twoArgumentPooler,_=d.fourArgumentPooler,b=/\/+/g;i.prototype.destructor=function(){this.func=null,this.context=null,this.count=0},d.addPoolingTo(i,y),u.prototype.destructor=function(){this.result=null,this.keyPrefix=null,this.func=null,this.context=null,this.count=0},d.addPoolingTo(u,_);var x={forEach:a,map:l,mapIntoWithKeyPrefixInternal:s,count:p,toArray:h};t.exports=x},function(t,e,n){"use strict";var r=n(27),i=r.createFactory,o={a:i("a"),abbr:i("abbr"),address:i("address"),area:i("area"),article:i("article"),aside:i("aside"),audio:i("audio"),b:i("b"),base:i("base"),bdi:i("bdi"),bdo:i("bdo"),big:i("big"),blockquote:i("blockquote"),body:i("body"),br:i("br"),button:i("button"),canvas:i("canvas"),caption:i("caption"),cite:i("cite"),code:i("code"),col:i("col"),colgroup:i("colgroup"),data:i("data"),datalist:i("datalist"),dd:i("dd"),del:i("del"),details:i("details"),dfn:i("dfn"),dialog:i("dialog"),div:i("div"),dl:i("dl"),dt:i("dt"),em:i("em"),embed:i("embed"),fieldset:i("fieldset"),figcaption:i("figcaption"),figure:i("figure"),footer:i("footer"),form:i("form"),h1:i("h1"),h2:i("h2"),h3:i("h3"),h4:i("h4"),h5:i("h5"),h6:i("h6"),head:i("head"),header:i("header"),hgroup:i("hgroup"),hr:i("hr"),html:i("html"),i:i("i"),iframe:i("iframe"),img:i("img"),input:i("input"),ins:i("ins"),kbd:i("kbd"),keygen:i("keygen"),label:i("label"),legend:i("legend"),li:i("li"),link:i("link"),main:i("main"),map:i("map"),mark:i("mark"),menu:i("menu"),menuitem:i("menuitem"),meta:i("meta"),meter:i("meter"),nav:i("nav"),noscript:i("noscript"),object:i("object"),ol:i("ol"),optgroup:i("optgroup"),option:i("option"),output:i("output"),p:i("p"),param:i("param"),picture:i("picture"),pre:i("pre"),progress:i("progress"),q:i("q"),rp:i("rp"),rt:i("rt"),ruby:i("ruby"),s:i("s"),samp:i("samp"),script:i("script"),section:i("section"),select:i("select"),small:i("small"),source:i("source"),span:i("span"),strong:i("strong"),style:i("style"),sub:i("sub"),summary:i("summary"),sup:i("sup"),table:i("table"),tbody:i("tbody"),td:i("td"),textarea:i("textarea"),tfoot:i("tfoot"),th:i("th"),thead:i("thead"),time:i("time"),title:i("title"),tr:i("tr"),track:i("track"),u:i("u"),ul:i("ul"),var:i("var"),video:i("video"),wbr:i("wbr"),circle:i("circle"),clipPath:i("clipPath"),defs:i("defs"),ellipse:i("ellipse"),g:i("g"),image:i("image"),line:i("line"),linearGradient:i("linearGradient"),mask:i("mask"),path:i("path"),pattern:i("pattern"),polygon:i("polygon"),polyline:i("polyline"),radialGradient:i("radialGradient"),rect:i("rect"),stop:i("stop"),svg:i("svg"),text:i("text"),tspan:i("tspan")};t.exports=o},function(t,e,n){"use strict";var r=n(27),i=r.isValidElement,o=n(157);t.exports=o(i)},function(t,e,n){"use strict";t.exports="15.6.2"},function(t,e,n){"use strict";var r=n(178),i=r.Component,o=n(27),a=o.isValidElement,u=n(181),c=n(191);t.exports=c(i,a,u)},function(t,e,n){"use strict";function r(t){var e=t&&(i&&t[i]||t[o]);if("function"==typeof e)return e}var i="function"==typeof Symbol&&Symbol.iterator,o="@@iterator";t.exports=r},function(t,e,n){"use strict";function r(){return i++}var i=1;t.exports=r},function(t,e,n){"use strict";var r=function(){};t.exports=r},function(t,e,n){"use strict";function r(t){return o.isValidElement(t)||i("143"),t}var i=n(40),o=n(27);n(0);t.exports=r},function(t,e,n){"use strict";function r(t,e){return t&&"object"==typeof t&&null!=t.key?s.escape(t.key):e.toString(36)}function i(t,e,n,o){var p=typeof t;if("undefined"!==p&&"boolean"!==p||(t=null),null===t||"string"===p||"number"===p||"object"===p&&t.$$typeof===u)return n(o,t,""===e?l+r(t,0):e),1;var h,d,v=0,g=""===e?l:e+f;if(Array.isArray(t))for(var m=0;m<t.length;m++)h=t[m],d=g+r(h,m),v+=i(h,d,n,o);else{var y=c(t);if(y){var _,b=y.call(t);if(y!==t.entries)for(var x=0;!(_=b.next()).done;)h=_.value,d=g+r(h,x++),v+=i(h,d,n,o);else for(;!(_=b.next()).done;){var w=_.value;w&&(h=w[1],d=g+s.escape(w[0])+f+r(h,0),v+=i(h,d,n,o))}}else if("object"===p){var C="",k=String(t);a("31","[object Object]"===k?"object with keys {"+Object.keys(t).join(", ")+"}":k,C)}}return v}function o(t,e,n){return null==t?0:i(t,"",e,n)}var a=n(40),u=(n(15),n(180)),c=n(419),s=(n(0),n(412)),l=(n(2),"."),f=":";t.exports=o}]);</script>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
|
||
</div>
|
||
<div class="inner_cell">
|
||
<div class="text_cell_render border-box-sizing rendered_html">
|
||
<h2 id="Load-the-IMDB-dataset">Load the IMDB dataset<a class="anchor-link" href="#Load-the-IMDB-dataset">¶</a></h2>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [2]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">corpus</span><span class="p">,</span><span class="n">y</span> <span class="o">=</span> <span class="n">shap</span><span class="o">.</span><span class="n">datasets</span><span class="o">.</span><span class="n">imdb</span><span class="p">()</span>
|
||
<span class="n">corpus_train</span><span class="p">,</span> <span class="n">corpus_test</span><span class="p">,</span> <span class="n">y_train</span><span class="p">,</span> <span class="n">y_test</span> <span class="o">=</span> <span class="n">train_test_split</span><span class="p">(</span><span class="n">corpus</span><span class="p">,</span> <span class="n">y</span><span class="p">,</span> <span class="n">test_size</span><span class="o">=</span><span class="mf">0.2</span><span class="p">,</span> <span class="n">random_state</span><span class="o">=</span><span class="mi">7</span><span class="p">)</span>
|
||
|
||
<span class="n">vectorizer</span> <span class="o">=</span> <span class="n">TfidfVectorizer</span><span class="p">(</span><span class="n">min_df</span><span class="o">=</span><span class="mi">10</span><span class="p">)</span>
|
||
<span class="n">X_train</span> <span class="o">=</span> <span class="n">vectorizer</span><span class="o">.</span><span class="n">fit_transform</span><span class="p">(</span><span class="n">corpus_train</span><span class="p">)</span>
|
||
<span class="n">X_test</span> <span class="o">=</span> <span class="n">vectorizer</span><span class="o">.</span><span class="n">transform</span><span class="p">(</span><span class="n">corpus_test</span><span class="p">)</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
|
||
</div>
|
||
<div class="inner_cell">
|
||
<div class="text_cell_render border-box-sizing rendered_html">
|
||
<h2 id="Fit-a-linear-logistic-regression-model">Fit a linear logistic regression model<a class="anchor-link" href="#Fit-a-linear-logistic-regression-model">¶</a></h2>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [3]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">model</span> <span class="o">=</span> <span class="n">sklearn</span><span class="o">.</span><span class="n">linear_model</span><span class="o">.</span><span class="n">LogisticRegression</span><span class="p">(</span><span class="n">penalty</span><span class="o">=</span><span class="s2">"l1"</span><span class="p">,</span> <span class="n">C</span><span class="o">=</span><span class="mf">0.1</span><span class="p">)</span>
|
||
<span class="n">model</span><span class="o">.</span><span class="n">fit</span><span class="p">(</span><span class="n">X_train</span><span class="p">,</span> <span class="n">y_train</span><span class="p">)</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="output_wrapper">
|
||
<div class="output">
|
||
|
||
|
||
<div class="output_area">
|
||
|
||
<div class="prompt output_prompt">Out[3]:</div>
|
||
|
||
|
||
|
||
|
||
<div class="output_text output_subarea output_execute_result">
|
||
<pre>LogisticRegression(C=0.1, class_weight=None, dual=False, fit_intercept=True,
|
||
intercept_scaling=1, max_iter=100, multi_class='ovr', n_jobs=1,
|
||
penalty='l1', random_state=None, solver='liblinear', tol=0.0001,
|
||
verbose=0, warm_start=False)</pre>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
|
||
</div>
|
||
<div class="inner_cell">
|
||
<div class="text_cell_render border-box-sizing rendered_html">
|
||
<h2 id="Explain-the-linear-model">Explain the linear model<a class="anchor-link" href="#Explain-the-linear-model">¶</a></h2>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [4]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">explainer</span> <span class="o">=</span> <span class="n">shap</span><span class="o">.</span><span class="n">LinearExplainer</span><span class="p">(</span><span class="n">model</span><span class="p">,</span> <span class="n">X_train</span><span class="p">,</span> <span class="n">feature_dependence</span><span class="o">=</span><span class="s2">"independent"</span><span class="p">)</span>
|
||
<span class="n">shap_values</span> <span class="o">=</span> <span class="n">explainer</span><span class="o">.</span><span class="n">shap_values</span><span class="p">(</span><span class="n">X_test</span><span class="p">)</span>
|
||
<span class="n">X_test_array</span> <span class="o">=</span> <span class="n">X_test</span><span class="o">.</span><span class="n">toarray</span><span class="p">()</span> <span class="c1"># we need to pass a dense version for the plotting functions</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
|
||
</div>
|
||
<div class="inner_cell">
|
||
<div class="text_cell_render border-box-sizing rendered_html">
|
||
<h3 id="Summarize-the-effect-of-all-the-features">Summarize the effect of all the features<a class="anchor-link" href="#Summarize-the-effect-of-all-the-features">¶</a></h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [5]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">shap</span><span class="o">.</span><span class="n">summary_plot</span><span class="p">(</span><span class="n">shap_values</span><span class="p">,</span> <span class="n">X_test_array</span><span class="p">,</span> <span class="n">feature_names</span><span class="o">=</span><span class="n">vectorizer</span><span class="o">.</span><span class="n">get_feature_names</span><span class="p">())</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="output_wrapper">
|
||
<div class="output">
|
||
|
||
|
||
<div class="output_area">
|
||
|
||
<div class="prompt"></div>
|
||
|
||
|
||
|
||
|
||
<div class="output_png output_subarea ">
|
||
<img src="data:image/png;base64,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bowjzAFi0ZYPA0wBtgb8rMebC5+ja1UPPV1ZnrnvOYJUgtykZlqTST54zgHEGhOsXNHLzDmt/OLnP+Fva7aq1a2IyAQVVKjnIrWnYMI4Za0NjDF/Bo4EjjHGnF+qCKMxZhPgoOjloxtzjCIiIlIbbiLGrEN36Xu9y2n7l+y3yczKRSlFRGTiUs2E8e3G6Os84IIyfa4DkoTZkDeW6SMiIiIiIiLSR5kJ49uvgYeAQ4CvGWNmAT8ElhJmOV4IHBf1vd5a+3xNRikiIiIiIiJjijITxjFrbQC8H/gL4dTJc4B/AauAx+gPJNxO+cwFERERERGRjS4Yxia1o2DCOGetXU1YE+EM4GHCQEIWWAbcDRxlrf2wtTZbu1GKiIiIiIjIWKJpDnXOWnsqcOoQfV4lzDwot98DfhxtIiIiIiIiIm+JMhNEREREREREpCrKTBAREREREZH645RNvpY6oMwEEREREREREamKggkiIiIiIiIiUhUFE0RERERERESkKgomiIiIiIiIiEhVVIBRRERERERE6k5Q6wFIRcpMEBEREZFh8Gs9ABERqSMKJoiIiIjIkC5qv59KnxN+5wgt4SYiMpEomCAiIiIiwzKT10u2u8BRu87auIMREZGaUjBBRERERIbl9PZnWHThbCZFVbcSwKILZ/PKhbNrOi4RGZ8Cxxlyk9pRAUYRERERqcoz5yt4ICIy0SkzQURERERERESqomCCiIiIiIiIiFRF0xxERERERESk7pRfP0bqgTITRERERERERKQqykwQERERkT5zr1oyqO2i9hoMRERE6poyE0REREQEKB1IALh8zXs28khERKTeKZggIiIiImUDCSGHX62Zs9HGIiICEDjOkJvUjoIJIiIiIjIEh+fZpdaDEBGROqJggoiIiIgMgz4BFBGRfgomiIiIiIiIiEhVtJqDiIiIiIiI1J2g1gOQipSZICIiIiIiIiJVUTBBRERERERERKqiYIKIiIiIiIiIVEU1E0RERERERKTuBI5WkalnykwQERERERERkaoomPAWGWNuNsYExpgFtR6LiIiIiIiIyMagaQ4TkDHmVOAmAGutcodERERERESkKgomiIiIiIiISN0J0Oee9UzTHERERERERESkKgomiIiIiIiIiEhVNM1hhBlj5gPnA3sDbcAi4OfAVdba9RWO2wf4JHAQMBPIAf8BfgV8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
|
||
"
|
||
width=521
|
||
height=574
|
||
>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
|
||
</div>
|
||
<div class="inner_cell">
|
||
<div class="text_cell_render border-box-sizing rendered_html">
|
||
<h3 id="Explain-the-first-review's-sentiment-prediction">Explain the first review's sentiment prediction<a class="anchor-link" href="#Explain-the-first-review's-sentiment-prediction">¶</a></h3><p>Remember that higher means more likely to be negative, so in the plots below the "red" features are actually helping raise the chance of a positive review, while the negative features are lowering the chance. It is interesting to see how what is not present in the text (like bad=0 below) is often just as important as what is in the text. Remember the values of the features are TF-IDF values. It is interesting that "and" is the most important feature of the text, perhaps because it captures some high level notion of the text structure (having lots of "and"s apparently indicates a more positive review).</p>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [6]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">ind</span> <span class="o">=</span> <span class="mi">0</span>
|
||
<span class="n">shap</span><span class="o">.</span><span class="n">force_plot</span><span class="p">(</span>
|
||
<span class="n">explainer</span><span class="o">.</span><span class="n">expected_value</span><span class="p">,</span> <span class="n">shap_values</span><span class="p">[</span><span class="n">ind</span><span class="p">,:],</span> <span class="n">X_test_array</span><span class="p">[</span><span class="n">ind</span><span class="p">,:],</span>
|
||
<span class="n">feature_names</span><span class="o">=</span><span class="n">vectorizer</span><span class="o">.</span><span class="n">get_feature_names</span><span class="p">()</span>
|
||
<span class="p">)</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="output_wrapper">
|
||
<div class="output">
|
||
|
||
|
||
<div class="output_area">
|
||
|
||
<div class="prompt output_prompt">Out[6]:</div>
|
||
|
||
|
||
|
||
<div class="output_html rendered_html output_subarea output_execute_result">
|
||
|
||
<div id='iZGIOF1HLF09NUIH0F160'>
|
||
<div style='color: #900; text-align: center;'>
|
||
<b>Visualization omitted, Javascript library not loaded!</b><br>
|
||
Have you run `initjs()` in this notebook? If this notebook was from another
|
||
user you must also trust this notebook (File -> Trust notebook). If you are viewing
|
||
this notebook on github the Javascript has been stripped for security. If you are using
|
||
JupyterLab this error is because a JupyterLab extension has not yet been written.
|
||
</div></div>
|
||
<script>
|
||
if (window.SHAP) SHAP.ReactDom.render(
|
||
SHAP.React.createElement(SHAP.AdditiveForceVisualizer, {"outNames": ["output value"], "baseValue": -0.09826881834578277, "outValue": 1.5979641263575115, "link": "identity", "featureNames": ["00", "000", "007", "01", "02", "05", "06", "10", "100", "1000", "101", "102", "10th", "11", "110", "11th", "12", "120", "12th", "13", "13th", "14", "140", "14th", "15", "150", "16", "16mm", "17", "17th", "18", "180", "1800", "18th", "19", "1912", "1914", "1920", "1920s", "1922", "1924", "1927", "1928", "1929", "1930", "1930s", "1931", "1932", "1933", "1934", "1935", "1936", "1937", "1938", "1939", "1940", "1940s", "1941", "1942", "1943", "1944", "1945", "1946", "1947", "1948", "1949", "1950", "1950s", "1951", "1952", "1953", "1954", "1955", "1956", "1957", "1958", "1959", "1960", "1960s", "1961", "1962", "1963", "1964", "1965", "1966", "1967", "1968", "1969", "1970", "1970s", "1971", "1972", "1973", "1974", "1975", "1976", "1977", "1978", "1979", "1980", "1980s", "1981", "1982", "1983", "1984", "1985", "1986", "1987", "1988", "1989", "1990", "1990s", "1991", "1992", "1993", "1994", "1995", "1996", "1997", "1998", "1999", "19th", "1st", "20", "200", "2000", "2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "20s", "20th", "21", "21st", "22", "23", "24", "25", "250", "26", "27", "28", "29", "2d", "2nd", "30", "300", "3000", "30s", "31", "32", "33", "34", "35", "36", "360", "37", "39", "3d", "3rd", "40", "400", "40s", "42", "42nd", "43", "44", "45", "47", "48", "49", "4th", "50", "500", "50s", "51", "52", "54", "55", "56", "58", "5th", "60", "600", "60s", "64", "65", "66", "68", "6th", "70", "700", "70s", "71", "73", "74", "747", "75", "76", "77", "78", "79", "7th", "80", "80s", "81", "82", "83", "84", "85", "86", "87", "88", "89", "8mm", "8th", "90", "90210", "90s", "91", "911", "93", "94", "95", "96", "97", "98", "99", "9th", "aag", "aames", "aaron", "abandon", "abandoned", "abandoning", "abandonment", "abandons", "abbot", "abbott", "abc", "abducted", "abduction", "abe", "abhay", "abhorrent", "abiding", "abilities", "ability", "able", "ably", "aboard", "abominable", "abomination", "aboriginal", "aborted", "abortion", "abound", "abounds", "about", "above", "abraham", "abroad", "abrupt", "abruptly", "absence", "absent", "absolute", "absolutely", "absorb", "absorbed", "absorbing", "abstract", "absurd", "absurdist", "absurdity", "absurdly", "abu", "abundance", "abundant", "abuse", "abused", "abusing", "abusive", "abysmal", "abysmally", "abyss", "academic", "academy", "accent", "accented", "accents", "accept", "acceptable", "acceptance", "accepted", "accepting", "accepts", "access", "accessible", "accident", "accidental", "accidentally", "accidents", "acclaim", "acclaimed", "accolades", "accompanied", "accompanies", "accompaniment", "accompany", "accompanying", "accomplice", "accomplish", "accomplished", "accomplishes", "accomplishment", "accomplishments", "according", "accordingly", "account", "accountant", "accounts", "accuracy", "accurate", "accurately", "accusations", "accuse", "accused", "accuses", "accustomed", "ace", "achieve", "achieved", "achievement", "achievements", "achieves", "achieving", "achilles", "aching", "achingly", "acid", "ackland", "acknowledge", "acknowledged", "acquaintance", "acquaintances", "acquainted", "acquire", "acquired", "acres", "acrobatics", "across", "act", "acted", "acting", "action", "actioner", "actions", "active", "actively", "activist", "activists", "activities", "activity", "actor", "actors", "actress", "actresses", "acts", "actual", "actuality", "actually", "ad", "ada", "adam", "adama", "adams", "adapt", "adaptation", "adaptations", "adapted", "adapting", "adaption", "add", "added", "addict", "addicted", "addiction", "addictive", "addicts", "adding", "addition", "additional", "additionally", "additions", "addled", "address", "addressed", "addresses", "addressing", "adds", "adelaide", "adele", "adept", "adequate", "adequately", "adjective", "adjust", "adjusted", "administration", "admirable", "admirably", "admiration", "admire", "admired", "admirer", "admirers", "admires", "admiring", "admission", "admit", "admits", "admitted", "admittedly", "admitting", "ado", "adolescence", "adolescent", "adolescents", "adolf", "adopt", "adopted", "adoption", "adopts", "adorable", "adoration", "adore", "adored", "adoring", "adrenaline", "adrian", "adrienne", "ads", "adult", "adulterous", "adultery", "adulthood", "adults", "advance", "advanced", "advancement", "advances", "advancing", "advantage", "advantages", "adventure", "adventures", "adventurous", "adversaries", "adversary", "adversity", "advert", "advertised", "advertisement", "advertisements", "advertising", "advice", "advise", "advised", "adviser", "advises", "advocate", "aerial", "aesthetic", "aesthetically", "aesthetics", "afar", "affable", "affair", "affairs", "affect", "affected", "affecting", "affection", "affectionate", "affections", "affects", "affinity", "affleck", "afflicted", "affluent", "afford", "afforded", "afghanistan", "afi", "afloat", "afore", "aforementioned", "afraid", "africa", "african", "africans", "afro", "after", "afterlife", "aftermath", "afternoon", "aftertaste", "afterthought", "afterward", "afterwards", "afterwords", "again", "against", "agatha", "age", "aged", "agency", "agenda", "agent", "agents", "ages", "aggravating", "aggression", "aggressive", "aggressively", "aghast", "aging", "agnes", "ago", "agonizing", "agony", "agree", "agreed", "agreeing", "agreement", "agrees", "ah", "ahead", "ahem", "ahh", "ai", "aid", "aide", "aided", "aids", "aiello", "ailing", "aim", "aime", "aimed", "aiming", "aimless", "aimlessly", "aims", "ain", "air", "aircraft", "aired", "airhead", "airing", "airline", "airplane", "airplanes", "airport", "airs", "aisle", "ajay", "aka", "akin", "akira", "akshay", "akshaye", "al", "ala", "alain", "alan", "alarm", "alarming", "alas", "alaska", "alastair", "alba", "albeit", "albert", "alberto", "album", "albums", "alcohol", "alcoholic", "alcoholism", "alec", "alejandro", "alert", "alex", "alexander", "alexandra", "alexandre", "alexis", "alfre", "alfred", "ali", "alias", "alibi", "alice", "alicia", "alien", "alienate", "alienated", "alienating", "alienation", "aliens", "alike", "alison", "alive", "all", "allan", "alleged", "allegedly", "allegorical", "allegory", "allen", "allende", "allergic", "alley", "alleys", "alliance", "allied", "allies", "alligator", "allison", "allow", "allowed", "allowing", "allows", "alluded", "allure", "alluring", "allusions", "ally", "almighty", "almost", "alone", "along", "alongside", "aloof", "alot", "aloud", "alpha", "already", "alright", "also", "altar", "alter", "altered", "altering", "alternate", "alternately", "alternates", "alternating", "alternative", "although", "altman", "altogether", "alumni", "alvin", "always", "am", "amanda", "amateur", "amateurish", "amateurs", "amato", "amaze", "amazed", "amazement", "amazes", "amazing", "amazingly", "amazon", "ambassador", "amber", "ambiance", "ambient", "ambiguity", "ambiguous", "ambition", "ambitions", "ambitious", "ambulance", "amc", "amelie", "america", "american", "americana", "americanized", "americans", "amiable", "amicus", "amid", "amidst", "amitabh", "amityville", "ammunition", "amnesia", "amok", "among", "amongst", "amoral", "amos", "amount", "amounts", "ample", "amrita", "amuse", "amused", "amusement", "amuses", "amusing", "amusingly", "amy", "an", "ana", "anachronistic", "anaconda", "anakin", "anal", "analogy", "analysis", "analyze", "analyzed", "analyzing", "anamorphic", "anastasia", "anatomy", "ancestor", "ancestors", "ancestry", "anchor", "anchorman", "anchors", "ancient", "and", "anders", "anderson", "andie", "andre", "andrea", "andrei", "andrew", "andrews", "andy", "ang", "angel", "angela", "angeles", "angelic", "angelina", "angelo", "angels", "anger", "angered", "angers", "angie", "angle", "angles", "anglo", "angry", "angst", "anguish", "anil", "animal", "animals", "animate", "animated", "animation", "animations", "animator", "animators", "anime", "aniston", "anita", "ankle", "ann", "anna", "annals", "anne", "annie", "anniversary", "announce", "announced", "announcement", "announcer", "announces", "annoy", "annoyance", "annoyed", "annoying", "annoyingly", "annoys", "annual", "anonymous", "anorexic", "another", "answer", "answered", "answering", "answers", "ant", "antagonist", "antagonists", "anthem", "anthology", "anthony", "anthropologist", "anti", "antichrist", "anticipate", "anticipated", "anticipating", "anticipation", "anticlimactic", "antics", "antidote", "antihero", "antiquated", "antithesis", "anton", "antonio", "antonioni", "ants", "antwerp", "antwone", "anxiety", "anxious", "anxiously", "any", "anybody", "anyhow", "anymore", "anyone", "anything", "anytime", "anyway", "anyways", "anywhere", "apart", "apartheid", "apartment", "apartments", "apathetic", "ape", "apes", "aplenty", "aplomb", "apocalypse", "apocalyptic", "apollo", "apologies", "apologise", "apologize", "apology", "appalled", "appalling", "appallingly", "apparent", "apparently", "appeal", "appealed", "appealing", "appeals", "appear", "appearance", "appearances", "appeared", "appearing", "appears", "appease", "appetite", "applaud", "applauded", "applause", "apple", "applegate", "applied", "applies", "apply", "applying", "appointed", "appreciate", "appreciated", "appreciates", "appreciating", "appreciation", "appreciative", "apprentice", "approach", "approached", "approaches", "approaching", "appropriate", "appropriately", "approval", "approve", "approved", "approximately", "april", "apt", "aptly", "aquarium", "arab", "arabia", "arabian", "arabic", "arabs", "aragorn", "arbitrary", "arc", "arcane", "arch", "archaeological", "archaeologist", "archaic", "archer", "archetypal", "archetype", "archibald", "archie", "architect", "architecture", "archive", "archives", "arcs", "arctic", "arden", "ardent", "arduous", "are", "area", "areas", "aren", "arena", "argentina", "argento", "arguably", "argue", "argued", "argues", "arguing", "argument", "arguments", "ariel", "arise", "arises", "arising", "aristocracy", "aristocrat", "aristocratic", "aristocrats", "arizona", "ark", "arkin", "arm", "armageddon", "armand", "armed", "armies", "armor", "arms", "armstrong", "army", "arnie", "arnold", "around", "aroused", "arquette", "arrange", "arranged", "arrangement", "arrangements", "arranges", "array", "arrest", "arrested", "arresting", "arrival", "arrive", "arrived", "arrives", "arriving", "arrogance", "arrogant", "arrow", "arrows", "art", "artemisia", "artful", "artfully", "arthouse", "arthur", "article", "articles", "articulate", "artifacts", "artificial", "artificially", "artist", "artistic", "artistically", "artistry", "artists", "arts", "artsy", "artwork", "arty", "aryan", "as", "asano", "ascertain", "ash", "ashamed", "ashes", "ashley", "ashton", "asia", "asian", "asians", "aside", "asides", "asin", "asinine", "ask", "asked", "askey", "asking", "asks", "asleep", "aspect", "aspects", "aspirations", "aspire", "aspires", "aspiring", "ass", "assassin", "assassinate", "assassinated", "assassination", "assassins", "assault", "assaulted", "assaults", "assembled", "assembly", "assert", "assertion", "asserts", "assessment", "asset", "assets", "assigned", "assignment", "assignments", "assist", "assistance", "assistant", "assistants", "assisted", "associate", "associated", "associates", "association", "assorted", "assortment", "assume", "assumed", "assumes", "assuming", "assumption", "assumptions", "assurance", "assure", "assured", "astaire", "astonished", "astonishing", "astonishingly", "astor", "astounding", "astoundingly", "astray", "astronaut", "astronauts", "astute", "asylum", "at", "ate", "atheist", "athlete", "athletes", "athletic", "atkins", "atlantic", "atlantis", "atmosphere", "atmospheric", "atomic", "atop", "atrocious", "atrocities", "atrocity", "attached", "attachment", "attack", "attacked", "attacker", "attackers", "attacking", "attacks", "attain", "attempt", "attempted", "attempting", "attempts", "attenborough", "attend", "attendance", "attendant", "attended", "attending", "attends", "attention", "attentions", "attic", "attire", "attitude", "attitudes", "attorney", "attract", "attracted", "attracting", "attraction", "attractions", "attractive", "attracts", "attribute", "attributed", "attributes", "atwill", "atypical", "aubrey", "auction", "audacious", "audacity", "audiard", "audible", "audience", "audiences", "audio", "audition", "auditioning", "audrey", "august", "aunt", "auntie", "aunts", "aura", "aural", "aussie", "austen", "austere", "austin", "australia", "australian", "australians", "austria", "austrian", "auteur", "authentic", "authenticity", "author", "authorities", "authority", "authors", "autistic", "auto", "autobiographical", "autobiography", "autograph", "automatic", "automatically", "automobile", "automobiles", "autopsy", "autumn", "ava", "avail", "available", "avalanche", "avant", "avenge", "avenger", "avengers", "avenging", "avenue", "average", "avid", "aviv", "avoid", "avoided", "avoiding", "avoids", "aw", "await", "awaited", "awaiting", "awaits", "awake", "awaken", "awakened", "awakening", "awakens", "award", "awarded", "awards", "aware", "awareness", "away", "awe", "awed", "aweigh", "awesome", "awesomely", "awful", "awfully", "awfulness", "awhile", "awkward", "awkwardly", "awkwardness", "awry", "ax", "axe", "axis", "azaria", "aztec", "babble", "babbling", "babe", "babes", "babies", "baby", "babylon", "babysitter", "bacall", "bach", "bachchan", "bachelor", "back", "backbone", "backdrop", "backdrops", "backed", "background", "backgrounds", "backing", "backlash", "backs", "backseat", "backstage", "backstory", "backup", "backward", "backwards", "backwoods", "backyard", "bacon", "bad", "badass", "baddie", "baddies", "badge", "badly", "badness", "baffled", "baffles", "baffling", "bag", "bagdad", "baggage", "baghdad", "bags", "bahrain", "bailey", "baio", "bait", "baked", "baker", "bakshi", "bakula", "balance", "balanced", "balances", "balancing", "balcony", "bald", "baldwin", "ball", "ballad", "ballads", "ballet", "balloon", "ballroom", "balls", "balsam", "baltimore", "bam", "bambi", "banal", "banality", "banana", "band", "banderas", "bandit", "bands", "bandwagon", "bane", "bang", "banging", "bangs", "banjo", "bank", "banker", "bankrupt", "bankruptcy", "banks", "banned", "banner", "banquet", "banter", "baptist", "bar", "barbara", "barbarian", "barbaric", "barbed", "barbie", "barbra", "bard", "bare", "barely", "barf", "bargain", "barker", "barkin", "barking", "barman", "barn", "barnes", "barney", "baron", "barr", "barrage", "barred", "barrel", "barrels", "barren", "barrier", "barriers", "barry", "barrymore", "bars", "bart", "bartender", "barton", "base", "baseball", "based", "baseketball", "basement", "bases", "bash", "bashed", "bashing", "basic", "basically", "basics", "basil", "basing", "basinger", "basis", "basket", "basketball", "bass", "bassinger", "bastard", "bastards", "bat", "bates", "bath", "bathing", "bathroom", "bathtub", "batman", "bats", "battered", "battle", "battlefield", "battles", "battlestar", "battling", "bauer", "bava", "bawdy", "baxter", "bay", "baywatch", "bbc", "bc", "be", "beach", "beaches", "beads", "beam", "beams", "bean", "beans", "bear", "bearable", "beard", "bearded", "bearing", "bears", "beast", "beasts", "beat", "beaten", "beating", "beatings", "beatles", "beatrice", "beats", "beatty", "beau", "beauties", "beautiful", "beautifully", "beauty", "beaver", "became", "because", "beck", "beckham", "beckinsale", "becky", "become", "becomes", "becoming", "bed", "bedknobs", "bedroom", "beds", "bee", "beef", "been", "beer", "beers", "beery", "bees", "beetle", "before", "beforehand", "befriend", "befriended", "befriends", "beg", "began", "beggars", "begged", "begging", "begin", "beginning", "beginnings", "begins", "begs", "begun", "behalf", "behave", "behaved", "behaves", "behaving", "behavior", "behaviors", "behaviour", "beheading", "behind", "behold", "being", "beings", "bel", "bela", "beleaguered", "belgian", "belgium", "belief", "beliefs", "believability", "believable", "believably", "believe", "believed", "believer", "believers", "believes", "believing", "bell", "belle", "bells", "belly", "belong", "belonged", "belonging", "belongs", "beloved", "below", "belt", "belts", "belushi", "bemused", "ben", "bench", "benchmark", "bend", "bender", "bending", "beneath", "benefit", "benefited", "benefits", "benet", "benevolent", "benicio", "benign", "benjamin", "bennett", "benny", "benson", "bent", "bentley", "beowulf", "bereft", "berenger", "bergman", "berkeley", "berkley", "berkowitz", "berlin", "bernadette", "bernard", "bernie", "bernsen", "bernstein", "berry", "berserk", "bert", "beset", "beside", "besides", "besieged", "best", "bestiality", "bet", "beta", "beth", "bethany", "betray", "betrayal", "betrayed", "betrays", "bets", "betsy", "bette", "better", "bettie", "betting", "betty", "between", "beverly", "bevy", "beware", "bewildered", "bewitched", "beyond", "bi", "bias", "biased", "bible", "biblical", "bickering", "bicycle", "bid", "bidding", "big", "bigelow", "bigfoot", "bigger", "biggest", "biggs", "bigoted", "bigotry", "bike", "biker", "bikers", "bikini", "biko", "bill", "billboards", "billed", "billie", "billing", "billion", "bills", "billy", "bimbo", "bin", "binder", "binding", "bing", "binks", "binoche", "bio", "biographical", "biographies", "biography", "biological", "biopic", "bird", "birds", "birth", "birthday", "bisexual", "bishop", "bit", "bitch", "bitching", "bitchy", "bite", "bites", "biting", "bits", "bitten", "bitter", "bitterly", "bitterness", "bittersweet", "biz", "bizarre", "bizarrely", "black", "blackadder", "blackboard", "blackie", "blackmail", "blacks", "blackwood", "blade", "blades", "blah", "blaine", "blair", "blaise", "blake", "blame", "blamed", "blames", "blaming", "blanc", "bland", "blank", "blanket", "blanks", "blaring", "blasphemous", "blast", "blasted", "blasting", "blasts", "blatant", "blatantly", "blaxploitation", "blazing", "bleached", "bleak", "bleed", "bleeding", "blend", "blended", "blending", "blends", "bless", "blessed", "blessing", "blethyn", "blew", "blind", "blinded", "blindly", "blindness", "blink", "blinking", "bliss", "bloated", "blob", "block", "blockbuster", "blockbusters", "blocked", "blocking", "blocks", "bloke", "blond", "blonde", "blondell", "blondes", "blood", "bloodbath", "blooded", "bloodless", "bloodshed", "bloodthirsty", "bloody", "bloom", "blossom", "blossomed", "blossoms", "blouse", "blow", "blowing", "blown", "blows", "blue", "blues", "blunders", "blunt", "bluntly", "blur", "blurb", "blurred", "blurry", "blush", "bluth", "bo", "board", "boarding", "boards", "boast", "boasting", "boasts", "boat", "boats", "bob", "bobby", "bodies", "bodily", "body", "bodyguard", "bog", "bogart", "bogdanovich", "bogged", "boggles", "boggling", "bogie", "bogs", "bogus", "bohemian", "boil", "boiled", "boiling", "boils", "bold", "bolivia", "boll", "bollywood", "bolt", "bolts", "boman", "bomb", "bombastic", "bombed", "bomber", "bombers", "bombing", "bombings", "bombs", "bon", "bona", "bonanza", "bond", "bondage", "bonding", "bonds", "bone", "bones", "bonham", "bonkers", "bonnie", "bont", "bonus", "boo", "boob", "boobs", "booby", "boogeyman", "boogie", "book", "books", "boom", "boomers", "boone", "boorish", "boorman", "boost", "boot", "booth", "boothe", "boots", "booty", "booze", "border", "bordering", "borderline", "borders", "bore", "bored", "boredom", "bores", "boring", "boris", "born", "borne", "borrow", "borrowed", "borrowing", "borrows", "bosnia", "boss", "bosses", "boston", "bosworth", "botched", "both", "bother", "bothered", "bothering", "bothers", "bots", "bottle", "bottles", "bottom", "bought", "bounce", "bouncing", "bouncy", "bound", "boundaries", "bounds", "bounty", "bourgeois", "bourne", "bout", "bow", "bowels", "bowie", "bowl", "bowling", "bows", "box", "boxed", "boxer", "boxes", "boxing", "boy", "boyd", "boyer", "boyfriend", "boyfriends", "boyhood", "boyish", "boyle", "boys", "br", "bra", "brad", "bradford", "bradley", "brady", "brag", "braga", "brain", "braindead", "brained", "brainer", "brainless", "brains", "brainwashed", "brainy", "brakes", "branagh", "branch", "branches", "brand", "brando", "brandon", "brash", "brashear", "brass", "brat", "bratty", "braun", "bravado", "brave", "braveheart", "bravely", "bravery", "bravo", "bravura", "brawl", "brazil", "brazilian", "bread", "break", "breakdown", "breaker", "breakfast", "breaking", "breakout", "breaks", "breakthrough", "breakup", "breast", "breasted", "breasts", "breath", "breathe", "breathes", "breathing", "breathless", "breathtaking", "breathtakingly", "breckinridge", "bred", "breed", "breeding", "breeze", "breezy", "brenda", "brendan", "brennan", "brent", "bret", "brett", "brewster", "brian", "brick", "bricks", "bride", "brides", "bridge", "bridges", "bridget", "brief", "briefcase", "briefly", "brien", "brigade", "briggs", "bright", "brighter", "brightest", "brightly", "brigitte", "brilliance", "brilliant", "brilliantly", "brimming", "bring", "bringing", "brings", "brink", "brisk", "brisson", "brit", "britain", "british", "britney", "brits", "brittany", "broad", "broadcast", "broadcasting", "broader", "broadly", "broadway", "brock", "broderick", "brody", "broke", "broken", "bronson", "bronte", "bronx", "brooding", "brooke", "brooklyn", "brooks", "broomsticks", "bros", "brosnan", "brothel", "brother", "brotherhood", "brothers", "brought", "brow", "brown", "browning", "browsing", "bruce", "bruckheimer", "brunette", "bruno", "brush", "brushes", "brutal", "brutality", "brutally", "brute", "brutish", "bryan", "bryant", "brynner", "bs", "bsg", "btk", "btw", "bubble", "bubblegum", "bubbles", "bubbly", "buck", "bucket", "buckets", "bucks", "bud", "budapest", "buddhist", "buddies", "budding", "buddy", "budget", "budgetary", "budgeted", "budgets", "buff", "buffalo", "buffoon", "buffs", "buffy", "bug", "buggy", "bugs", "build", "building", "buildings", "builds", "buildup", "built", "bulb", "bulging", "bulk", "bull", "bulldog", "bullet", "bullets", "bullied", "bullies", "bullock", "bulls", "bullshit", "bully", "bullying", "bum", "bumbling", "bump", "bumped", "bumping", "bumps", "bums", "bunch", "bunker", "bunny", "bunuel", "burden", "burdened", "bureau", "bureaucracy", "burgeoning", "burgess", "burial", "buried", "buries", "burke", "burlesque", "burn", "burned", "burnett", "burning", "burns", "burnt", "burroughs", "burrows", "burst", "bursting", "bursts", "burstyn", "burt", "burton", "bury", "burying", "bus", "busby", "buscemi", "buses", "busey", "bush", "bushes", "business", "businesses", "businessman", "businessmen", "bust", "busted", "buster", "busting", "busy", "but", "butch", "butcher", "butchered", "butchering", "butler", "butt", "butter", "butterfly", "button", "buttons", "butts", "buy", "buying", "buys", "buzz", "by", "bye", "bygone", "byrne", "byron", "ca", "caan", "cab", "cabaret", "cabin", "cabinet", "cable", "cad", "caesar", "cafe", "cafeteria", "caf\u00e9", "cage", "caged", "cages", "cagney", "cain", "caine", "cake", "cal", "calamity", "calculated", "calculating", "calendar", "caliber", "calibre", "california", "call", "callahan", "called", "calling", "callous", "calls", "calm", "calmly", "calvin", "cam", "camaraderie", "cambodia", "cambodian", "camcorder", "came", "camel", "cameo", "cameos", "camera", "cameraman", "cameras", "camerawork", "cameron", "camp", "campaign", "campbell", "camper", "campers", "campfire", "campiness", "camping", "camps", "campus", "campy", "can", "canada", "canadian", "canadians", "canal", "cancel", "canceled", "cancelled", "cancels", "cancer", "candid", "candidate", "candidates", "candle", "candles", "candy", "cane", "canine", "canned", "cannes", "cannibal", "cannibalism", "cannibalistic", "cannibals", "cannon", "cannons", "cannot", "canoe", "canon", "cans", "cant", "canvas", "canyon", "cap", "capabilities", "capability", "capable", "capably", "capacity", "cape", "caper", "capital", "capitalism", "capitalist", "capitalize", "capote", "capra", "caprica", "caprice", "capshaw", "capsule", "capt", "captain", "captivate", "captivated", "captivating", "captive", "captors", "capture", "captured", "captures", "capturing", "car", "carbon", "card", "cardboard", "cardinal", "cards", "care", "cared", "career", "careers", "carefree", "careful", "carefully", "careless", "carelessly", "carell", "cares", "caretaker", "carey", "carface", "cargo", "caribbean", "caricature", "caricatures", "caring", "carl", "carla", "carlisle", "carlito", "carlo", "carlos", "carlton", "carlyle", "carmen", "carnage", "carnal", "carnival", "carnosaur", "carol", "carole", "carolina", "caroline", "caron", "carpenter", "carpet", "carradine", "carrey", "carriage", "carrie", "carried", "carrier", "carries", "carroll", "carrot", "carry", "carrying", "cars", "carson", "cart", "carter", "cartoon", "cartoonish", "cartoons", "cartoony", "carved", "carving", "cary", "casablanca", "case", "cases", "casey", "cash", "cashier", "cashing", "casino", "casper", "cassandra", "cassavetes", "cassel", "cassidy", "cassie", "cast", "casted", "casting", "castle", "castles", "castro", "casts", "casual", "casually", "casualty", "cat", "catalog", "catalogue", "catalyst", "catastrophe", "catastrophic", "catch", "catches", "catching", "catchphrase", "catchy", "cate", "categories", "categorized", "category", "cater", "catering", "catharsis", "cathartic", "catherine", "catholic", "cathy", "caton", "cats", "cattle", "catwoman", "caucasian", "caught", "cause", "caused", "causes", "causing", "caution", "cautionary", "cavalry", "cave", "caveman", "cavemen", "caves", "cavorting", "cbc", "cbs", "cd", "cease", "ceases", "cecil", "cedric", "ceiling", "celebrate", "celebrated", "celebrates", "celebrating", "celebration", "celebrities", "celebrity", "celeste", "celestial", "celie", "celine", "cell", "cellar", "cells", "celluloid", "celtic", "cement", "cemetery", "censor", "censored", "censors", "censorship", "cent", "center", "centered", "centerpiece", "centers", "central", "centre", "centred", "centres", "cents", "centuries", "century", "ceo", "cerebral", "ceremonies", "ceremony", "certain", "certainly", "certainty", "certificate", "cesar", "cetera", "cg", "cgi", "chad", "chagrin", "chahine", "chain", "chained", "chains", "chainsaw", "chair", "chairman", "chairs", "chalk", "challenge", "challenged", "challenger", "challenges", "challenging", "chamber", "chamberlain", "champagne", "champion", "champions", "championship", "chan", "chance", "chances", "chandler", "chaney", "chang", "change", "changed", "changes", "changing", "channel", "channeling", "channels", "chant", "chanting", "chaos", "chaotic", "chap", "chaplin", "chapter", "chapters", "character", "characterisation", "characterisations", "characterised", "characteristic", "characteristics", "characterization", "characterizations", "characterized", "characters", "charade", "charge", "charged", "charges", "charging", "charisma", "charismatic", "charitable", "charity", "charles", "charley", "charlie", "charlize", "charlotte", "charlton", "charm", "charmed", "charmer", "charming", "charmingly", "charms", "charts", "chase", "chased", "chases", "chasing", "chat", "chatter", "chatting", "chauffeur", "chavez", "che", "cheadle", "cheap", "cheaper", "cheapest", "cheaply", "cheat", "cheated", "cheating", "cheats", "check", "checked", "checking", "checkout", "checks", "cheech", "cheek", "cheeky", "cheer", "cheered", "cheerful", "cheerfully", "cheering", "cheerleader", "cheers", "cheery", "cheese", "cheesiest", "cheesiness", "cheesy", "cheezy", "chef", "chemical", "chemicals", "chemistry", "chen", "cher", "cherie", "cherish", "cherished", "cherry", "cheryl", "chess", "chest", "chester", "cheung", "chevy", "chew", "chewbacca", "chewing", "chews", "chi", "chiba", "chic", "chicago", "chick", "chicken", "chickens", "chicks", "chico", "chief", "child", "childhood", "childish", "childishly", "childlike", "children", "chile", "chill", "chiller", "chilling", "chillingly", "chills", "chilly", "chimney", "chimp", "chimps", "chin", "china", "chinatown", "chinese", "ching", "chip", "chips", "chloe", "chock", "chocolate", "choice", "choices", "choir", "choke", "choked", "chong", "choose", "chooses", "choosing", "chop", "chopped", "chopper", "chopping", "choppy", "chopra", "chops", "chord", "chore", "choreographed", "choreographer", "choreography", "chores", "chorus", "chose", "chosen", "chow", "chris", "chrissy", "christ", "christensen", "christian", "christianity", "christians", "christie", "christina", "christine", "christmas", "christopher", "christy", "chronic", "chronicle", "chronicles", "chronological", "chronologically", "chronology", "chubby", "chuck", "chuckle", "chuckled", "chuckles", "chuckling", "chucky", "chunk", "chunks", "chunky", "church", "churches", "churchill", "churn", "churned", "churning", "cia", "cigar", "cigarette", "cigarettes", "cigars", "cillian", "cinderella", "cindy", "cinema", "cinemas", "cinematic", "cinematically", "cinematographer", "cinematographic", "cinematography", "cinemax", "circa", "circle", "circles", "circuit", "circular", "circumstance", "circumstances", "circus", "cited", "cities", "citizen", "citizens", "city", "civil", "civilian", "civilians", "civilisation", "civilization", "civilized", "ck", "clad", "claim", "claimed", "claiming", "claims", "clair", "claire", "clan", "claptrap", "clara", "clare", "clarence", "clarify", "clarity", "clark", "clarke", "clash", "clashes", "class", "classes", "classic", "classical", "classics", "classified", "classify", "classmates", "classroom", "classy", "claude", "claudia", "claus", "clause", "claustrophobia", "claustrophobic", "claw", "claws", "clay", "claymation", "clayton", "clean", "cleaned", "cleaner", "cleaning", "cleans", "clear", "cleared", "clearer", "clearly", "cleavage", "cleese", "clerk", "clerks", "cleveland", "clever", "cleverly", "cleverness", "cliche", "cliched", "cliches", "clich\u00e9", "clich\u00e9d", "clich\u00e9s", "click", "clicked", "client", "clients", "cliff", "cliffhanger", "clifford", "cliffs", "climactic", "climate", "climatic", "climax", "climaxes", "climb", "climbed", "climber", "climbing", "climbs", "clinic", "clinical", "clint", "clinton", "clip", "clipped", "clips", "clique", "clive", "cloak", "clock", "clocking", "clockwork", "clone", "clones", "clooney", "cloris", "close", "closed", "closely", "closer", "closes", "closest", "closet", "closeup", "closeups", "closing", "closure", "cloth", "clothed", "clothes", "clothing", "cloud", "clouds", "clown", "clowns", "club", "clubs", "clue", "clueless", "clues", "clumsily", "clumsy", "clunker", "clunky", "clutches", "clutching", "clutter", "clyde", "cnn", "co", "coach", "coal", "coarse", "coast", "coastal", "coaster", "coat", "coated", "coats", "cobb", "cobra", "coburn", "cocaine", "cock", "cockney", "cocktail", "cocktails", "cocky", "code", "codes", "cody", "coen", "coffee", "coffin", "cohen", "coherence", "coherency", "coherent", "cohesion", "cohesive", "cohorts", "coin", "coincidence", "coincidences", "coincidentally", "coke", "col", "colbert", "cold", "cole", "coleman", "colin", "collaborated", "collaboration", "collaborations", "collaborator", "collage", "collapse", "collapsed", "collapses", "collapsing", "collar", "colleague", "colleagues", "collect", "collected", "collecting", "collection", "collections", "collective", "collectively", "collector", "collectors", "colleen", "college", "collette", "collide", "collins", "collision", "colman", "colonel", "colonial", "colonies", "colony", "color", "colorado", "colored", "colorful", "colors", "colossal", "colour", "coloured", "colourful", "colours", "coltrane", "columbia", "columbine", "columbo", "column", "com", "coma", "comatose", "combat", "combination", "combine", "combined", "combines", "combining", "combo", "combs", "come", "comeback", "comedian", "comedians", "comedic", "comedienne", "comedies", "comedy", "comers", "comes", "comet", "comeuppance", "comfort", "comfortable", "comfortably", "comforting", "comforts", "comic", "comical", "comically", "comics", "coming", "command", "commander", "commanding", "commandments", "commando", "commandos", "commands", "commend", "commendable", "commended", "comment", "commentaries", "commentary", "commentator", "commentators", "commented", "commenter", "commenters", "commenting", "comments", "commercial", "commercially", "commercials", "commie", "commit", "commitment", "commitments", "commits", "committed", "committee", "committing", "common", "commonly", "commonplace", "communicate", "communicated", "communicating", "communication", "communications", "communism", "communist", "communists", "communities", "community", "companies", "companion", "companions", "companionship", "company", "comparable", "comparatively", "compare", "compared", "compares", "comparing", "comparison", "comparisons", "compassion", "compassionate", "compelled", "compelling", "compellingly", "compensate", "compensated", "compete", "competence", "competent", "competently", "competing", "competition", "competitive", "competitors", "compilation", "complain", "complained", "complaining", "complains", "complaint", "complaints", "complement", "complements", "complete", "completed", "completely", "completing", "completist", "completists", "complex", "complexities", "complexity", "complicate", "complicated", "complications", "compliment", "compliments", "component", "components", "compose", "composed", "composer", "composers", "composition", "compositions", "compound", "comprehend", "comprehension", "comprehensive", "compressed", "comprised", "comprises", "compromise", "compromised", "compromising", "compulsion", "compulsive", "computer", "computers", "comrades", "con", "conan", "conceal", "concealed", "concede", "conceit", "conceited", "conceivable", "conceive", "conceived", "concentrate", "concentrated", "concentrates", "concentrating", "concentration", "concept", "conception", "concepts", "conceptual", "concern", "concerned", "concerning", "concerns", "concert", "concerts", "concise", "conclude", "concluded", "concludes", "concluding", "conclusion", "conclusions", "concoction", "concrete", "concur", "condemn", "condemned", "condemning", "condensed", "condescending", "condition", "conditioned", "conditions", "conduct", "conducted", "conducting", "conductor", "conducts", "confederate", "conference", "confess", "confessed", "confesses", "confession", "confessions", "confidant", "confidence", "confident", "confidential", "confined", "confines", "confirm", "confirmed", "confirms", "conflict", "conflicted", "conflicting", "conflicts", "confront", "confrontation", "confronted", "confronting", "confronts", "confuse", "confused", "confusing", "confusion", "congratulate", "congratulations", "congregation", "congress", "conjure", "connect", "connected", "connecticut", "connecting", "connection", "connections", "connects", "connell", "connelly", "connery", "connie", "conniving", "connoisseur", "connolly", "connor", "connors", "conquer", "conquered", "conquers", "conquest", "conrad", "conroy", "cons", "conscience", "conscious", "consciously", "consciousness", "consecutive", "consent", "consequence", "consequences", "consequently", "conservative", "consider", "considerable", "considerably", "consideration", "considerations", "considered", "considering", "considers", "consist", "consisted", "consistency", "consistent", "consistently", "consisting", "consists", "consolation", "conspicuous", "conspiracies", "conspiracy", "constance", "constant", "constantly", "constitute", "constitutes", "constitution", "constraints", "construct", "constructed", "construction", "constructive", "consultant", "consumed", "consumer", "consumers", "consuming", "consummate", "consumption", "contact", "contacts", "contain", "contained", "containing", "contains", "contaminated", "contemplate", "contemplating", "contemporaries", "contemporary", "contempt", "contend", "contender", "content", "contention", "contents", "contest", "contestant", "contestants", "contests", "context", "continent", "continual", "continually", "continuation", "continue", "continued", "continues", "continuing", "continuity", "continuous", "continuously", "contract", "contradict", "contradiction", "contradictions", "contradictory", "contrary", "contrast", "contrasted", "contrasting", "contrasts", "contribute", "contributed", "contributes", "contributing", "contribution", "contributions", "contrivance", "contrivances", "contrived", "control", "controlled", "controlling", "controls", "controversial", "controversy", "convenience", "convenient", "conveniently", "convent", "convention", "conventional", "conventions", "conversation", "conversations", "conversion", "convert", "converted", "convey", "conveyed", "conveying", "conveys", "convict", "convicted", "conviction", "convictions", "convicts", "convince", "convinced", "convinces", "convincing", "convincingly", "convoluted", "cook", "cooked", "cookie", "cookies", "cooking", "cooks", "cool", "cooler", "coolest", "coolness", "coop", "cooper", "cooperate", "cooperation", "cop", "cope", "copied", "copies", "coping", "copious", "copper", "coppola", "cops", "copy", "copying", "copyright", "corbett", "corbin", "cord", "core", "corey", "corinne", "corky", "corleone", "corman", "corn", "cornball", "corner", "cornered", "corners", "corny", "coronation", "coroner", "corporate", "corporation", "corporations", "corpse", "corpses", "correct", "corrected", "correction", "correctly", "correctness", "corridor", "corridors", "corrupt", "corrupted", "corruption", "cortez", "cos", "cosmic", "cost", "costar", "costello", "costner", "costs", "costume", "costumed", "costumes", "costuming", "cottage", "cotton", "couch", "could", "couldn", "council", "counseling", "counselor", "count", "countdown", "counted", "counter", "counterpart", "counterparts", "counterpoint", "countess", "counting", "countless", "countries", "country", "countryside", "counts", "county", "coup", "couple", "coupled", "couples", "coupling", "courage", "courageous", "course", "court", "courtesy", "courtney", "courtroom", "courtyard", "cousin", "cousins", "coven", "cover", "coverage", "covered", "covering", "covers", "cow", "coward", "cowardly", "cowboy", "cowboys", "cowgirls", "cows", "cox", "coy", "coyote", "cozy", "crack", "cracked", "cracker", "cracking", "cracks", "cradle", "craft", "crafted", "crafting", "crafts", "craftsmanship", "crafty", "craig", "cram", "crammed", "cramped", "crane", "crank", "cranked", "cranky", "crap", "crapfest", "crappy", "crash", "crashed", "crashers", "crashes", "crashing", "crass", "cratchit", "crater", "craven", "craving", "crawford", "crawl", "crawled", "crawling", "craze", "crazed", "crazier", "crazies", "craziness", "crazy", "creaky", "cream", "create", "created", "creates", "creating", "creation", "creations", "creative", "creatively", "creativity", "creator", "creators", "creature", "creatures", "credentials", "credibility", "credible", "credit", "credited", "credits", "credulity", "creed", "creek", "creep", "creeped", "creepier", "creepiest", "creepily", "creepiness", "creeping", "creeps", "creepshow", "creepy", "crenna", "crew", "crews", "cricket", "cried", "cries", "crime", "crimes", "criminal", "criminally", "criminals", "crimson", "cringe", "cringed", "cringing", "cripple", "crippled", "crisis", "crisp", "crispin", "cristina", "criteria", "criterion", "critic", "critical", "critically", "criticise", "criticised", "criticism", "criticisms", "criticize", "criticized", "criticizing", "critics", "critique", "critter", "critters", "croc", "crocodile", "crocodiles", "croft", "cromwell", "cronenberg", "cronies", "crook", "crooked", "crooks", "crop", "crosby", "cross", "crossbow", "crossed", "crosses", "crossing", "crotch", "crothers", "crouching", "crouse", "crow", "crowd", "crowded", "crowds", "crowe", "crown", "crowning", "crucial", "crucified", "crucifix", "crud", "crude", "cruel", "cruella", "cruelty", "cruise", "crumbling", "crummy", "crusade", "crush", "crushed", "crushes", "crushing", "crust", "crusty", "cruz", "cry", "crying", "crypt", "cryptic", "crystal", "csi", "cuba", "cuban", "cube", "cuckoo", "cuddly", "cue", "cues", "cukor", "culkin", "culminates", "culminating", "culmination", "culp", "culprit", "cult", "cults", "cultural", "culture", "cultured", "cultures", "cum", "cumming", "cummings", "cunning", "cunningham", "cup", "curator", "curb", "cure", "cured", "curio", "curiosity", "curious", "curiously", "curly", "curr", "current", "currently", "currie", "curry", "curse", "cursed", "curses", "cursing", "curtain", "curtains", "curtis", "curtiz", "curve", "curves", "cusack", "cushing", "custer", "custody", "custom", "customary", "customers", "customs", "cut", "cute", "cuteness", "cutest", "cutesy", "cutouts", "cuts", "cutter", "cutting", "cuz", "cv", "cybill", "cyborg", "cyborgs", "cycle", "cylon", "cylons", "cynic", "cynical", "cynicism", "cynics", "cynthia", "cypher", "czech", "da", "dabney", "dad", "daddy", "dads", "daffy", "dafoe", "daft", "dagger", "dahl", "dahmer", "daily", "daisies", "daisy", "dakota", "dale", "dallas", "dalmatians", "dalton", "daly", "dam", "damage", "damaged", "damaging", "dame", "damian", "damien", "damme", "damn", "damned", "damning", "damon", "damsel", "dan", "dana", "dance", "danced", "dancer", "dancers", "dances", "dancing", "dancy", "dandy", "dane", "danes", "danger", "dangerfield", "dangerous", "dangerously", "dangers", "dangling", "dani", "daniel", "danielle", "daniels", "danish", "danning", "danny", "dante", "danza", "daphne", "darcy", "dare", "dared", "dares", "daria", "daring", "dario", "dark", "darkened", "darker", "darkest", "darkly", "darkness", "darkwolf", "darlene", "darling", "darn", "darren", "darryl", "darth", "daryl", "das", "dash", "dashed", "dashing", "dastardly", "data", "date", "dated", "dates", "dating", "daughter", "daughters", "dave", "davenport", "david", "davidson", "davies", "davis", "dawn", "dawson", "day", "daylight", "days", "daytime", "dazed", "dazzled", "dazzling", "dc", "de", "dead", "deadbeat", "deadly", "deadpan", "deaf", "deal", "dealer", "dealers", "dealing", "dealings", "deals", "dealt", "dean", "deanna", "dear", "dearly", "death", "deathbed", "deaths", "deathtrap", "debacle", "debatable", "debate", "debating", "debbie", "deborah", "debra", "debris", "debt", "debts", "debut", "debuted", "decade", "decadence", "decadent", "decades", "decapitated", "decapitation", "decay", "decaying", "deceased", "deceit", "deceive", "deceived", "december", "decency", "decent", "decently", "deception", "deceptive", "decide", "decided", "decidedly", "decides", "deciding", "decipher", "decision", "decisions", "deck", "declaration", "declare", "declared", "declares", "decline", "declined", "declining", "deco", "decomposing", "deconstruct", "decor", "decorated", "decoration", "decrepit", "dedicated", "dedication", "dee", "deed", "deeds", "deem", "deemed", "deep", "deeper", "deepest", "deeply", "deer", "def", "default", "defeat", "defeated", "defeating", "defeats", "defence", "defend", "defended", "defending", "defends", "defense", "defiance", "defiant", "deficiencies", "defies", "definately", "define", "defined", "defines", "defining", "definite", "definitely", "definition", "definitive", "deformed", "deft", "deftly", "defy", "defying", "degenerate", "degenerates", "degradation", "degrades", "degrading", "degree", "degrees", "deja", "del", "delay", "delayed", "delectable", "deleted", "deliberate", "deliberately", "delicate", "delicately", "delicious", "deliciously", "delight", "delighted", "delightful", "delightfully", "delights", "delirious", "deliver", "deliverance", "delivered", "delivering", "delivers", "delivery", "dell", "della", "delon", "delpy", "delta", "deluded", "deluise", "delusion", "delusional", "delusions", "delve", "delves", "demand", "demanded", "demanding", "demands", "demeaning", "demeanor", "demented", "demi", "demille", "demise", "demme", "democracy", "democratic", "demographic", "demolition", "demon", "demonic", "demonicus", "demons", "demonstrate", "demonstrated", "demonstrates", "demonstrating", "demonstration", "demunn", "den", "dench", "denholm", "denial", "denied", "denies", "deniro", "denis", "denise", "denmark", "dennis", "denny", "denominator", "denouement", "dense", "dental", "dentist", "dentists", "denver", "deny", "denying", "denzel", "deol", "depalma", "depardieu", "departed", "department", "departments", "departs", "departure", "depend", "dependable", "depended", "dependent", "depending", "depends", "depict", "depicted", "depicting", "depiction", "depictions", "depicts", "deplorable", "deposit", "depp", "depraved", "depravity", "depressed", "depressing", "depression", "depressive", "deprived", "depth", "depths", "deputy", "der", "deranged", "derek", "derivative", "derive", "derived", "derives", "dermot", "dern", "des", "descendant", "descendants", "descended", "descending", "descends", "descent", "describe", "described", "describes", "describing", "description", "descriptions", "desert", "deserted", "deserts", "deserve", "deserved", "deservedly", "deserves", "deserving", "design", "designed", "designer", "designs", "desirable", "desire", "desired", "desires", "desk", "desolate", "despair", "desperate", "desperately", "desperation", "despicable", "despise", "despised", "despite", "destination", "destined", "destiny", "destroy", "destroyed", "destroying", "destroys", "destruction", "destructive", "det", "detached", "detail", "detailed", "detailing", "details", "detective", "detectives", "detention", "deter", "deteriorated", "deterioration", "determination", "determine", "determined", "detour", "detract", "detracted", "detractors", "detracts", "detriment", "detroit", "deus", "deux", "devastated", "devastating", "develop", "developed", "developing", "development", "developments", "develops", "devgan", "device", "devices", "devil", "devilish", "devils", "devious", "devise", "devised", "devito", "devoid", "devon", "devos", "devoted", "devotion", "devoured", "devout", "dewey", "dexter", "dey", "di", "diabolical", "diagnosed", "diagnosis", "dial", "dialect", "dialog", "dialogs", "dialogue", "dialogues", "diamond", "diamonds", "diana", "diane", "diaper", "diaries", "diary", "diaz", "dicaprio", "dice", "dick", "dickens", "dickinson", "dictates", "dictator", "dictatorship", "diction", "dictionary", "did", "didactic", "didn", "didnt", "die", "died", "diego", "dien", "dies", "diet", "dietrich", "differ", "difference", "differences", "different", "differentiate", "differently", "differs", "difficult", "difficulties", "difficulty", "dig", "digest", "digger", "diggers", "digging", "digital", "digitally", "dignified", "dignity", "digress", "digs", "dil", "dilapidated", "dilemma", "dilemmas", "dillon", "diluted", "dim", "dime", "dimension", "dimensional", "dimensions", "diminish", "diminished", "diminishes", "diminishing", "diminutive", "dimitri", "dimly", "din", "diner", "dingo", "dining", "dinner", "dino", "dinosaur", "dinosaurs", "dip", "dipping", "dir", "dire", "direct", "directed", "directer", "directing", "direction", "directions", "directly", "director", "directorial", "directors", "directs", "dirk", "dirt", "dirty", "dis", "disability", "disabled", "disagree", "disappear", "disappearance", "disappeared", "disappearing", "disappears", "disappoint", "disappointed", "disappointing", "disappointingly", "disappointment", "disappointments", "disappoints", "disaster", "disasters", "disastrous", "disbelief", "disc", "discarded", "discern", "discernible", "discerning", "discipline", "disclaimer", "disco", "discomfort", "disconcerting", "disconnected", "discount", "discourse", "discover", "discovered", "discoveries", "discovering", "discovers", "discovery", "discredit", "discrimination", "discuss", "discussed", "discusses", "discussing", "discussion", "discussions", "disdain", "disease", "diseases", "disfigured", "disgrace", "disgraceful", "disgruntled", "disguise", "disguised", "disguises", "disgust", "disgusted", "disgusting", "disgustingly", "dish", "dishes", "disheveled", "dishonest", "disillusioned", "disinterested", "disjointed", "disk", "dislike", "disliked", "dismal", "dismay", "dismayed", "dismiss", "dismissed", "dismisses", "disney", "disneyland", "disorder", "disorders", "disowned", "disparate", "dispatch", "dispatched", "displaced", "display", "displayed", "displaying", "displays", "displeasure", "disposable", "disposal", "disposed", "disposing", "disposition", "dispute", "disregard", "disrespect", "disrespectful", "dissatisfied", "dissect", "disservice", "dissolves", "distance", "distant", "distaste", "distasteful", "distinct", "distinction", "distinctive", "distinctly", "distinguish", "distinguished", "distinguishes", "distorted", "distortion", "distract", "distracted", "distracting", "distraction", "distractions", "distracts", "distraught", "distress", "distressed", "distressing", "distribute", "distributed", "distribution", "distributor", "distributors", "district", "disturb", "disturbed", "disturbing", "disturbingly", "ditch", "ditto", "ditzy", "diva", "dive", "diver", "diverse", "diversion", "diversity", "dives", "divide", "divided", "divine", "diving", "division", "divorce", "divorced", "dixon", "dizzy", "dizzying", "dj", "dna", "do", "doc", "dock", "docks", "doctor", "doctors", "docu", "docudrama", "document", "documentaries", "documentary", "documented", "documents", "dodge", "dodger", "dodging", "dodgy", "doe", "does", "doesn", "doesnt", "dog", "dogma", "dogs", "doing", "dolby", "doll", "dollar", "dollars", "dolls", "dolly", "dolph", "dom", "domain", "domestic", "dominant", "dominate", "dominated", "dominates", "dominating", "domination", "domineering", "dominic", "dominique", "domino", "don", "donald", "donate", "done", "dong", "donkey", "donna", "donnell", "donner", "donnie", "donovan", "dont", "doo", "dooley", "doom", "doomed", "door", "doors", "doorstep", "doorway", "dope", "dopey", "doppelganger", "dorff", "doris", "dorky", "dorm", "dorothy", "dose", "doses", "dot", "dots", "double", "doubles", "doubt", "doubtful", "doubtless", "doubts", "doug", "dough", "douglas", "dour", "dove", "dowdy", "down", "downbeat", "downer", "downey", "downfall", "downhill", "download", "downright", "downs", "downside", "downstairs", "downtown", "downtrodden", "downward", "doyle", "dozen", "dozens", "dp", "dr", "drab", "dracula", "draft", "drafted", "drag", "dragged", "dragging", "dragon", "dragons", "drags", "drain", "drained", "draining", "drake", "drama", "dramas", "dramatic", "dramatically", "dramatics", "dramatization", "dramatized", "drastically", "draw", "drawback", "drawbacks", "drawer", "drawing", "drawings", "drawl", "drawn", "draws", "dread", "dreaded", "dreadful", "dreadfully", "dream", "dreamed", "dreamer", "dreaming", "dreamlike", "dreams", "dreamworks", "dreamy", "dreary", "dreck", "drenched", "dress", "dressed", "dresses", "dressing", "drew", "dreyfus", "dreyfuss", "dribble", "dried", "drift", "drifter", "drifting", "drifts", "drill", "drilling", "drink", "drinking", "drinks", "drip", "dripped", "dripping", "drive", "drivel", "driven", "driver", "drivers", "drives", "driving", "droll", "drone", "drones", "droning", "drool", "drooling", "drop", "dropped", "dropping", "drops", "dross", "drove", "drown", "drowned", "drowning", "drowns", "drug", "drugged", "drugs", "drum", "drummer", "drums", "drunk", "drunken", "drunks", "dry", "drying", "dtv", "du", "dual", "dub", "dubbed", "dubbing", "dubious", "dublin", "duchovny", "duck", "ducks", "dud", "dude", "dudes", "dudley", "duds", "due", "duel", "dueling", "duet", "duff", "dug", "duh", "dukakis", "duke", "dukes", "dull", "dullness", "duly", "dumb", "dumbed", "dumber", "dumbest", "dumbing", "dummy", "dump", "dumped", "dumps", "dumpster", "dunaway", "duncan", "dundee", "dune", "dung", "dungeon", "dungeons", "dunk", "dunne", "dunno", "dunst", "duo", "duped", "duration", "during", "duryea", "dusk", "dust", "dustin", "dusty", "dutch", "duties", "duty", "duval", "duvall", "dv", "dvd", "dvds", "dvr", "dwarf", "dwarfs", "dwell", "dwelling", "dwells", "dwight", "dyan", "dye", "dyer", "dying", "dyke", "dylan", "dynamic", "dynamics", "dynamite", "dynasty", "dysfunctional", "dystopian", "each", "eager", "eagerly", "eagle", "ealing", "ear", "earl", "earlier", "earliest", "early", "earn", "earned", "earnest", "earning", "earns", "earp", "ears", "earth", "earthly", "earthquake", "ease", "easier", "easiest", "easily", "east", "easter", "eastern", "eastwood", "easy", "eat", "eaten", "eater", "eaters", "eating", "eats", "ebay", "ebenezer", "ebert", "eccentric", "echo", "echoed", "echoes", "echoing", "eclectic", "eclipsed", "economic", "economical", "economy", "ecstasy", "ecstatic", "ed", "eddie", "eddy", "eden", "edgar", "edge", "edged", "edges", "edgy", "edie", "edinburgh", "edison", "edit", "edited", "edith", "editing", "edition", "editions", "editor", "editors", "edits", "edmond", "edmund", "educate", "educated", "education", "educational", "edward", "edwards", "eerie", "eerily", "effect", "effected", "effective", "effectively", "effectiveness", "effects", "effeminate", "efficiency", "efficient", "efficiently", "effort", "effortless", "effortlessly", "efforts", "eg", "egan", "egg", "eggs", "ego", "egos", "egotistical", "egregious", "egypt", "egyptian", "eh", "eight", "eighteen", "eighth", "eighties", "eighty", "eileen", "einstein", "either", "el", "elaborate", "elaborated", "elaine", "elder", "elderly", "elders", "eldest", "eleanor", "elected", "election", "electric", "electrical", "electricity", "electrifying", "electrocuted", "electronic", "electronics", "elegance", "elegant", "elegantly", "element", "elementary", "elements", "elephant", "elephants", "elevate", "elevated", "elevates", "elevator", "elevators", "eleven", "elf", "eli", "elia", "elicit", "eligible", "elijah", "eliminate", "eliminated", "eliminating", "elisabeth", "elisha", "elite", "elitist", "eliza", "elizabeth", "ella", "ellen", "elliot", "elliott", "ellis", "elm", "elmer", "eloquent", "elsa", "else", "elsewhere", "elton", "eludes", "elusive", "elvira", "elvis", "ely", "em", "email", "embark", "embarks", "embarrass", "embarrassed", "embarrassing", "embarrassingly", "embarrassment", "embedded", "embittered", "embodied", "embodies", "embodiment", "embrace", "embraced", "embraces", "embracing", "emerge", "emerged", "emergence", "emergency", "emerges", "emerging", "emil", "emilio", "emily", "eminently", "emma", "emmanuelle", "emmy", "emoting", "emotion", "emotional", "emotionally", "emotionless", "emotions", "emotive", "empathetic", "empathize", "empathy", "emperor", "emphasis", "emphasize", "emphasized", "emphasizes", "empire", "employ", "employed", "employee", "employees", "employer", "employment", "employs", "emptiness", "empty", "emulate", "en", "enable", "enabled", "enables", "enabling", "enacted", "enamored", "enchanted", "enchanting", "encompassing", "encounter", "encountered", "encountering", "encounters", "encourage", "encouraged", "encourages", "encouraging", "end", "endear", "endearing", "endeavor", "ended", "ending", "endings", "endless", "endlessly", "endor", "endorse", "endorsement", "endowed", "ends", "endurance", "endure", "endured", "endures", "enduring", "enemies", "enemy", "energetic", "energy", "enforcement", "enforcer", "engage", "engaged", "engagement", "engages", "engaging", "engine", "engineer", "engineered", "engineering", "engines", "england", "english", "englishman", "englund", "engrossed", "engrossing", "enhance", "enhanced", "enhances", "enigma", "enigmatic", "enjoy", "enjoyable", "enjoyably", "enjoyed", "enjoying", "enjoyment", "enjoys", "enlighten", "enlightened", "enlightening", "enlightenment", "enlist", "enlisted", "enlists", "ennio", "enormous", "enormously", "enough", "enraged", "enrico", "ensemble", "ensue", "ensues", "ensuing", "ensure", "ensures", "ensuring", "entangled", "enter", "entered", "entering", "enterprise", "enters", "entertain", "entertained", "entertainer", "entertainers", "entertaining", "entertainment", "entertains", "enthralled", "enthralling", "enthusiasm", "enthusiast", "enthusiastic", "enthusiastically", "enthusiasts", "entice", "enticing", "entire", "entirely", "entirety", "entitled", "entity", "entourage", "entrance", "entranced", "entrepreneur", "entries", "entry", "envelope", "environment", "environmental", "environments", "envisioned", "envy", "ephemeral", "epic", "epics", "epidemic", "epilogue", "episode", "episodes", "episodic", "epitome", "eponymous", "epps", "equal", "equality", "equally", "equals", "equation", "equipment", "equipped", "equivalent", "er", "era", "eras", "erase", "erased", "eraserhead", "eric", "erica", "erik", "erika", "erm", "ernest", "ernie", "ernst", "erotic", "erotica", "eroticism", "err", "erratic", "errol", "error", "errors", "erupts", "es", "escalating", "escapades", "escape", "escaped", "escapes", "escaping", "escapism", "escapist", "escort", "esoteric", "esp", "especially", "espionage", "esposito", "esque", "esquire", "essay", "essence", "essential", "essentially", "establish", "established", "establishes", "establishing", "establishment", "estate", "esteem", "esteemed", "esther", "estimation", "estranged", "et", "etc", "etched", "eternal", "eternally", "eternity", "ethan", "ethel", "ethereal", "ethical", "ethics", "ethnic", "ethnicity", "eugene", "euro", "europa", "europe", "european", "europeans", "eva", "evacuated", "evaluate", "evaluation", "evan", "evangelical", "evans", "eve", "evelyn", "even", "evening", "event", "events", "eventual", "eventually", "ever", "everett", "evergreen", "everlasting", "every", "everybody", "everyday", "everyman", "everyone", "everything", "everytime", "everywhere", "evidence", "evidenced", "evident", "evidently", "evil", "evils", "evocative", "evoke", "evoked", "evokes", "evoking", "evolution", "evolve", "evolved", "evolves", "evolving", "ewan", "ewoks", "ex", "exact", "exactly", "exaggerated", "exaggerating", "exaggeration", "exaggerations", "examination", "examine", "examined", "examines", "examining", "example", "examples", "exceed", "exceeded", "exceedingly", "exceeds", "excel", "excellence", "excellent", "excellently", "excels", "except", "exception", "exceptional", "exceptionally", "exceptions", "excerpts", "excess", "excesses", "excessive", "excessively", "exchange", "exchanges", "exchanging", "excited", "excitement", "exciting", "exclaims", "exclamation", "excluding", "exclusive", "exclusively", "excrement", "excruciating", "excruciatingly", "excursion", "excuse", "excused", "excuses", "exec", "execrable", "execs", "execute", "executed", "executing", "execution", "executions", "executive", "executives", "exemplary", "exemplifies", "exercise", "exhausted", "exhausting", "exhibit", "exhibited", "exhibition", "exhibits", "exhilarating", "exile", "exiled", "exist", "existed", "existence", "existent", "existential", "existing", "exists", "exit", "exiting", "exits", "exorcist", "exotic", "expand", "expanded", "expansive", "expect", "expectation", "expectations", "expected", "expecting", "expects", "expedition", "expelled", "expendable", "expense", "expenses", "expensive", "experience", "experienced", "experiences", "experiencing", "experiment", "experimental", "experimentation", "experimenting", "experiments", "expert", "expertise", "expertly", "experts", "explain", "explained", "explaining", "explains", "explanation", "explanations", "explicit", "explicitly", "explode", "exploded", "explodes", "exploding", "exploit", "exploitation", "exploitative", "exploited", "exploiting", "exploitive", "exploits", "exploration", "explore", "explored", "explores", "exploring", "explosion", "explosions", "explosive", "explosives", "expose", "exposed", "exposes", "exposing", "exposition", "exposure", "express", "expressed", "expresses", "expressing", "expression", "expressionism", "expressionist", "expressionless", "expressions", "expressive", "exquisite", "exquisitely", "extend", "extended", "extends", "extension", "extensive", "extensively", "extent", "exterior", "external", "extinct", "extinction", "extra", "extract", "extraneous", "extraordinarily", "extraordinary", "extras", "extravagant", "extravaganza", "extreme", "extremely", "extremes", "extremities", "exuberance", "exuberant", "exudes", "eye", "eyeball", "eyeballs", "eyebrow", "eyebrows", "eyed", "eyes", "eyre", "fable", "fabric", "fabricated", "fabulous", "facade", "face", "faced", "faceless", "faces", "facet", "facets", "facial", "facile", "facilities", "facility", "facing", "fact", "factions", "factor", "factors", "factory", "facts", "factual", "fade", "faded", "fades", "fading", "fagin", "fail", "failed", "failing", "failings", "fails", "failure", "failures", "faint", "faints", "fair", "fairbanks", "fairly", "fairness", "fairy", "fairytale", "faith", "faithful", "faithfully", "faithfulness", "fake", "faked", "faking", "falco", "falcon", "falk", "fall", "fallen", "falling", "fallon", "falls", "false", "falsely", "falters", "fame", "famed", "familial", "familiar", "familiarity", "families", "family", "famine", "famous", "famously", "fan", "fanatic", "fanatical", "fanatics", "fancy", "fanning", "fanny", "fans", "fantasies", "fantastic", "fantastical", "fantastically", "fantasy", "far", "farce", "farcical", "fare", "fared", "fares", "farewell", "faris", "farm", "farmer", "farmers", "farnsworth", "farrah", "farrell", "farrelly", "fart", "farther", "farting", "fascinated", "fascinating", "fascination", "fascism", "fascist", "fashion", "fashionable", "fashioned", "fashions", "fassbinder", "fast", "faster", "fastest", "fat", "fatal", "fatale", "fatally", "fate", "fated", "fateful", "fates", "father", "fathers", "fathom", "fault", "faultless", "faults", "faulty", "faux", "fav", "fave", "favor", "favorable", "favored", "favorite", "favorites", "favors", "favour", "favourite", "favourites", "favours", "fawcett", "fay", "faye", "fbi", "fear", "feared", "fearful", "fearing", "fearless", "fears", "feast", "feat", "feather", "feathers", "feature", "featured", "features", "featurette", "featuring", "february", "fed", "federal", "fee", "feeble", "feed", "feeding", "feeds", "feel", "feelgood", "feeling", "feelings", "feels", "feet", "feinstone", "feisty", "feline", "felix", "fell", "fellini", "fellow", "fellows", "fellowship", "felt", "female", "females", "feminine", "femininity", "feminism", "feminist", "feminists", "femme", "fence", "fencing", "fend", "fenton", "fernando", "ferocious", "ferrell", "ferrer", "ferris", "ferry", "fest", "festival", "festivals", "fetched", "fetching", "fetish", "feud", "feudal", "fever", "few", "fewer", "fey", "fez", "fi", "fiance", "fianc\u00e9", "fianc\u00e9e", "fiasco", "fiction", "fictional", "fictionalized", "fictitious", "fiddle", "fide", "fidel", "fidelity", "fido", "field", "fields", "fiend", "fiennes", "fierce", "fiercely", "fiery", "fifteen", "fifth", "fifties", "fifty", "fight", "fighter", "fighters", "fighting", "fights", "figure", "figured", "figures", "figuring", "file", "files", "filipino", "fill", "filled", "filler", "filling", "fills", "film", "filmed", "filmic", "filming", "filmmaker", "filmmakers", "filmmaking", "filmography", "films", "filter", "filters", "filth", "filthy", "final", "finale", "finally", "finance", "financed", "finances", "financial", "financially", "financing", "finch", "find", "finding", "findings", "finds", "fine", "finely", "fineman", "finer", "finesse", "finest", "finger", "fingernails", "fingers", "finish", "finished", "finishes", "finishing", "finney", "finnish", "fiona", "fire", "fired", "firefighters", "firefly", "fireplace", "fires", "fireworks", "firing", "firm", "firmly", "first", "firstly", "fischer", "fish", "fishburne", "fisher", "fisherman", "fishing", "fist", "fisted", "fists", "fit", "fits", "fitted", "fitting", "fitzgerald", "five", "fix", "fixation", "fixed", "fixing", "flag", "flags", "flaherty", "flair", "flamboyant", "flame", "flamenco", "flames", "flaming", "flapping", "flare", "flash", "flashback", "flashbacks", "flashed", "flashes", "flashing", "flashlight", "flashy", "flat", "flats", "flattering", "flavor", "flavour", "flaw", "flawed", "flawless", "flawlessly", "flaws", "flea", "fled", "fledged", "flee", "fleeing", "flees", "fleet", "fleeting", "fleischer", "fleming", "flesh", "fleshed", "flew", "flic", "flick", "flicker", "flickering", "flicks", "flies", "flight", "flights", "flimsy", "fling", "flip", "flippant", "flipped", "flipping", "flips", "flirt", "flirting", "flirts", "float", "floating", "floats", "flock", "flood", "flooding", "floor", "floors", "flop", "flopped", "flops", "florence", "florida", "flounder", "flourish", "flourishes", "flow", "flower", "flowers", "flowing", "flown", "flows", "floyd", "flu", "fluent", "fluff", "fluffy", "fluid", "fluke", "flung", "flushed", "flute", "fly", "flying", "flynn", "foch", "focus", "focused", "focuses", "focusing", "fodder", "foe", "foes", "fog", "foggy", "foil", "fold", "foley", "folk", "folklore", "folks", "follow", "followed", "followers", "following", "follows", "folly", "fond", "fonda", "fondly", "fondness", "fontaine", "food", "fool", "fooled", "fooling", "foolish", "foolishly", "foolishness", "fools", "foot", "footage", "football", "footed", "footlight", "footsteps", "for", "foray", "forbes", "forbid", "forbidden", "force", "forced", "forces", "forcing", "ford", "fore", "foreboding", "foree", "foreground", "forehead", "foreign", "foreigner", "foreigners", "foremost", "forensic", "foreshadowing", "forest", "forests", "forever", "forewarned", "forget", "forgets", "forgettable", "forgetting", "forgivable", "forgive", "forgiven", "forgiveness", "forgives", "forgiving", "forgot", "forgotten", "fork", "forlani", "form", "formal", "format", "formation", "formed", "former", "formerly", "formidable", "forming", "forms", "formula", "formulaic", "formulas", "forrest", "forsaken", "forsythe", "fort", "forth", "forthcoming", "forties", "fortress", "fortunate", "fortunately", "fortune", "fortunes", "forty", "forum", "forward", "forwarded", "forwarding", "forwards", "foster", "fought", "foul", "found", "foundation", "founded", "founder", "founding", "fountain", "four", "fourteen", "fourth", "fox", "foxes", "foxx", "foxy", "fraction", "fractured", "fragile", "fragility", "fragmented", "fragments", "frail", "frailty", "frame", "framed", "frames", "framework", "framing", "france", "frances", "franchise", "franchot", "francis", "francisco", "franco", "francois", "frank", "frankenstein", "frankie", "franklin", "frankly", "franks", "frantic", "frantically", "franz", "frat", "fraternity", "fraud", "fraught", "freak", "freaked", "freakin", "freaking", "freakish", "freaks", "freaky", "fred", "freddie", "freddy", "frederic", "free", "freed", "freedom", "freely", "freeman", "freeway", "freeze", "freezing", "french", "frenchman", "frenetic", "frenzied", "frenzy", "frequency", "frequent", "frequently", "fresh", "freshly", "freshman", "freshness", "freud", "freudian", "fricker", "friction", "friday", "fridge", "fried", "friend", "friendly", "friends", "friendship", "friendships", "friggin", "fright", "frighten", "frightened", "frightening", "frighteningly", "fringe", "fritz", "frodo", "frog", "frogs", "frolic", "from", "front", "frontal", "frontier", "fronts", "frost", "frozen", "fruit", "fruition", "frustrated", "frustrating", "frustratingly", "frustration", "frustrations", "fry", "frye", "frying", "ft", "fu", "fuel", "fuels", "fugitive", "fulci", "fulfill", "fulfilled", "fulfilling", "fulfillment", "fulfills", "full", "fuller", "fullest", "fully", "fun", "function", "functional", "functioning", "functions", "fund", "fundamental", "fundamentalist", "fundamentally", "funded", "funding", "funds", "funeral", "funky", "funnier", "funniest", "funnily", "funny", "fur", "furious", "furlong", "furniture", "furry", "further", "furthermore", "fury", "fuse", "fuss", "futile", "futility", "future", "futuristic", "fuzzy", "fx", "gable", "gabriel", "gabriella", "gackt", "gadget", "gadgets", "gag", "gage", "gags", "gail", "gain", "gained", "gaining", "gains", "gal", "galactica", "galaxy", "gale", "gall", "gallagher", "gallery", "galore", "gals", "gamble", "gambler", "gambling", "game", "gameplay", "games", "gaming", "gamut", "gandalf", "gandhi", "gandolfini", "gang", "gangs", "gangsta", "gangster", "gangsters", "gap", "gaping", "gaps", "garage", "garam", "garb", "garbage", "garbo", "garcia", "garde", "garden", "gardener", "gardens", "gardner", "garfield", "gargantuan", "garish", "garland", "garner", "garnered", "garrett", "garry", "gary", "gas", "gasoline", "gasp", "gasping", "gate", "gates", "gather", "gathered", "gathering", "gathers", "gaudy", "gauge", "gave", "gavin", "gawd", "gawky", "gay", "gays", "gaze", "gazing", "gazzara", "gear", "geared", "gears", "geddes", "gee", "geek", "geeks", "geeky", "geer", "geez", "geezer", "geisha", "gellar", "gem", "gems", "gen", "gena", "gender", "gene", "general", "generally", "generals", "generate", "generated", "generates", "generating", "generation", "generations", "generic", "generous", "genesis", "genetic", "genetically", "genie", "genitals", "genius", "geniuses", "genre", "genres", "gentle", "gentleman", "gentlemen", "gently", "genuine", "genuinely", "geoffrey", "geographic", "geography", "george", "georges", "georgia", "gerald", "geraldine", "gerard", "gere", "german", "germans", "germany", "gershwin", "gertrude", "gesture", "gestures", "get", "getaway", "gets", "getting", "ghastly", "ghetto", "ghost", "ghostly", "ghosts", "gi", "giallo", "giamatti", "giancarlo", "giant", "giants", "gibberish", "gibson", "giddy", "gielgud", "gift", "gifted", "gifts", "gig", "gigantic", "giggle", "giggles", "giggling", "gigi", "gigli", "gigolo", "gigs", "gil", "gilbert", "gilliam", "gillian", "gilligan", "gimmick", "gimmicks", "gimmicky", "gina", "ginger", "giovanna", "giovanni", "girl", "girlfight", "girlfriend", "girlfriends", "girls", "gist", "give", "given", "gives", "giving", "glad", "gladiator", "gladly", "gladys", "glamor", "glamorous", "glamour", "glance", "glances", "glaring", "glass", "glasses", "gleason", "glee", "gleeful", "gleefully", "glen", "glenda", "glenn", "glib", "glimmer", "glimpse", "glimpsed", "glimpses", "glitter", "glitz", "global", "globe", "gloom", "gloomy", "gloria", "glorified", "glorifies", "glorify", "glorious", "gloriously", "glory", "gloss", "glossed", "glossy", "glove", "glover", "gloves", "glow", "glowing", "glue", "glued", "go", "goal", "goals", "goat", "god", "godard", "goddess", "godfather", "godmother", "gods", "godzilla", "goebbels", "goer", "goers", "goes", "going", "goings", "gold", "goldberg", "goldblum", "golden", "goldie", "goldsmith", "goldsworthy", "golf", "gomez", "gone", "gong", "gonna", "gonzalez", "gonzo", "goo", "good", "goodbye", "goodfellas", "goodies", "gooding", "goodman", "goodness", "goodnight", "goods", "goody", "goof", "goofs", "goofy", "google", "goon", "goons", "goose", "gopal", "gordon", "gore", "gorgeous", "gorgeously", "gorilla", "gory", "gosh", "gospel", "gossip", "got", "goth", "gothic", "gotta", "gotten", "governess", "government", "governments", "governor", "govinda", "gown", "gowns", "grab", "grabbed", "grabbing", "grabs", "grace", "graced", "graceful", "gracefully", "graces", "grade", "grader", "gradual", "gradually", "graduate", "graduated", "graduates", "graduation", "grady", "graffiti", "graham", "grail", "grain", "grainy", "grammar", "grand", "grandchildren", "granddaughter", "grandeur", "grandfather", "grandiose", "grandma", "grandmother", "grandpa", "grandparents", "grandson", "granger", "granny", "grant", "granted", "grants", "graphic", "graphically", "graphics", "gras", "grasp", "grass", "grateful", "gratification", "gratifying", "grating", "gratitude", "gratuitous", "grave", "graves", "graveyard", "gravitas", "gravity", "gray", "grayson", "grease", "greasy", "great", "greater", "greatest", "greatly", "greatness", "greats", "greece", "greed", "greedy", "greek", "green", "greenaway", "greene", "greenlight", "greet", "greeted", "greetings", "greg", "gregory", "gremlins", "grenade", "grenades", "grendel", "greta", "gretchen", "grew", "grey", "grieco", "grief", "grier", "grieving", "griffin", "griffith", "griffiths", "grifters", "grim", "grimy", "grin", "grinch", "grind", "grindhouse", "grinding", "grinning", "grip", "gripe", "gripped", "gripping", "grips", "grisham", "grisly", "grit", "gritty", "grizzled", "groan", "groaning", "groans", "grocery", "groin", "groom", "groomed", "groove", "groovy", "gross", "grosse", "grossed", "grossing", "grossly", "grotesque", "ground", "groundbreaking", "grounded", "grounds", "group", "groups", "grow", "growing", "growling", "grown", "grows", "growth", "grudge", "grudgingly", "grueling", "gruesome", "gruesomely", "gruff", "grumpy", "grungy", "grunts", "guarantee", "guaranteed", "guard", "guarded", "guardian", "guards", "guerrilla", "guess", "guessed", "guessing", "guest", "guests", "guetary", "guevara", "guidance", "guide", "guided", "guidelines", "guides", "guiding", "guilt", "guilty", "guinea", "guinness", "guise", "guitar", "guitarist", "gulf", "gullible", "gum", "gummer", "gump", "gun", "gundam", "gunfight", "gunfighter", "gunfire", "gung", "gunga", "gunman", "gunned", "gunpoint", "guns", "gunshot", "gunshots", "gunslinger", "guru", "gus", "gushing", "gusto", "gut", "guts", "gutsy", "gutted", "gutter", "guy", "guys", "guzman", "gwyneth", "gwynne", "gyllenhaal", "gym", "gypsies", "gypsy", "ha", "haas", "habit", "habits", "hack", "hacked", "hacking", "hackman", "hackneyed", "hacks", "had", "hadley", "hadn", "hag", "haggard", "haha", "hai", "hail", "hailed", "haines", "hair", "haircut", "haircuts", "hairdo", "haired", "hairs", "hairstyle", "hairstyles", "hairy", "hal", "hale", "haley", "half", "halfway", "hall", "halle", "hallmark", "halloween", "hallucination", "hallucinations", "hallway", "hallways", "halt", "ham", "hamill", "hamilton", "hamlet", "hammer", "hammered", "hammerhead", "hamming", "hammy", "hampered", "hampton", "hams", "han", "hand", "handed", "handedly", "handful", "handicapped", "handing", "handle", "handled", "handles", "handling", "hands", "handsome", "handy", "hang", "hanged", "hanger", "hanging", "hangover", "hangs", "hank", "hanks", "hanna", "hannah", "hannibal", "hans", "hansen", "hanson", "hanzo", "haphazard", "haphazardly", "hapless", "happen", "happened", "happening", "happenings", "happens", "happenstance", "happier", "happily", "happiness", "happy", "hara", "harass", "harassed", "harassment", "harbor", "hard", "hardcore", "hardened", "harder", "hardest", "hardly", "hardship", "hardships", "hardware", "hardwicke", "hardy", "hare", "harilal", "hark", "harlem", "harlin", "harlow", "harm", "harmed", "harmless", "harmon", "harmony", "harold", "harp", "harper", "harrelson", "harried", "harriet", "harris", "harrison", "harron", "harrowing", "harry", "harsh", "harshly", "harshness", "hart", "hartley", "hartman", "harvard", "harvest", "harvey", "has", "hasn", "hasselhoff", "hasso", "hastily", "hasty", "hat", "hatcher", "hatchet", "hate", "hated", "hateful", "hater", "haters", "hates", "hating", "hatred", "hats", "haunt", "haunted", "haunting", "hauntingly", "haunts", "havana", "have", "haven", "having", "havoc", "hawaii", "hawaiian", "hawk", "hawke", "hawks", "hawn", "hay", "hayden", "hayes", "hays", "hayward", "hayworth", "hazy", "hazzard", "hbo", "he", "head", "headache", "headed", "heading", "headlights", "headlines", "headquarters", "heads", "headstrong", "heal", "healed", "healing", "health", "healthy", "heap", "hear", "heard", "hearing", "hears", "hearst", "heart", "heartbeat", "heartbreak", "heartbreaking", "heartbroken", "hearted", "heartfelt", "heartily", "heartland", "heartless", "hearts", "heartwarming", "hearty", "heat", "heated", "heath", "heather", "heaven", "heavenly", "heavens", "heavily", "heavy", "heavyweight", "hebrew", "hecht", "heck", "hectic", "hector", "hedy", "heed", "heel", "heels", "hefty", "heh", "height", "heightened", "heightens", "heights", "heinous", "heir", "heiress", "heist", "held", "helen", "helena", "helga", "helicopter", "helicopters", "hell", "hellman", "hello", "hellraiser", "helm", "helmed", "helmer", "helmet", "help", "helped", "helper", "helpful", "helping", "helpless", "helplessness", "helps", "hemingway", "hence", "henchman", "henchmen", "henderson", "hendrix", "henner", "henri", "henry", "henson", "henstridge", "hepburn", "her", "herbert", "hercules", "herd", "here", "herein", "heres", "heritage", "herman", "hernandez", "hero", "heroes", "heroic", "heroics", "heroin", "heroine", "heroines", "heroism", "herring", "herrings", "hers", "herself", "herzog", "hes", "hesitant", "hesitate", "hesitation", "heston", "heterosexual", "hewitt", "hey", "heyday", "hi", "hick", "hickock", "hicks", "hid", "hidden", "hide", "hideous", "hideously", "hideout", "hides", "hiding", "high", "higher", "highest", "highlight", "highlighted", "highlighting", "highlights", "highly", "highs", "highway", "hijacked", "hijacking", "hijinks", "hiking", "hilarious", "hilariously", "hilarity", "hilary", "hill", "hillary", "hillbillies", "hillbilly", "hilliard", "hills", "hillyer", "hilt", "hilton", "him", "himself", "hindered", "hindi", "hinds", "hindsight", "hindu", "hines", "hinges", "hint", "hinted", "hinting", "hints", "hip", "hippie", "hippies", "hippy", "hire", "hired", "hires", "hiring", "his", "hispanic", "historian", "historians", "historic", "historical", "historically", "history", "histrionic", "histrionics", "hit", "hitch", "hitchcock", "hitchcockian", "hitchhiker", "hitler", "hits", "hitting", "hiv", "hk", "hmm", "hmmm", "hmmmm", "ho", "hobby", "hobgoblins", "hockey", "hodge", "hoffman", "hog", "hogan", "hogg", "hogwash", "hokey", "hokum", "hold", "holden", "holding", "holds", "hole", "holes", "holiday", "holidays", "holland", "hollow", "holloway", "holly", "hollywood", "holm", "holmes", "holocaust", "holt", "holy", "homage", "homages", "home", "homeland", "homeless", "homely", "homemade", "homer", "homes", "hometown", "homeward", "homework", "homicidal", "homicide", "homo", "homoerotic", "homophobic", "homosexual", "homosexuality", "homosexuals", "honed", "honest", "honestly", "honesty", "honey", "honeymoon", "hong", "honor", "honorable", "honored", "honors", "honour", "honourable", "hoo", "hood", "hoodlum", "hoodlums", "hoods", "hook", "hooked", "hooker", "hookers", "hooks", "hooligans", "hooper", "hooray", "hoot", "hoover", "hop", "hope", "hoped", "hopeful", "hopefully", "hopeless", "hopelessly", "hopelessness", "hopes", "hoping", "hopkins", "hopper", "hopping", "horde", "hordes", "horizon", "horizons", "horn", "horns", "horny", "horrendous", "horrendously", "horrible", "horribly", "horrid", "horrific", "horrified", "horrifying", "horror", "horrors", "horse", "horseback", "horses", "horton", "hose", "hospital", "host", "hostage", "hostages", "hosted", "hostel", "hostess", "hostile", "hostility", "hosts", "hot", "hotel", "hotels", "hotter", "hottest", "hottie", "hound", "hounds", "hour", "hours", "house", "household", "housekeeper", "houses", "housewife", "housewives", "housing", "houston", "how", "howard", "however", "howl", "howling", "hrs", "html", "http", "hubby", "hudson", "hug", "huge", "hugely", "hugging", "hugh", "hughes", "hugo", "huh", "hulk", "hulking", "hum", "human", "humane", "humanity", "humanoid", "humans", "humble", "humdrum", "humiliate", "humiliated", "humiliating", "humiliation", "humility", "humming", "humor", "humorless", "humorous", "humour", "humourless", "humphrey", "hunchback", "hundred", "hundreds", "hundstage", "hung", "hungarian", "hunger", "hungry", "hunk", "hunky", "hunt", "hunted", "hunter", "hunters", "hunting", "hurricane", "hurry", "hurt", "hurting", "hurts", "husband", "husbands", "hustle", "hustler", "huston", "hut", "hutton", "hybrid", "hyde", "hype", "hyped", "hyper", "hyperactive", "hyperbole", "hypnotic", "hypnotized", "hypocrisy", "hypocrite", "hypocritical", "hysteria", "hysterical", "hysterically", "hysterics", "iago", "ian", "ice", "iceberg", "ichi", "icing", "icky", "icon", "iconic", "icons", "icy", "id", "ida", "idea", "ideal", "idealism", "idealistic", "idealized", "ideally", "ideals", "ideas", "identical", "identification", "identified", "identify", "identifying", "identities", "identity", "ideological", "ideologies", "ideology", "idiocy", "idiosyncrasies", "idiosyncratic", "idiot", "idiotic", "idiotically", "idiots", "idle", "idol", "idyllic", "ie", "if", "ignorance", "ignorant", "ignore", "ignored", "ignores", "ignoring", "igor", "ii", "iii", "il", "ilk", "ill", "illegal", "illicit", "illinois", "illiterate", "illness", "illogical", "illuminate", "illusion", "illusions", "illustrate", "illustrated", "illustrates", "illustration", "illustrations", "illustrious", "ilona", "im", "image", "imagery", "images", "imaginable", "imaginary", "imagination", "imaginations", "imaginative", "imaginatively", "imagine", "imagined", "imagines", "imagining", "imax", "imbecilic", "imdb", "imho", "imitate", "imitated", "imitating", "imitation", "imitations", "immaculate", "immature", "immediate", "immediately", "immense", "immensely", "immerse", "immersed", "immigrant", "immigrants", "immigration", "imminent", "immoral", "immorality", "immortal", "immortality", "immune", "imo", "impact", "impaled", "impatient", "impeccable", "impeccably", "impending", "impenetrable", "imperfect", "imperial", "impersonate", "impersonating", "impersonation", "impersonator", "implanted", "implausibility", "implausible", "implements", "implication", "implications", "implicit", "implied", "implies", "implore", "imply", "implying", "import", "importance", "important", "importantly", "impose", "imposed", "imposing", "impossibility", "impossible", "impossibly", "impostor", "impotent", "impoverished", "impress", "impressed", "impresses", "impressing", "impression", "impressionable", "impressions", "impressive", "impressively", "imprisoned", "improbable", "impromptu", "improv", "improve", "improved", "improvement", "improvements", "improves", "improving", "improvisation", "improvise", "improvised", "impulse", "impulses", "in", "inability", "inaccuracies", "inaccurate", "inadequate", "inadvertently", "inane", "inanimate", "inappropriate", "inappropriately", "inbred", "inc", "incapable", "incarnation", "incarnations", "incessant", "incessantly", "incest", "incestuous", "inch", "inches", "incident", "incidental", "incidentally", "incidents", "inclined", "include", "included", "includes", "including", "inclusion", "incoherent", "income", "incomparable", "incompetence", "incompetent", "incomplete", "incomprehensible", "incongruous", "inconsequential", "inconsistencies", "inconsistent", "incorporate", "incorporated", "incorporates", "incorrect", "increase", "increased", "increases", "increasing", "increasingly", "incredible", "incredibly", "incriminating", "indeed", "indelible", "independence", "independent", "indescribable", "india", "indian", "indiana", "indians", "indicate", "indicated", "indicates", "indicating", "indication", "indicative", "indicator", "indictment", "indie", "indies", "indifference", "indifferent", "indigenous", "indirectly", "indistinguishable", "individual", "individuality", "individually", "individuals", "indoor", "indoors", "induce", "induced", "inducing", "indulge", "indulgence", "indulgent", "indulges", "industrial", "industry", "indy", "ineffective", "inept", "ineptitude", "ineptly", "ineptness", "inescapable", "inevitable", "inevitably", "inexcusable", "inexperience", "inexperienced", "inexplicable", "inexplicably", "infamous", "infant", "infantile", "infatuated", "infected", "infectious", "inferior", "infernal", "inferno", "infested", "infidelity", "infinite", "infinitely", "infinity", "inflict", "inflicted", "inflicting", "influence", "influenced", "influences", "influential", "info", "infomercial", "inform", "information", "informative", "informed", "informer", "informs", "infuriating", "infused", "ing", "ingenious", "ingenuity", "ingmar", "ingram", "ingredient", "ingredients", "ingrid", "inhabit", "inhabitants", "inhabited", "inhabiting", "inhabits", "inherent", "inherently", "inherit", "inheritance", "inherited", "inherits", "inhuman", "inhumanity", "inimitable", "initial", "initially", "initiative", "inject", "injected", "injection", "injects", "injured", "injuries", "injury", "injustice", "ink", "inkling", "inmates", "inn", "innate", "inner", "innocence", "innocent", "innocently", "innocuous", "innovation", "innovative", "innuendo", "innuendos", "innumerable", "inoffensive", "input", "ins", "insane", "insanely", "insanity", "insatiable", "insect", "insects", "insecure", "insecurities", "insensitive", "insert", "inserted", "inserting", "inserts", "inside", "insight", "insightful", "insights", "insignificance", "insignificant", "insipid", "insist", "insisted", "insistence", "insistent", "insisting", "insists", "insomnia", "insomniac", "inspector", "inspiration", "inspirational", "inspire", "inspired", "inspires", "inspiring", "installed", "installment", "installments", "instalment", "instance", "instances", "instant", "instantly", "instead", "instinct", "instincts", "institute", "institution", "instructed", "instructions", "instructor", "instrument", "instrumental", "instruments", "insufferable", "insufficient", "insult", "insulted", "insulting", "insultingly", "insults", "insurance", "intact", "integral", "integrate", "integrated", "integration", "integrity", "intellect", "intellectual", "intellectually", "intellectuals", "intelligence", "intelligent", "intelligently", "intend", "intended", "intending", "intends", "intense", "intensely", "intensity", "intent", "intention", "intentional", "intentionally", "intentioned", "intentions", "intents", "inter", "interact", "interacting", "interaction", "interactions", "intercourse", "intercut", "interest", "interested", "interesting", "interestingly", "interests", "interfere", "interference", "interior", "interiors", "interlude", "interludes", "interminable", "internal", "international", "internet", "interplay", "interpret", "interpretation", "interpretations", "interpreted", "interrogation", "interrupt", "interrupted", "interspersed", "intertwined", "intervals", "intervenes", "intervention", "interview", "interviewed", "interviewing", "interviews", "interwoven", "intestines", "intimacy", "intimate", "intimidating", "into", "intolerable", "intolerance", "intoxicated", "intricacies", "intricate", "intricately", "intrigue", "intrigued", "intrigues", "intriguing", "intrinsic", "intro", "introduce", "introduced", "introduces", "introducing", "introduction", "introductory", "introspection", "introspective", "introverted", "intruder", "intrusion", "intrusive", "invade", "invaded", "invaders", "invading", "invaluable", "invariably", "invasion", "invent", "invented", "inventing", "invention", "inventions", "inventive", "inventiveness", "inventor", "invest", "invested", "investigate", "investigated", "investigates", "investigating", "investigation", "investigations", "investigative", "investigator", "investment", "invincible", "invisibility", "invisible", "invitation", "invite", "invited", "invites", "inviting", "involve", "involved", "involvement", "involves", "involving", "iowa", "iq", "ira", "iran", "irani", "iranian", "iraq", "ireland", "irene", "irish", "irishman", "iron", "ironic", "ironically", "ironies", "irons", "ironside", "irony", "irrational", "irrelevant", "irresistible", "irresponsible", "irreverent", "irreversible", "irritate", "irritated", "irritates", "irritating", "irritatingly", "irritation", "irs", "irving", "irwin", "is", "isaac", "isabel", "isabelle", "ish", "ishq", "ishtar", "islam", "island", "islanders", "islands", "isle", "ism", "isn", "isnt", "isolated", "isolation", "israel", "israeli", "issue", "issued", "issues", "it", "italian", "italians", "italy", "itch", "itchy", "item", "items", "its", "itself", "iturbi", "iv", "ivan", "ivory", "ivy", "izzard", "jab", "jabba", "jack", "jackass", "jacket", "jackets", "jackie", "jackman", "jackson", "jacob", "jacobi", "jacqueline", "jacques", "jada", "jaded", "jafar", "jaffar", "jaffe", "jagger", "jai", "jail", "jake", "jam", "james", "jameson", "jamie", "jammed", "jan", "jane", "janeane", "janet", "janice", "janine", "janitor", "janos", "january", "japan", "japanese", "jar", "jared", "jarring", "jason", "jaw", "jawed", "jaws", "jay", "jazz", "jazzy", "je", "jealous", "jealousy", "jean", "jeanette", "jeans", "jed", "jedi", "jeep", "jeez", "jeff", "jefferson", "jeffery", "jeffrey", "jekyll", "jelly", "jenkins", "jenna", "jennifer", "jenny", "jeopardy", "jeremy", "jerk", "jerker", "jerking", "jerks", "jerky", "jeroen", "jerome", "jerry", "jersey", "jerusalem", "jess", "jesse", "jessica", "jessie", "jester", "jesus", "jet", "jew", "jewel", "jewelry", "jewels", "jewish", "jews", "jfk", "jigsaw", "jill", "jim", "jimmy", "jj", "jo", "joan", "joanna", "job", "jobs", "jock", "jocks", "jodie", "joe", "joel", "joey", "johansson", "john", "johnnie", "johnny", "johnson", "johnston", "join", "joined", "joining", "joins", "joint", "joke", "joker", "jokes", "joking", "jolie", "jolly", "jolt", "jon", "jonathan", "jones", "jonestown", "jordan", "jose", "joseph", "josh", "joshua", "josie", "joss", "jos\u00e9", "journal", "journalism", "journalist", "journalists", "journey", "journeys", "jovi", "jox", "joy", "joyce", "joyless", "joyous", "joys", "jr", "ju", "juan", "judd", "jude", "judge", "judged", "judgement", "judges", "judging", "judgment", "judgmental", "judi", "judith", "judy", "juice", "juicy", "jules", "julia", "julian", "julie", "juliet", "juliette", "july", "jumbled", "jumbo", "jump", "jumped", "jumping", "jumps", "jumpy", "june", "jungle", "jungles", "junior", "junk", "junkie", "junkies", "junkyard", "jurassic", "jury", "just", "justice", "justifiably", "justification", "justified", "justifies", "justify", "justifying", "justin", "justly", "juvenile", "juxtaposition", "ka", "kahn", "kalifornia", "kamal", "kane", "kansas", "kapoor", "kar", "karate", "kareena", "karen", "kari", "karisma", "karl", "karloff", "karma", "kasdan", "kate", "katherine", "kathleen", "kathryn", "kathy", "katie", "katsu", "kattan", "kaufman", "kavner", "kay", "kaye", "kazan", "keanu", "keaton", "keeler", "keen", "keep", "keeper", "keeping", "keeps", "kei", "keira", "keitel", "keith", "keller", "kellerman", "kelly", "ken", "kennedy", "kennel", "kenneth", "kenny", "kent", "kentucky", "kept", "kermit", "kerr", "kerry", "ketchup", "kevin", "key", "keyboard", "keys", "keystone", "khan", "khanna", "kick", "kicked", "kicker", "kicking", "kicks", "kid", "kiddie", "kiddies", "kidding", "kidman", "kidnap", "kidnapped", "kidnappers", "kidnapping", "kidnaps", "kids", "kiefer", "kill", "killed", "killer", "killers", "killing", "killings", "kills", "kilmer", "kilter", "kim", "kimberly", "kin", "kind", "kinda", "kindergarten", "kindly", "kindness", "kinds", "kinetic", "king", "kingdom", "kings", "kingsley", "kinky", "kinnear", "kino", "kinski", "kipling", "kirk", "kirsten", "kiss", "kissed", "kisses", "kissing", "kit", "kitamura", "kitchen", "kitsch", "kitschy", "kitten", "kittens", "kitty", "klaus", "klein", "kline", "knack", "knee", "knees", "knew", "knife", "knight", "knightley", "knightly", "knights", "knit", "knives", "knock", "knocked", "knocking", "knockoff", "knocks", "know", "knowing", "knowingly", "knowledge", "knowledgeable", "known", "knows", "knox", "knuckle", "kolchak", "kong", "koo", "kooky", "korda", "korea", "korean", "kothari", "kotto", "kovacs", "kramer", "krause", "krell", "krige", "kris", "krishna", "kristen", "kristin", "kristofferson", "krueger", "kruger", "kubrick", "kudos", "kudrow", "kumar", "kung", "kurosawa", "kurt", "kyle", "kylie", "la", "lab", "label", "labeled", "labels", "labeouf", "labor", "laboratory", "labored", "labour", "labyrinth", "laced", "lack", "lacked", "lacking", "lackluster", "lacklustre", "lacks", "laconic", "lad", "ladder", "laden", "ladies", "lads", "lady", "laid", "lair", "laird", "lake", "lam", "lamarr", "lamas", "lamb", "lambert", "lambs", "lame", "lamer", "lamest", "lamp", "lampoon", "lan", "lana", "lancaster", "lance", "lanchester", "land", "landed", "landing", "landis", "landlady", "landlord", "landmark", "landmarks", "lando", "landon", "lands", "landscape", "landscapes", "lane", "lang", "lange", "language", "languages", "lansbury", "lap", "lapd", "lapse", "lapses", "laputa", "lara", "large", "largely", "larger", "largest", "larry", "lars", "las", "lascivious", "laser", "lassie", "last", "lasted", "lasting", "lastly", "lasts", "late", "lately", "later", "latest", "latin", "latino", "latter", "lau", "lauded", "laugh", "laughable", "laughably", "laughed", "laughing", "laughs", "laughter", "launch", "launched", "launching", "laundry", "laura", "laurel", "lauren", "laurence", "laurie", "lava", "lavish", "law", "lawman", "lawn", "lawrence", "laws", "lawyer", "lawyers", "lay", "layer", "layered", "layers", "laying", "layout", "lays", "laziness", "lazy", "lbs", "lds", "le", "lea", "leachman", "lead", "leaden", "leader", "leaders", "leadership", "leading", "leads", "leaf", "league", "leagues", "leak", "lean", "leaning", "leanings", "leans", "leap", "leaping", "leaps", "learn", "learned", "learning", "learns", "learnt", "leary", "lease", "least", "leather", "leave", "leaves", "leaving", "lecherous", "lecture", "lectures", "led", "ledger", "lee", "leering", "left", "leftist", "leftover", "leg", "legacy", "legal", "legally", "legend", "legendary", "legends", "legged", "legion", "legions", "legitimate", "legs", "leguizamo", "leia", "leigh", "leisurely", "lemmon", "lemon", "lena", "lend", "lends", "length", "lengths", "lengthy", "lennon", "leno", "lens", "lenses", "lent", "leo", "leon", "leonard", "leonardo", "leone", "leopold", "lerner", "les", "lesbian", "lesbianism", "lesbians", "leslie", "less", "lesser", "lesson", "lessons", "lest", "lester", "let", "letdown", "lethal", "lethargic", "lets", "letter", "letters", "letting", "leung", "levant", "level", "levels", "levin", "levinson", "levy", "lewis", "lex", "li", "liaison", "liam", "liang", "liar", "liberal", "liberally", "liberals", "liberated", "liberating", "liberation", "liberties", "liberty", "libido", "librarian", "library", "license", "lick", "lie", "lied", "lies", "lieu", "lieutenant", "liev", "life", "lifeless", "lifelong", "lifes", "lifestyle", "lifestyles", "lifetime", "lift", "lifted", "lifting", "lifts", "light", "lighted", "lighten", "lighter", "lighthearted", "lighting", "lightly", "lightness", "lightning", "lights", "lightweight", "likability", "likable", "like", "likeable", "liked", "likelihood", "likely", "likes", "likewise", "liking", "lil", "lila", "lili", "lilith", "lillian", "lilly", "lily", "limb", "limbo", "limbs", "limelight", "limit", "limitations", "limited", "limits", "limp", "lin", "lincoln", "linda", "linden", "lindsay", "lindsey", "lindy", "line", "linear", "lined", "liner", "liners", "lines", "lineup", "linger", "lingering", "lingers", "lining", "link", "linked", "linking", "linklater", "links", "lion", "lionel", "lions", "liotta", "lip", "lips", "lipstick", "liquid", "liquor", "lisa", "list", "listed", "listen", "listened", "listener", "listening", "listens", "listing", "listings", "listless", "lists", "lit", "lite", "literal", "literally", "literary", "literate", "literature", "lithgow", "litter", "little", "liu", "liv", "live", "lived", "lively", "liven", "liver", "lives", "living", "livingston", "liz", "liza", "lizard", "lizards", "ll", "lloyd", "lo", "loach", "load", "loaded", "loads", "loan", "loathe", "loathing", "loathsome", "lobby", "local", "locale", "locales", "locals", "locate", "located", "location", "locations", "lock", "locke", "locked", "locker", "locking", "locks", "log", "logan", "loggia", "logic", "logical", "logically", "logo", "lohan", "lois", "lol", "lola", "lolita", "lombard", "lommel", "lon", "london", "lone", "loneliness", "lonely", "loner", "long", "longed", "longer", "longest", "longing", "longoria", "longs", "longtime", "loni", "look", "lookalike", "looked", "looking", "lookout", "looks", "looming", "loomis", "looney", "loony", "loop", "loopy", "loose", "loosely", "looser", "looses", "loosing", "loot", "lopez", "lord", "lords", "lore", "loren", "lorenzo", "loretta", "lorne", "lorre", "los", "lose", "loser", "losers", "loses", "losing", "loss", "losses", "lost", "lot", "lotr", "lots", "lottery", "lou", "loud", "louder", "loudly", "louie", "louis", "louise", "louisiana", "lounge", "lousy", "lovable", "love", "loveable", "loved", "lovely", "lovemaking", "lover", "lovers", "loves", "loving", "lovingly", "low", "lowbrow", "lowe", "lower", "lowered", "lowest", "lowly", "lows", "loy", "loyal", "loyalty", "lsd", "lt", "lubitsch", "luc", "lucas", "lucid", "lucifer", "lucile", "lucille", "lucio", "luck", "luckily", "lucky", "lucy", "ludicrous", "ludicrously", "lugosi", "luigi", "luis", "luise", "lukas", "luke", "lukewarm", "lulu", "lumbering", "lumet", "luminous", "lump", "luna", "lunacy", "lunatic", "lunch", "lundgren", "lung", "lungs", "lurches", "lure", "lured", "lures", "lurid", "lurking", "lurks", "luscious", "lush", "lust", "luster", "lustful", "lusting", "lusty", "luther", "luthor", "luxurious", "luxury", "luzhin", "lying", "lyle", "lyman", "lynch", "lynchian", "lynn", "lynne", "lyric", "lyrical", "lyrics", "ma", "mabel", "mac", "macabre", "macarthur", "macaulay", "macbeth", "macdonald", "macgregor", "machete", "machina", "machinations", "machine", "machinery", "machines", "macho", "mack", "macmurray", "macy", "mad", "maddening", "made", "madeleine", "madeline", "madhur", "madison", "madly", "madman", "madness", "madonna", "madrid", "madsen", "mae", "maestro", "mafia", "magazine", "magazines", "maggie", "maggots", "magic", "magical", "magically", "magician", "magnetic", "magnetism", "magnificence", "magnificent", "magnificently", "magnitude", "magnolia", "magnum", "maguire", "mahatma", "maher", "mahoney", "maid", "maiden", "mail", "main", "maine", "mainland", "mainly", "mainstream", "maintain", "maintained", "maintaining", "maintains", "majestic", "majesty", "major", "majority", "majors", "make", "makeover", "maker", "makers", "makes", "makeup", "making", "makings", "malcolm", "malden", "male", "males", "malevolent", "malice", "malicious", "malik", "mall", "malone", "malta", "maltese", "maltin", "mama", "mamet", "mamie", "mammoth", "man", "manage", "managed", "management", "manager", "manages", "managing", "manchester", "manchu", "manchurian", "mandatory", "mandy", "manga", "mangled", "manhattan", "manhood", "mania", "maniac", "maniacal", "maniacs", "manic", "manifest", "manipulate", "manipulated", "manipulates", "manipulating", "manipulation", "manipulative", "mankind", "manly", "mann", "manner", "mannered", "mannerisms", "manners", "manny", "manor", "manos", "mans", "mansfield", "mansion", "manson", "mantegna", "manual", "manufactured", "manure", "manuscript", "many", "map", "mar", "marathon", "marbles", "marc", "marcel", "march", "marches", "marching", "marco", "marcus", "mardi", "mare", "margaret", "marginal", "marginally", "margret", "maria", "marie", "marijuana", "marilyn", "marin", "marina", "marine", "marines", "mario", "marion", "marisa", "marital", "marjorie", "mark", "marked", "market", "marketed", "marketing", "marking", "marks", "marlene", "marley", "marlon", "marquee", "marquis", "marred", "marriage", "marriages", "married", "marries", "marry", "marrying", "mars", "marsh", "marsha", "marshal", "marshall", "mart", "martha", "martial", "martian", "martians", "martin", "martinez", "martino", "marty", "marvel", "marvellous", "marvelous", "marvelously", "marvin", "marx", "marxist", "mary", "masala", "masculine", "masculinity", "mash", "mask", "masked", "masks", "masochist", "masochistic", "mason", "masquerading", "mass", "massachusetts", "massacre", "massacred", "masses", "massey", "massive", "massively", "master", "mastered", "masterful", "masterfully", "mastermind", "masterpiece", "masterpieces", "masters", "masterson", "masterwork", "mastery", "mastroianni", "masturbation", "match", "matched", "matches", "matching", "mate", "material", "materials", "mates", "math", "matheson", "mathieu", "mating", "matin\u00e9e", "matrix", "matt", "matte", "mattei", "matter", "mattered", "matters", "matthau", "matthew", "mature", "matured", "maturity", "maudlin", "maugham", "maureen", "maurice", "maverick", "mawkish", "max", "maximum", "maxwell", "may", "maya", "maybe", "mayer", "mayhem", "mayor", "maze", "mazes", "mc", "mcadams", "mcbain", "mccarthy", "mcclure", "mcconaughey", "mccoy", "mcdermott", "mcdonald", "mcdonalds", "mcdowell", "mcgavin", "mcgregor", "mchugh", "mcintire", "mcintyre", "mckee", "mclaglen", "mcmahon", "mcnally", "mcqueen", "mcshane", "me", "meadows", "meager", "meal", "mean", "meandering", "meanders", "meaning", "meaningful", "meaningless", "meanings", "means", "meant", "meantime", "meanwhile", "measure", "measured", "measures", "meat", "meatball", "meaty", "mecha", "mechanic", "mechanical", "mechanics", "mechanism", "medal", "media", "medical", "medication", "medicine", "medieval", "mediocre", "mediocrity", "meditation", "mediterranean", "medium", "mediums", "meek", "meet", "meeting", "meetings", "meets", "meg", "mega", "megan", "mel", "melancholic", "melancholy", "melanie", "melbourne", "meld", "melinda", "melissa", "melodies", "melodrama", "melodramas", "melodramatic", "melody", "melt", "melting", "melts", "melville", "melvyn", "member", "members", "memoir", "memoirs", "memorable", "memorably", "memorial", "memories", "memorized", "memory", "men", "menace", "menacing", "mendes", "mendez", "mental", "mentality", "mentally", "mention", "mentioned", "mentioning", "mentions", "mentor", "menu", "mercenary", "merchandise", "merchant", "mercifully", "merciless", "mercilessly", "mercury", "mercy", "mere", "meredith", "merely", "merge", "merit", "merits", "merk", "merlin", "mermaid", "merrill", "merry", "meryl", "mesh", "mesmerized", "mesmerizing", "mess", "message", "messages", "messed", "messenger", "messes", "messiah", "messing", "messy", "met", "metal", "metamorphosis", "metaphor", "metaphorical", "metaphors", "metaphysical", "meteor", "meteorite", "meter", "meth", "method", "methodical", "methods", "meticulous", "metro", "metropolis", "metropolitan", "mexican", "mexico", "meyer", "meyers", "mgm", "mia", "miami", "mic", "mice", "michael", "michaels", "micheal", "michel", "michell", "michelle", "michigan", "mick", "mickey", "microphone", "mid", "middle", "midget", "midgets", "midler", "midnight", "midst", "midway", "midwest", "might", "mightily", "mighty", "miike", "mike", "miklos", "milan", "mild", "mildly", "mildred", "mile", "miles", "milestone", "milieu", "militant", "military", "milk", "milked", "mill", "milland", "millard", "millennium", "miller", "million", "millionaire", "millions", "mills", "milo", "milton", "mime", "mimic", "mimicking", "min", "mind", "minded", "mindless", "mindlessly", "minds", "mindset", "mine", "minelli", "miner", "miners", "mines", "mini", "miniature", "minimal", "minimalist", "minimalistic", "minimum", "mining", "minions", "miniseries", "minister", "minnelli", "minor", "minorities", "minority", "mins", "minus", "minute", "minutes", "mira", "miracle", "miracles", "miraculous", "miraculously", "miranda", "miriam", "mirror", "mirrors", "mis", "misadventures", "miscarriage", "miscast", "miscasting", "mischievous", "mise", "miserable", "miserably", "misery", "misfire", "misfit", "misfits", "misfortune", "misguided", "mish", "mishaps", "mishmash", "mislead", "misleading", "misled", "mismatched", "misogynistic", "misogyny", "misplaced", "miss", "missed", "misses", "missile", "missiles", "missing", "mission", "missionary", "missions", "missouri", "mist", "mistake", "mistaken", "mistakenly", "mistakes", "mister", "mistreated", "mistress", "misty", "misunderstand", "misunderstanding", "misunderstandings", "misunderstood", "misused", "mitch", "mitchell", "mitchum", "mix", "mixed", "mixes", "mixing", "mixture", "miyazaki", "mm", "mo", "moan", "moaning", "moans", "mob", "mobile", "mobster", "mobsters", "mock", "mocked", "mockery", "mocking", "mockumentary", "mode", "model", "modeled", "modeling", "models", "moderate", "moderately", "modern", "modest", "modesty", "modicum", "modine", "moe", "mol", "mold", "mole", "molested", "molina", "moll", "molly", "mom", "moment", "momentarily", "moments", "momentum", "mommy", "moms", "mon", "mona", "monaghan", "monarch", "monastery", "monday", "monetary", "money", "monica", "monitor", "monitors", "monk", "monkey", "monkeys", "monks", "mono", "monologue", "monologues", "mononoke", "monotone", "monotonous", "monotony", "monroe", "monster", "monsters", "monstrosity", "monstrous", "montage", "montages", "montana", "monte", "montgomery", "month", "months", "monty", "monument", "monumental", "mood", "moodiness", "moods", "moody", "moon", "moonlight", "moonstruck", "moonwalker", "moore", "moorehead", "moral", "morale", "moralistic", "morality", "morally", "morals", "moran", "morbid", "morbius", "more", "moreau", "moreover", "mores", "morgan", "morgana", "morgue", "moriarty", "morita", "mormon", "mormons", "morning", "moron", "moronic", "morons", "morose", "morphed", "morphs", "morricone", "morris", "morrow", "morse", "mortal", "mortality", "mortally", "mortensen", "mortimer", "morton", "moscow", "moses", "moss", "most", "mostel", "mostly", "motel", "mother", "mothers", "motif", "motifs", "motion", "motions", "motivated", "motivation", "motivations", "motive", "motives", "motley", "motor", "motorcycle", "moulin", "mount", "mountain", "mountains", "mounted", "mounting", "mourning", "mouse", "moustache", "mouth", "mouthed", "mouths", "move", "moved", "movement", "movements", "moves", "movie", "moviegoer", "moviegoers", "movies", "moving", "mower", "mpaa", "mph", "mr", "mrs", "ms", "mst", "mst3k", "mtv", "much", "muck", "mud", "muddled", "muddy", "mug", "mugging", "mulder", "mulholland", "muller", "mullet", "mulligan", "multi", "multiple", "multiplex", "multiply", "multitude", "mum", "mumbai", "mumbling", "mumbo", "mummy", "munchies", "munching", "mundane", "muni", "munro", "muppet", "muppets", "murder", "murdered", "murderer", "murderers", "murdering", "murderous", "murders", "muriel", "murky", "murphy", "murray", "muscle", "muscles", "muscular", "muse", "museum", "mush", "music", "musical", "musically", "musicals", "musician", "musicians", "muslim", "muslims", "mussolini", "must", "mustache", "muster", "mutant", "mutants", "mutated", "mute", "muted", "mutilated", "mutilation", "mutiny", "mutual", "my", "myers", "myles", "myra", "myriad", "myrna", "myrtle", "myself", "mysteries", "mysterious", "mysteriously", "mystery", "mystic", "mystical", "mysticism", "mystique", "myth", "mythic", "mythical", "mythological", "mythology", "myths", "nada", "nadir", "nagging", "nah", "nail", "nailed", "nails", "nair", "naive", "naivety", "naivet\u00e9", "naked", "nam", "name", "named", "nameless", "namely", "names", "naming", "nana", "nancy", "nanny", "naomi", "nap", "napier", "napoleon", "narcissism", "narcissistic", "narrated", "narrates", "narrating", "narration", "narrative", "narratives", "narrator", "narrow", "narrowly", "nary", "nasa", "naschy", "nash", "nasties", "nasty", "nat", "natali", "natalie", "natasha", "nathan", "nation", "national", "nationalist", "nations", "native", "natives", "natural", "naturalism", "naturalistic", "naturally", "nature", "natured", "naughty", "nausea", "nauseating", "nauseous", "nauseum", "naval", "navigate", "navy", "nay", "nazi", "nazis", "na\u00efve", "nbc", "nc", "ne", "neal", "near", "nearby", "nearest", "nearing", "nearly", "neat", "neatly", "necessarily", "necessary", "necessity", "neck", "necklace", "necks", "ned", "need", "needed", "needing", "needle", "needless", "needlessly", "needn", "needs", "needy", "neeson", "nefarious", "negative", "negatively", "negatives", "neglect", "neglected", "negligible", "negotiate", "negotiation", "neighbor", "neighborhood", "neighborhoods", "neighbors", "neighbour", "neighbourhood", "neighbours", "neil", "neill", "neither", "nell", "nelson", "nemesis", "nemo", "neo", "neon", "nephew", "nephews", "nepotism", "nerd", "nerds", "nerdy", "nerve", "nerves", "nervous", "ness", "nest", "net", "netflix", "netherlands", "network", "networks", "neuroses", "neurotic", "neutral", "nevada", "neve", "never", "neverending", "nevermind", "nevertheless", "neville", "new", "newcomer", "newcomers", "newer", "newest", "newfound", "newhart", "newly", "newman", "news", "newspaper", "newspapers", "newsreel", "newton", "next", "nic", "nice", "nicely", "nicer", "niche", "nicholas", "nicholson", "nick", "nickelodeon", "nickname", "nicky", "nicolai", "nicolas", "nicole", "niece", "nielsen", "nietzsche", "nifty", "nigel", "nigh", "night", "nightclub", "nightly", "nightmare", "nightmares", "nightmarish", "nights", "nighttime", "nighy", "nihilism", "nina", "nine", "nineteenth", "nineties", "ninety", "ninja", "ninjas", "nintendo", "ninth", "nipple", "niro", "nisha", "nit", "niven", "nixon", "no", "noah", "noam", "nobel", "nobility", "noble", "nobleman", "nobody", "nod", "nodding", "nods", "noel", "noir", "noirish", "noirs", "noise", "noises", "noisy", "nolan", "nolte", "nominal", "nominated", "nomination", "nominations", "nominee", "nominees", "non", "nondescript", "none", "nonetheless", "nonexistent", "nonsense", "nonsensical", "nonstop", "noodle", "noon", "nope", "nor", "nora", "norm", "norma", "normal", "normalcy", "normally", "norman", "norris", "north", "northam", "northern", "northwest", "norton", "norway", "norwegian", "nose", "nosed", "noses", "nostalgia", "nostalgic", "nosy", "not", "notable", "notably", "notch", "note", "noted", "notes", "noteworthy", "nothing", "nothingness", "notice", "noticeable", "noticeably", "noticed", "notices", "noticing", "noting", "notion", "notions", "notoriety", "notorious", "notoriously", "notting", "notwithstanding", "novak", "novel", "novelist", "novella", "novels", "novelty", "november", "novice", "now", "nowadays", "nowhere", "nt", "nuance", "nuanced", "nuances", "nubile", "nuclear", "nude", "nudity", "nuff", "nuisance", "nuke", "numb", "number", "numbers", "numbing", "numbingly", "numerous", "nun", "nuns", "nurse", "nurses", "nursing", "nut", "nuts", "nutshell", "nutty", "ny", "nyc", "nymphomaniac", "nypd", "oakland", "oasis", "obese", "obi", "object", "objections", "objective", "objectively", "objects", "obligated", "obligation", "obligatory", "obliged", "oblivion", "oblivious", "obnoxious", "obscene", "obscure", "obscured", "obscurity", "observation", "observations", "observe", "observed", "observer", "observes", "observing", "obsessed", "obsession", "obsessions", "obsessive", "obsolete", "obstacle", "obstacles", "obtain", "obtained", "obtaining", "obtrusive", "obvious", "obviously", "occasion", "occasional", "occasionally", "occasions", "occult", "occupants", "occupation", "occupied", "occupy", "occupying", "occur", "occurred", "occurrence", "occurrences", "occurring", "occurs", "ocean", "oceans", "october", "odd", "oddball", "oddity", "oddly", "odds", "ode", "odyssey", "oeuvre", "of", "off", "offbeat", "offend", "offended", "offender", "offenders", "offends", "offense", "offensive", "offensively", "offer", "offered", "offering", "offerings", "offers", "office", "officer", "officers", "offices", "official", "officially", "officials", "offs", "offscreen", "offset", "offside", "offspring", "oft", "often", "ogling", "ogre", "oh", "ohio", "oil", "ok", "okay", "oklahoma", "ol", "old", "older", "oldest", "olds", "ole", "olen", "olin", "olive", "oliver", "olivia", "olivier", "ollie", "olsen", "olympia", "olympic", "olympics", "om", "omar", "omega", "omen", "omg", "ominous", "omitted", "on", "once", "one", "ones", "oneself", "ongoing", "online", "only", "onscreen", "onset", "ontario", "onto", "onwards", "ooh", "oops", "oozes", "oozing", "open", "opened", "opener", "opening", "openly", "opens", "opera", "operas", "operate", "operates", "operatic", "operating", "operation", "operations", "operative", "operator", "opinion", "opinions", "opponent", "opponents", "opportunities", "opportunity", "opposed", "opposing", "opposite", "opposites", "opposition", "oppressed", "oppression", "oppressive", "oppressors", "oprah", "opted", "optimism", "optimistic", "option", "options", "opus", "or", "oral", "orange", "orbit", "orchestra", "orchestral", "orchestrated", "ordeal", "order", "ordered", "ordering", "orders", "ordinary", "oregon", "org", "organ", "organic", "organization", "organizations", "organized", "organs", "orgasm", "orgies", "orgy", "oriental", "orientation", "oriented", "origin", "original", "originality", "originally", "originals", "originated", "origins", "orlando", "orleans", "orphan", "orphanage", "orphans", "orson", "orthodox", "orwell", "osborne", "osbourne", "oscar", "oscars", "ostensibly", "othello", "other", "others", "otherwise", "otherworldly", "ott", "otto", "ouch", "ought", "ounce", "our", "ours", "ourselves", "out", "outbreak", "outburst", "outbursts", "outcast", "outcome", "outdated", "outdoes", "outdoor", "outdoors", "outer", "outfit", "outfits", "outing", "outings", "outlandish", "outlaw", "outlaws", "outlet", "outline", "outlook", "output", "outrage", "outraged", "outrageous", "outrageously", "outright", "outs", "outset", "outside", "outsider", "outsiders", "outstanding", "outta", "outtakes", "outweigh", "over", "overact", "overacted", "overacting", "overacts", "overall", "overbearing", "overblown", "overboard", "overcome", "overcomes", "overcoming", "overdoes", "overdone", "overdose", "overhead", "overkill", "overlapping", "overlong", "overlook", "overlooked", "overlooking", "overly", "overnight", "overplayed", "overpowering", "overrated", "overs", "overseas", "oversexed", "overshadowed", "overstated", "overt", "overthrow", "overtly", "overtones", "overuse", "overused", "overview", "overweight", "overwhelm", "overwhelmed", "overwhelming", "overwhelmingly", "overwrought", "owe", "owed", "owen", "owes", "owing", "owl", "own", "owned", "owner", "owners", "owning", "owns", "oxygen", "oz", "ozzy", "pa", "pabst", "pace", "paced", "paces", "pacific", "pacifist", "pacing", "pacino", "pack", "package", "packaging", "packed", "packing", "packs", "pact", "pad", "padded", "padding", "pagan", "page", "pages", "paid", "pain", "pained", "painful", "painfully", "pains", "paint", "painted", "painter", "painters", "painting", "paintings", "paints", "pair", "paired", "pairing", "pairs", "pakistan", "pakistani", "pal", "palace", "palance", "palatable", "pale", "pales", "palestinian", "palette", "palm", "palma", "palmer", "palpable", "pals", "palsy", "paltrow", "paltry", "pam", "pamela", "pan", "panache", "panahi", "panama", "pandora", "panic", "panned", "pans", "pantheon", "panties", "pants", "pap", "paper", "paperback", "paperhouse", "papers", "paquin", "par", "parable", "parade", "paradise", "paragraph", "parallel", "parallels", "paralyzed", "parameters", "paramount", "paranoia", "paranoid", "paranormal", "paraphrase", "parasite", "pardon", "parent", "parental", "parenting", "parents", "paresh", "paris", "parisian", "park", "parked", "parker", "parking", "parks", "parliament", "parlor", "parodies", "parody", "parodying", "parole", "parrot", "parsons", "part", "parter", "partial", "partially", "participant", "participants", "participate", "participated", "participating", "participation", "particular", "particularly", "parties", "parting", "partition", "partly", "partner", "partners", "partnership", "parts", "party", "partying", "pas", "pasolini", "pass", "passable", "passage", "passages", "passed", "passenger", "passengers", "passes", "passing", "passion", "passionate", "passionately", "passions", "passive", "past", "paste", "pasted", "pastiche", "pastor", "pat", "patch", "patched", "patented", "patently", "path", "pathetic", "pathetically", "pathological", "pathos", "paths", "patience", "patient", "patiently", "patients", "patriarch", "patric", "patricia", "patrick", "patriot", "patriotic", "patriotism", "patrol", "patron", "patronizing", "patrons", "patsy", "pattern", "patterns", "patton", "patty", "paul", "paula", "paulie", "pauline", "paulo", "pauly", "pause", "pauses", "paved", "pawn", "paxton", "pay", "payback", "paycheck", "payed", "paying", "payment", "payne", "payoff", "pays", "paz", "pazu", "pbs", "pc", "peace", "peaceful", "peak", "peaks", "pearl", "peasant", "peasants", "peck", "pecker", "peckinpah", "peculiar", "pedestrian", "pedigree", "pedophile", "pedro", "pee", "peek", "peeping", "peer", "peers", "peet", "pegg", "peggy", "pen", "penalty", "penchant", "pencil", "penelope", "penguin", "penis", "penn", "penned", "penniless", "penny", "penultimate", "people", "peoples", "pepper", "peppered", "per", "perceive", "perceived", "perceives", "percent", "percentage", "perception", "perceptive", "percy", "perdition", "perennial", "perfect", "perfected", "perfection", "perfectly", "perform", "performance", "performances", "performed", "performer", "performers", "performing", "performs", "perhaps", "peril", "perilous", "perils", "period", "periodically", "periods", "peripheral", "perkins", "perky", "perlman", "permanent", "permanently", "permission", "permit", "permitted", "perpetrated", "perpetrators", "perpetual", "perpetually", "perpetuate", "perplexed", "perplexing", "perry", "persecuted", "persecution", "perseverance", "persistent", "person", "persona", "personable", "personal", "personalities", "personality", "personally", "personas", "personified", "personnel", "persons", "perspective", "perspectives", "persuade", "persuaded", "persuades", "persuasion", "persuasive", "pertwee", "peru", "pervasive", "perverse", "perversely", "perversion", "pervert", "perverted", "pesci", "pesky", "pessimistic", "pet", "pete", "peter", "peters", "peterson", "pets", "petty", "pfeiffer", "pg", "phantasm", "phantom", "phase", "phenomena", "phenomenal", "phenomenally", "phenomenon", "phil", "philadelphia", "philip", "philippe", "philippines", "phillip", "phillips", "philo", "philosopher", "philosophical", "philosophies", "philosophy", "phoenix", "phone", "phoned", "phones", "phony", "photo", "photogenic", "photograph", "photographed", "photographer", "photographers", "photographic", "photographs", "photography", "photos", "phrase", "phrases", "phyllis", "physical", "physically", "physician", "physics", "physique", "pi", "pia", "pianist", "piano", "pic", "pick", "picked", "pickford", "picking", "pickpocket", "picks", "pickup", "picky", "picnic", "pics", "picture", "pictured", "pictures", "picturesque", "pidgeon", "pie", "piece", "pieced", "pieces", "pier", "pierce", "piercing", "pierre", "pig", "pigeon", "piggy", "pigs", "pile", "piles", "pilgrimage", "pill", "pillow", "pills", "pilot", "pilots", "pimp", "pin", "pine", "ping", "pining", "pink", "pinkett", "pinnacle", "pinned", "pino", "pins", "pioneer", "pioneers", "pipe", "piper", "pipes", "pirate", "pirates", "piscopo", "pistol", "pit", "pitch", "pitched", "pitcher", "pitfalls", "pitiable", "pitiful", "pits", "pitt", "pity", "pivotal", "pixar", "pizza", "place", "placed", "placement", "places", "placid", "placing", "plague", "plagued", "plagues", "plain", "plainly", "plains", "plan", "plane", "planes", "planet", "planets", "plank", "planned", "planning", "plans", "plant", "plantation", "planted", "plants", "plastered", "plastic", "plate", "platform", "platinum", "platitudes", "platoon", "plausibility", "plausible", "play", "playboy", "played", "player", "players", "playful", "playfully", "playing", "plays", "playwright", "plea", "plead", "pleads", "pleas", "pleasance", "pleasant", "pleasantly", "please", "pleased", "pleases", "pleasing", "pleasurable", "pleasure", "pleasures", "plentiful", "plenty", "plethora", "plight", "plodding", "plods", "plot", "plotline", "plots", "plotted", "plotting", "plowright", "ploy", "plucked", "plucky", "plug", "plumbing", "plummer", "plump", "plunges", "plus", "pm", "po", "pocket", "pockets", "pod", "podge", "poe", "poem", "poet", "poetic", "poetry", "poets", "poignancy", "poignant", "point", "pointed", "pointing", "pointless", "pointlessly", "pointlessness", "points", "poison", "poisoned", "poisoning", "poisonous", "poke", "poked", "pokemon", "poker", "pokes", "poking", "pol", "poland", "polanski", "polar", "pole", "poles", "police", "policeman", "policemen", "policies", "policy", "polish", "polished", "polite", "politely", "political", "politically", "politician", "politicians", "politics", "pollack", "pollution", "polly", "poltergeist", "pompous", "pond", "ponder", "pondering", "ponderous", "pony", "poo", "pool", "poop", "poor", "poorer", "poorest", "poorly", "pop", "popcorn", "pope", "popped", "popping", "poppins", "pops", "populace", "popular", "popularity", "populate", "populated", "population", "porch", "porky", "porn", "porno", "pornographic", "pornography", "porsche", "port", "porter", "portion", "portions", "portman", "portobello", "portrait", "portraits", "portray", "portrayal", "portrayals", "portrayed", "portraying", "portrays", "portugal", "portuguese", "pose", "posed", "poses", "posey", "posh", "posing", "position", "positions", "positive", "positively", "positives", "posse", "possess", "possessed", "possesses", "possessing", "possession", "possessions", "possessive", "possibilities", "possibility", "possible", "possibly", "post", "postal", "postcard", "posted", "poster", "posters", "posting", "postman", "posts", "posturing", "postwar", "pot", "potato", "potboiler", "potent", "potential", "potentially", "potter", "potty", "pound", "pounding", "pounds", "pour", "poured", "pouring", "pov", "poverty", "pow", "powder", "powell", "power", "powered", "powerful", "powerfully", "powerhouse", "powerless", "powers", "pows", "pr", "practical", "practically", "practice", "practiced", "practices", "practicing", "prairie", "praise", "praised", "praises", "praising", "prancing", "prank", "pranks", "prashant", "pratfalls", "pray", "prayed", "prayer", "prayers", "praying", "pre", "preach", "preached", "preacher", "preaching", "preachy", "preceded", "precedes", "preceding", "precinct", "precious", "precise", "precisely", "precision", "precocious", "preconceived", "preconceptions", "precursor", "predator", "predators", "predatory", "predecessor", "predecessors", "predicament", "predict", "predictability", "predictable", "predictably", "predicted", "predicting", "predominantly", "prefer", "preferable", "preferably", "preference", "preferred", "preferring", "prefers", "pregnancy", "pregnant", "prehistoric", "prejudice", "prejudices", "premature", "prematurely", "premier", "premiere", "premiered", "preminger", "premise", "premises", "preparation", "prepare", "prepared", "prepares", "preparing", "preposterous", "prequel", "presence", "present", "presentation", "presented", "presenter", "presenting", "presents", "preservation", "preserve", "preserved", "president", "presidential", "presley", "press", "pressburger", "pressed", "pressing", "pressure", "pressures", "prestigious", "preston", "presumably", "presume", "presumed", "preteen", "pretend", "pretending", "pretends", "pretense", "pretension", "pretensions", "pretentious", "pretentiousness", "prettier", "pretty", "prevail", "prevails", "prevalent", "prevent", "prevented", "preventing", "prevents", "preview", "previews", "previous", "previously", "prey", "price", "priced", "priceless", "prices", "pride", "priest", "priests", "primal", "primarily", "primary", "prime", "primitive", "prince", "princes", "princess", "principal", "principals", "principle", "principles", "print", "printed", "prints", "prior", "priority", "prison", "prisoner", "prisoners", "prissy", "pristine", "private", "privilege", "privileged", "privy", "prix", "priyadarshan", "prize", "prizes", "pro", "probable", "probably", "probation", "probing", "problem", "problematic", "problems", "procedure", "procedures", "proceed", "proceeded", "proceeding", "proceedings", "proceeds", "process", "proclaimed", "proclaims", "prodigy", "produce", "produced", "producer", "producers", "produces", "producing", "product", "production", "productions", "productive", "products", "profane", "profanity", "profession", "professional", "professionalism", "professionally", "professionals", "professor", "professors", "profile", "profit", "profits", "profound", "profoundly", "program", "programme", "programmed", "programmer", "programmers", "programmes", "programming", "programs", "progress", "progressed", "progresses", "progression", "progressive", "progressively", "prohibition", "project", "projected", "projection", "projects", "prolific", "prologue", "prolonged", "prom", "prominence", "prominent", "prominently", "promiscuity", "promiscuous", "promise", "promised", "promises", "promising", "promisingly", "promo", "promos", "promote", "promoted", "promoter", "promoting", "promotion", "promotional", "prompted", "promptly", "prone", "pronounce", "pronounced", "proof", "prop", "propaganda", "proper", "properly", "property", "prophecy", "prophet", "prophetic", "proportion", "proportions", "proposal", "proposed", "proposes", "proposition", "proprietor", "props", "pros", "prosaic", "prose", "prosecutor", "prospect", "prostitute", "prostitutes", "prostitution", "protagonist", "protagonists", "protect", "protected", "protecting", "protection", "protective", "protector", "protest", "protests", "protocol", "prototype", "protracted", "prot\u00e9g\u00e9", "proud", "proudly", "prove", "proved", "proven", "proverbial", "proves", "provide", "provided", "provides", "providing", "provincial", "proving", "provocative", "provoke", "provoked", "provokes", "provoking", "prowess", "prude", "prudish", "pryor", "ps", "pseudo", "psyche", "psychedelic", "psychiatric", "psychiatrist", "psychic", "psycho", "psychological", "psychologically", "psychologist", "psychology", "psychopath", "psychopathic", "psychopaths", "psychos", "psychosis", "psychotic", "pub", "puberty", "pubescent", "public", "publicist", "publicity", "publicly", "publish", "published", "publisher", "pudding", "puddle", "puerile", "puerto", "puke", "pulitzer", "pull", "pulled", "pulling", "pullman", "pulls", "pulp", "pulse", "pumbaa", "pump", "pumped", "pumping", "pumpkin", "pun", "punch", "punched", "punches", "punching", "punchline", "punctuated", "punish", "punished", "punishing", "punishment", "punk", "punks", "puns", "pupil", "pupils", "puppet", "puppetry", "puppets", "puppies", "puppy", "purchase", "purchased", "purchasing", "pure", "purely", "purest", "purgatory", "puri", "purist", "purists", "purity", "purple", "purports", "purpose", "purposely", "purposes", "purse", "pursue", "pursued", "pursues", "pursuing", "pursuit", "push", "pushed", "pushes", "pushing", "pussy", "put", "putrid", "puts", "putting", "puzzle", "puzzled", "puzzles", "puzzling", "pyle", "pyramid", "pyrotechnics", "python", "quaid", "quaint", "qualified", "qualifies", "qualify", "qualities", "quality", "qualms", "quantity", "quantum", "quarter", "quarters", "quartet", "quasi", "queen", "queens", "queer", "quentin", "quest", "question", "questionable", "questioned", "questioning", "questions", "queue", "quibble", "quibbles", "quick", "quicker", "quickie", "quickly", "quid", "quiet", "quietly", "quincy", "quinn", "quintessential", "quips", "quirkiness", "quirks", "quirky", "quit", "quite", "quits", "quivering", "quo", "quotable", "quote", "quoted", "quotes", "quotient", "quoting", "ra", "rabbit", "rabbits", "rabid", "race", "races", "rachel", "racial", "racing", "racism", "racist", "rack", "racy", "radar", "radha", "radiant", "radiation", "radical", "radically", "radio", "radioactive", "radios", "radium", "rae", "raft", "rag", "rage", "ragged", "raging", "rags", "raid", "raider", "raiders", "railroad", "rails", "railway", "raimi", "rain", "rainbow", "rainer", "raines", "raining", "rains", "rainy", "raise", "raised", "raises", "raising", "raj", "raja", "rajpal", "rally", "ralph", "ram", "rama", "ramble", "rambling", "ramblings", "rambo", "rammed", "ramon", "ramones", "ramp", "rampage", "rampant", "ramsey", "ramshackle", "ran", "ranch", "rancid", "randall", "randolph", "random", "randomly", "randy", "rang", "range", "ranger", "rangers", "ranges", "ranging", "rank", "ranked", "ranking", "ranks", "ransom", "rant", "ranting", "rants", "rao", "raoul", "rap", "rape", "raped", "rapes", "rapid", "rapidly", "raping", "rapist", "rapists", "rapper", "rapture", "raquel", "rare", "rarely", "rarity", "rash", "rat", "rate", "rated", "rates", "rathbone", "rather", "rating", "ratings", "ratio", "rational", "rats", "ratso", "raul", "raunchy", "rave", "raven", "ravenous", "raves", "raving", "ravishing", "raw", "rawal", "ray", "raymond", "razor", "razzie", "re", "rea", "reach", "reached", "reaches", "reaching", "react", "reacted", "reacting", "reaction", "reactionary", "reactions", "reacts", "read", "reader", "readers", "readily", "reading", "readings", "reads", "ready", "reagan", "real", "realise", "realised", "realises", "realising", "realism", "realist", "realistic", "realistically", "realities", "reality", "realization", "realize", "realized", "realizes", "realizing", "really", "realm", "reaper", "rear", "reason", "reasonable", "reasonably", "reasoning", "reasons", "reb", "rebecca", "rebel", "rebellion", "rebellious", "rebels", "rebirth", "rebuilt", "recall", "recalled", "recalls", "recap", "recapture", "receive", "received", "receives", "receiving", "recent", "recently", "reception", "recipe", "recite", "reciting", "reckless", "reckon", "reclaim", "recluse", "recognisable", "recognise", "recognised", "recognition", "recognizable", "recognize", "recognized", "recognizes", "recognizing", "recollection", "recommend", "recommendable", "recommendation", "recommended", "recommending", "reconcile", "reconciliation", "reconsider", "reconstruction", "record", "recorded", "recorder", "recording", "recordings", "records", "recounting", "recover", "recovered", "recovering", "recovery", "recreate", "recreated", "recreating", "recreation", "recruit", "recruited", "recruiting", "recruits", "recurring", "recycled", "red", "redeem", "redeemable", "redeemed", "redeeming", "redeems", "redemption", "redford", "redgrave", "redhead", "redneck", "rednecks", "redone", "reduce", "reduced", "reduces", "redundancy", "redundant", "reed", "reefer", "reeks", "reel", "reeling", "reels", "reese", "reeve", "reeves", "refer", "reference", "referenced", "references", "referred", "referring", "refers", "refined", "reflect", "reflected", "reflecting", "reflection", "reflections", "reflective", "reflects", "reform", "refrain", "refreshing", "refreshingly", "refrigerator", "refuge", "refugee", "refugees", "refund", "refusal", "refuse", "refused", "refuses", "refusing", "regain", "regal", "regard", "regarded", "regarding", "regardless", "regards", "regime", "regina", "reginald", "region", "regional", "register", "registered", "regret", "regrets", "regrettably", "regretted", "regular", "regularly", "regulars", "rehab", "rehash", "rehashed", "rehashing", "rehearsal", "rehearsing", "reid", "reign", "reincarnated", "reincarnation", "reinforce", "reinforced", "reinforces", "reinhold", "reiser", "reject", "rejected", "rejecting", "rejection", "rejects", "rekindle", "relatable", "relate", "related", "relates", "relating", "relation", "relations", "relationship", "relationships", "relative", "relatively", "relatives", "relax", "relaxed", "relaxing", "release", "released", "releases", "releasing", "relegated", "relentless", "relentlessly", "relevance", "relevant", "reliable", "reliance", "relic", "relied", "relief", "relies", "relieve", "relieved", "religion", "religions", "religious", "religiously", "relish", "relive", "reliving", "reloaded", "reluctant", "reluctantly", "rely", "relying", "remade", "remain", "remainder", "remained", "remaining", "remains", "remake", "remakes", "remaking", "remark", "remarkable", "remarkably", "remarked", "remarks", "remastered", "remember", "remembered", "remembering", "remembers", "remind", "reminded", "reminder", "reminding", "reminds", "reminisce", "reminiscent", "reminiscing", "remorse", "remote", "remotely", "removal", "remove", "removed", "removing", "renaissance", "renamed", "render", "rendered", "rendering", "renders", "rendition", "rene", "renee", "renegade", "renewed", "renny", "reno", "renoir", "renowned", "rent", "rental", "rentals", "rented", "renting", "rents", "rep", "repair", "repeat", "repeated", "repeatedly", "repeating", "repeats", "repellent", "repertoire", "repetition", "repetitious", "repetitive", "replace", "replaced", "replacement", "replaces", "replacing", "replay", "replaying", "replete", "replicate", "replied", "replies", "reply", "report", "reported", "reportedly", "reporter", "reporters", "reporting", "reports", "reprehensible", "represent", "representation", "representative", "represented", "representing", "represents", "repressed", "repression", "reprise", "reprises", "reprising", "reptilian", "republic", "republican", "republicans", "repugnant", "repulsed", "repulsion", "repulsive", "reputation", "request", "requiem", "require", "required", "requirement", "requirements", "requires", "requiring", "requisite", "rerun", "reruns", "rescue", "rescued", "rescues", "rescuing", "research", "researched", "researcher", "researching", "resemblance", "resemble", "resembled", "resembles", "resembling", "resent", "resentment", "reservation", "reservations", "reserve", "reserved", "reservoir", "residence", "resident", "residents", "resides", "resigned", "resist", "resistance", "resists", "resolution", "resolve", "resolved", "resonance", "resonate", "resonates", "resort", "resorting", "resorts", "resounding", "resourceful", "resources", "respect", "respectable", "respected", "respectful", "respecting", "respective", "respectively", "respects", "respite", "respond", "responded", "responds", "response", "responses", "responsibilities", "responsibility", "responsible", "rest", "restaurant", "restaurants", "restless", "restoration", "restore", "restored", "restores", "restrained", "restraining", "restraint", "restricted", "restrictions", "restrictive", "restroom", "rests", "result", "resulted", "resulting", "results", "resume", "resurrect", "resurrected", "resurrection", "retail", "retain", "retained", "retaining", "retains", "retard", "retarded", "retelling", "rethink", "retire", "retired", "retirement", "retread", "retreat", "retribution", "retrieve", "retro", "retrospect", "retrospective", "return", "returned", "returning", "returns", "reubens", "reunion", "reunite", "reunited", "reunites", "rev", "reveal", "revealed", "revealing", "reveals", "revel", "revelation", "revelations", "revenge", "revered", "reverend", "reversal", "reverse", "reversed", "review", "reviewed", "reviewer", "reviewers", "reviewing", "reviews", "revisit", "revisited", "revisiting", "revival", "revive", "revived", "revolt", "revolting", "revolution", "revolutionary", "revolve", "revolved", "revolver", "revolves", "revolving", "revue", "reward", "rewarded", "rewarding", "rewards", "rewind", "reworking", "rewrite", "rewrites", "rex", "reynolds", "rhetoric", "rhine", "rhino", "rhode", "rhonda", "rhyme", "rhymes", "rhys", "rhythm", "ribisi", "ribs", "rican", "ricardo", "ricci", "rice", "rich", "richard", "richards", "richardson", "richer", "riches", "richest", "richie", "richly", "richness", "rick", "ricky", "rico", "rid", "ridden", "riddle", "riddled", "ride", "rider", "riders", "rides", "ridicule", "ridiculed", "ridicules", "ridiculous", "ridiculously", "ridiculousness", "riding", "ridley", "rife", "riff", "riffs", "rifle", "rifles", "right", "righteous", "rightful", "rightfully", "rightly", "rights", "rigid", "riley", "ring", "ringing", "ringo", "rings", "ringu", "ringwald", "rio", "riot", "riots", "rip", "ripe", "ripoff", "ripped", "ripper", "ripping", "rips", "rise", "risen", "rises", "risible", "rising", "risk", "risking", "risks", "risky", "risqu\u00e9", "rita", "ritchie", "ritter", "ritual", "rituals", "rival", "rivalry", "rivals", "river", "rivers", "riveted", "riveting", "rizzo", "rko", "roach", "road", "roads", "roam", "roaming", "roar", "roaring", "roasted", "rob", "robbed", "robber", "robbers", "robbery", "robbie", "robbing", "robbins", "robby", "robe", "robert", "roberta", "roberto", "roberts", "robertson", "robin", "robinson", "robocop", "robot", "robotic", "robots", "robs", "robust", "rochester", "rochon", "rock", "rocked", "rocker", "rocket", "rockets", "rockin", "rocking", "rocks", "rockwell", "rocky", "rod", "roddenberry", "roddy", "rode", "rodgers", "rodney", "rodriguez", "roeg", "roger", "rogers", "rogue", "rohmer", "roland", "role", "roles", "roll", "rolled", "roller", "rollicking", "rolling", "rolls", "rom", "roman", "romance", "romances", "romania", "romanian", "romano", "romantic", "romantically", "romanticism", "romanticized", "rome", "romeo", "romero", "romp", "romps", "romy", "ron", "ronald", "ronnie", "ronny", "roof", "rooker", "rookie", "room", "roommate", "roommates", "rooms", "rooney", "roosevelt", "root", "rooted", "rooting", "roots", "rope", "ropes", "rory", "rosanna", "rosario", "roscoe", "rose", "rosemary", "rosenstrasse", "roses", "rosie", "ross", "rosy", "rot", "roth", "rotoscoped", "rotoscoping", "rotten", "rotting", "rouge", "rough", "roughly", "round", "rounded", "rounding", "rounds", "rourke", "rousing", "route", "routine", "routinely", "routines", "row", "rowan", "rowdy", "rowlands", "roy", "royal", "royale", "royalty", "rpg", "rub", "rubbed", "rubber", "rubbing", "rubbish", "rubble", "ruby", "rudd", "rude", "rudimentary", "rudolph", "rudy", "rufus", "rug", "rugged", "ruin", "ruined", "ruining", "ruins", "rukh", "rule", "ruled", "ruler", "rules", "ruling", "rumble", "rumor", "rumored", "rumors", "run", "runaway", "rundown", "runner", "running", "runs", "runtime", "rupert", "rural", "ruse", "rush", "rushed", "rushes", "rushing", "russ", "russel", "russell", "russia", "russian", "russians", "russo", "rusty", "rut", "ruth", "ruthless", "ruthlessly", "ryan", "ryder", "saber", "sabotage", "sabretooth", "sabrina", "sabu", "saccharine", "sack", "sacred", "sacrifice", "sacrificed", "sacrifices", "sacrificing", "sad", "saddened", "sadder", "saddest", "saddled", "saddles", "sadism", "sadistic", "sadly", "sadness", "safe", "safely", "safer", "safety", "saffron", "saga", "saget", "said", "saif", "sail", "sailing", "sailor", "sailors", "saint", "saints", "sake", "salacious", "salad", "salary", "sale", "salem", "sales", "salesman", "sally", "salman", "salon", "saloon", "salt", "salute", "salvage", "salvation", "sam", "samantha", "same", "sammi", "sammo", "sammy", "sample", "samuel", "samurai", "san", "sanchez", "sanctimonious", "sand", "sanders", "sandler", "sandra", "sands", "sandwich", "sandy", "sane", "sang", "sanitized", "sanity", "sank", "sans", "sant", "santa", "sap", "sappy", "saps", "sara", "sarah", "sarandon", "sarcasm", "sarcastic", "sardonic", "sasquatch", "sassy", "sat", "satan", "satanic", "satellite", "satire", "satires", "satiric", "satirical", "satisfaction", "satisfactory", "satisfied", "satisfy", "satisfying", "saturated", "saturday", "saucer", "saucy", "savage", "savagely", "savages", "savant", "save", "saved", "saves", "saving", "savings", "savini", "savior", "savor", "savvy", "saw", "sawyer", "saxon", "say", "saying", "says", "scale", "scales", "scalpel", "scam", "scan", "scandal", "scandalous", "scandinavian", "scant", "scantily", "scar", "scarce", "scarcely", "scare", "scarecrow", "scared", "scares", "scarf", "scarface", "scarier", "scariest", "scaring", "scarlet", "scarlett", "scarred", "scars", "scary", "scathing", "scatman", "scattered", "scenario", "scenarios", "scene", "scenery", "scenes", "scenic", "scent", "sceptical", "schedule", "scheduled", "scheme", "schemes", "scheming", "schindler", "schizophrenic", "schlock", "schlocky", "schmaltz", "schmaltzy", "schneider", "scholar", "scholars", "scholarship", "school", "schooler", "schools", "schrader", "schtick", "schumacher", "schwartzman", "schwarzenegger", "sci", "science", "scientific", "scientist", "scientists", "scifi", "scooby", "scoop", "scope", "score", "scored", "scores", "scoring", "scorpion", "scorsese", "scotland", "scott", "scottish", "scout", "scrap", "scrappy", "scratch", "scratched", "scratches", "scratching", "scrawny", "scream", "screamed", "screaming", "screams", "screeching", "screen", "screened", "screening", "screenings", "screenplay", "screenplays", "screens", "screenwriter", "screenwriters", "screw", "screwball", "screwed", "screwing", "screws", "script", "scripted", "scripting", "scripts", "scripture", "scriptwriter", "scriptwriters", "scrooge", "scrubs", "scrutiny", "sctv", "scully", "sculpture", "scum", "se", "sea", "seagal", "seal", "sealed", "seals", "seaman", "seamless", "seamlessly", "sean", "search", "searched", "searches", "searching", "seas", "seaside", "season", "seasoned", "seasons", "seat", "seated", "seats", "seattle", "sebastian", "secluded", "second", "secondary", "secondly", "seconds", "secret", "secretary", "secretive", "secretly", "secrets", "section", "sections", "secular", "secure", "securing", "security", "seduce", "seduced", "seduces", "seducing", "seduction", "seductive", "see", "seed", "seeds", "seedy", "seeing", "seek", "seeking", "seeks", "seem", "seemed", "seeming", "seemingly", "seems", "seen", "sees", "seething", "segal", "segment", "segments", "segues", "seinfeld", "seldom", "select", "selected", "selection", "selections", "self", "selfish", "selfishness", "selfless", "sell", "seller", "sellers", "selling", "sells", "selma", "selves", "sematary", "semblance", "semester", "semi", "seminal", "sen", "senate", "senator", "send", "sending", "sends", "senior", "sensation", "sensational", "sensationalism", "sensationally", "sense", "senseless", "senses", "sensibilities", "sensibility", "sensible", "sensitive", "sensitively", "sensitivity", "sensual", "sensuality", "sent", "sentence", "sentenced", "sentences", "sentiment", "sentimental", "sentimentality", "sentiments", "sentinel", "separate", "separated", "separately", "separates", "separation", "sepia", "september", "sequel", "sequels", "sequence", "sequences", "serbia", "serbian", "serene", "sergeant", "sergeants", "sergio", "serial", "serials", "series", "serious", "seriously", "seriousness", "sermon", "serpent", "serum", "servant", "servants", "serve", "served", "serves", "service", "serviceable", "services", "serving", "sesame", "session", "sessions", "set", "seth", "sets", "setting", "settings", "settle", "settled", "settles", "settling", "setup", "seuss", "seven", "seventh", "seventies", "seventy", "several", "severe", "severed", "severely", "sewer", "sex", "sexed", "sexes", "sexier", "sexiest", "sexism", "sexist", "sexploitation", "sexual", "sexuality", "sexually", "sexy", "seymour", "sf", "sfx", "sg", "sgt", "sh", "shabby", "shack", "shade", "shades", "shadow", "shadowed", "shadows", "shadowy", "shady", "shaft", "shaggy", "shah", "shahid", "shake", "shaken", "shakes", "shakespeare", "shakespearean", "shaking", "shakti", "shaky", "shall", "shallow", "shambles", "shame", "shameful", "shamefully", "shameless", "shamelessly", "shane", "shanghai", "shannon", "shaolin", "shape", "shaped", "shapes", "shaq", "share", "shared", "shares", "sharif", "sharing", "shark", "sharks", "sharma", "sharon", "sharp", "sharply", "shatner", "shattered", "shattering", "shaun", "shave", "shaved", "shaving", "shaw", "shawn", "shawshank", "she", "shea", "shed", "sheds", "sheedy", "sheen", "sheep", "sheer", "sheesh", "sheet", "sheeta", "sheets", "shefali", "sheffer", "sheila", "shelf", "shell", "shelley", "shelly", "shelter", "sheltered", "shelton", "shelves", "shemp", "shenanigans", "shepard", "shepherd", "sheppard", "sheridan", "sheriff", "sherlock", "sherman", "sheryl", "shes", "shia", "shield", "shields", "shift", "shifting", "shifts", "shifty", "shin", "shine", "shines", "shining", "shintaro", "shiny", "ship", "shipped", "ships", "shirley", "shirt", "shirts", "shitty", "shivers", "sho", "shock", "shocked", "shocker", "shocking", "shockingly", "shocks", "shoddy", "shoe", "shoes", "shoestring", "sholay", "shone", "shook", "shoot", "shooter", "shooting", "shootings", "shootout", "shootouts", "shoots", "shop", "shopping", "shops", "shore", "short", "shortage", "shortcomings", "shortened", "shorter", "shortly", "shorts", "shot", "shotgun", "shots", "should", "shoulder", "shoulders", "shouldn", "shout", "shouted", "shouting", "shouts", "shove", "shoved", "shovel", "shoves", "shoving", "show", "showcase", "showcased", "showcases", "showcasing", "showdown", "showed", "shower", "showers", "showgirls", "showing", "showings", "shown", "shows", "showtime", "showy", "shred", "shreds", "shrek", "shrewd", "shriek", "shrieking", "shrill", "shrink", "shrouded", "shtick", "shudder", "shue", "shuffle", "shunned", "shut", "shutting", "shuttle", "shy", "sibling", "siblings", "sic", "sick", "sickening", "sickly", "sickness", "sid", "side", "sided", "sidekick", "sidekicks", "sides", "sidewalk", "sideways", "sidney", "siege", "siegfried", "sierra", "sigh", "sight", "sights", "sign", "signal", "signals", "signature", "signe", "signed", "significance", "significant", "significantly", "signing", "signs", "sigourney", "silence", "silences", "silent", "silently", "silents", "silhouette", "silk", "sillier", "silliest", "silliness", "silly", "silver", "silverman", "silverstone", "simba", "similar", "similarities", "similarity", "similarly", "simmons", "simon", "simone", "simple", "simpler", "simplest", "simplicity", "simplified", "simplistic", "simply", "simpson", "simpsons", "simulated", "simultaneously", "sin", "sinatra", "since", "sincere", "sincerely", "sincerity", "sinclair", "sinful", "sing", "singer", "singers", "singh", "singin", "singing", "single", "singles", "singleton", "sings", "singular", "singularly", "sinister", "sink", "sinking", "sinks", "sins", "sir", "siren", "sirens", "sirk", "siskel", "sissy", "sister", "sisters", "sit", "sitcom", "sitcoms", "site", "sites", "sith", "sits", "sitting", "situated", "situation", "situations", "siu", "six", "sixteen", "sixth", "sixties", "sixty", "size", "sized", "sizes", "skating", "skeleton", "skeletons", "skeptical", "skepticism", "sketch", "sketches", "sketchy", "skewed", "ski", "skies", "skill", "skilled", "skillful", "skillfully", "skills", "skimpy", "skin", "skinned", "skinner", "skinny", "skip", "skipped", "skipping", "skips", "skirt", "skirts", "skit", "skits", "skull", "skulls", "sky", "skywalker", "slack", "slacker", "slain", "slam", "slammed", "slams", "slang", "slant", "slap", "slapped", "slapping", "slaps", "slapstick", "slash", "slashed", "slasher", "slashers", "slashing", "slated", "slater", "slaughter", "slaughtered", "slaughterhouse", "slaughtering", "slave", "slavery", "slaves", "slavic", "slayer", "sleaze", "sleazy", "sledgehammer", "sleek", "sleep", "sleeper", "sleeping", "sleepless", "sleeps", "sleepwalkers", "sleepwalking", "sleepy", "sleeve", "slept", "sleuth", "slew", "slice", "sliced", "slicing", "slick", "slide", "slides", "sliding", "slight", "slightest", "slightly", "slim", "slime", "slimy", "slip", "slipped", "slipper", "slipping", "slips", "slit", "sloane", "slob", "slop", "sloppy", "slot", "sloth", "slow", "slowed", "slower", "slowing", "slowly", "slows", "sludge", "slug", "sluggish", "slugs", "slum", "slumber", "slumming", "slums", "slut", "slutty", "sly", "smack", "smacks", "small", "smaller", "smallest", "smallville", "smarmy", "smart", "smarter", "smartly", "smash", "smashed", "smashes", "smashing", "smell", "smells", "smile", "smiled", "smiles", "smiling", "smirk", "smith", "smitten", "smoke", "smokes", "smoking", "smooth", "smoothly", "smug", "smuggling", "smut", "snack", "snail", "snake", "snakes", "snap", "snapped", "snapping", "snappy", "snaps", "snapshot", "snare", "snarling", "snatch", "snatched", "snatchers", "sneak", "sneaking", "sneaks", "sneaky", "sneering", "snicker", "sniff", "sniffing", "sniper", "snipers", "snipes", "snippet", "snippets", "snl", "snob", "snobbish", "snobby", "snobs", "snooze", "snore", "snot", "snow", "snowman", "snowy", "snuck", "snuff", "so", "soaked", "soap", "soaps", "sob", "sobbing", "sober", "soccer", "social", "socialist", "socialite", "socially", "societal", "societies", "society", "socio", "sociological", "sociopath", "sock", "socks", "soderbergh", "sofia", "soft", "softcore", "software", "soil", "sol", "solaris", "sold", "soldier", "soldiers", "sole", "solely", "soles", "solicitor", "solid", "solidly", "soliloquy", "solitary", "solitude", "solo", "solomon", "solution", "solutions", "solve", "solved", "solves", "solving", "somber", "sombre", "some", "somebody", "someday", "somehow", "someone", "someones", "someplace", "somerset", "something", "somethings", "sometime", "sometimes", "somewhat", "somewhere", "son", "sondra", "song", "songs", "songwriter", "sonia", "sonny", "sons", "soo", "soon", "sooner", "sooo", "soooo", "sooooo", "sophia", "sophie", "sophisticated", "sophistication", "sophomore", "sophomoric", "soprano", "sopranos", "sorbonne", "sorcerer", "sorcery", "sordid", "sore", "sorely", "sorrow", "sorrows", "sorry", "sort", "sorta", "sorted", "sorts", "sorvino", "sought", "soul", "soulful", "soulless", "souls", "sound", "sounded", "sounding", "sounds", "soundtrack", "soundtracks", "soup", "sour", "source", "sources", "soutendijk", "south", "southern", "southwest", "soviet", "sox", "soylent", "sp", "space", "spacecraft", "spacek", "spaces", "spaceship", "spaceships", "spacey", "spade", "spader", "spades", "spaghetti", "spain", "spall", "span", "spanish", "spanning", "spans", "spare", "spared", "spark", "sparkle", "sparkling", "sparks", "sparring", "sparse", "spat", "spawn", "spawned", "speak", "speakeasy", "speaker", "speakers", "speaking", "speaks", "spear", "spears", "special", "specialist", "specialized", "specially", "specials", "specialty", "species", "specific", "specifically", "specifics", "spectacle", "spectacular", "spectacularly", "spectator", "spectators", "spectre", "spectrum", "speculate", "speculation", "speech", "speeches", "speechless", "speed", "speeding", "speeds", "spell", "spellbound", "spelled", "spelling", "spells", "spencer", "spend", "spending", "spends", "spent", "sperm", "spew", "spewing", "sphere", "sphinx", "spice", "spiced", "spider", "spiderman", "spiders", "spielberg", "spies", "spike", "spill", "spilled", "spilling", "spin", "spinal", "spine", "spinning", "spins", "spinster", "spiral", "spirals", "spirit", "spirited", "spirits", "spiritual", "spirituality", "spiritually", "spit", "spite", "spits", "spitting", "splash", "splashes", "splatter", "splattered", "splendid", "splendidly", "splendor", "spliced", "split", "splitting", "spock", "spoil", "spoiled", "spoiler", "spoilers", "spoiling", "spoils", "spoilt", "spoke", "spoken", "sponsored", "spontaneity", "spontaneous", "spontaneously", "spoof", "spoofing", "spoofs", "spook", "spooky", "spoon", "spoons", "sporadic", "sporadically", "sport", "sporting", "sports", "spot", "spotlight", "spots", "spotted", "spotting", "spouse", "spout", "spouting", "spouts", "sprawling", "spray", "sprayed", "spraying", "spread", "spreading", "spreads", "spree", "spring", "springer", "springs", "sprinkled", "spun", "spunky", "spur", "spy", "spying", "squad", "squalor", "squandered", "square", "squarely", "squares", "squeaky", "squeamish", "squeeze", "squirm", "sr", "ss", "st", "stab", "stabbed", "stabbing", "stability", "stable", "stabs", "stacey", "stack", "stacy", "staden", "stadium", "staff", "stage", "stagecoach", "staged", "stages", "staggering", "staging", "stagnant", "stagy", "stahl", "stained", "staircase", "stairs", "stairway", "stake", "stakes", "stale", "stalin", "stalk", "stalked", "stalker", "stalking", "stalks", "stallion", "stallone", "stalwart", "stamos", "stamp", "stamped", "stan", "stance", "stand", "standard", "standards", "standing", "standout", "standpoint", "stands", "standup", "stanley", "stanwyck", "staple", "stapleton", "star", "stardom", "stardust", "stare", "stared", "stares", "stargate", "staring", "stark", "starlet", "starr", "starred", "starring", "stars", "starship", "start", "started", "starters", "starting", "startled", "startling", "starts", "starvation", "starved", "starving", "starz", "stash", "state", "stated", "statement", "statements", "states", "statham", "static", "stating", "station", "stationed", "stations", "statistics", "statue", "statues", "stature", "status", "stay", "stayed", "staying", "stays", "steadily", "steady", "steal", "stealing", "steals", "stealth", "steam", "steaming", "steamy", "steel", "steele", "steep", "steer", "steiner", "stella", "stellar", "stem", "stems", "step", "stepfather", "stephanie", "stephen", "stephens", "stepmother", "stepped", "stepping", "steps", "stereo", "stereotype", "stereotyped", "stereotypes", "stereotypical", "stereotyping", "sterile", "sterling", "stern", "steve", "steven", "stevens", "stevenson", "stevie", "stew", "stewart", "stick", "sticking", "sticks", "sticky", "stiff", "stifler", "stifling", "stiles", "still", "stiller", "stills", "stilted", "stimulate", "stimulating", "sting", "stink", "stinker", "stinkers", "stinking", "stinks", "stint", "stir", "stirred", "stirring", "stitches", "stock", "stocks", "stockwell", "stoic", "stole", "stolen", "stoltz", "stomach", "stomping", "stone", "stoned", "stoner", "stones", "stood", "stooge", "stooges", "stoop", "stop", "stopped", "stopping", "stops", "storage", "store", "stores", "stories", "storm", "storms", "stormy", "story", "storyline", "storylines", "storyteller", "storytelling", "stowe", "straight", "straightforward", "strain", "strained", "strains", "strait", "strand", "stranded", "strands", "strange", "strangelove", "strangely", "strangeness", "stranger", "strangers", "strangest", "strangle", "strangled", "strangler", "strapped", "strategy", "strathairn", "stratten", "stratton", "strauss", "straw", "stray", "strays", "streak", "stream", "streep", "street", "streetcar", "streets", "streisand", "strength", "strengths", "stress", "stressed", "stressful", "stretch", "stretched", "stretches", "stretching", "stricken", "strict", "strictly", "stride", "strides", "strife", "strike", "strikes", "striking", "strikingly", "strindberg", "string", "strings", "strip", "stripes", "stripped", "stripper", "strippers", "stripping", "strips", "striptease", "strive", "strives", "striving", "strode", "stroke", "strokes", "stroll", "strong", "stronger", "strongest", "strongly", "struck", "structurally", "structure", "structured", "struggle", "struggled", "struggles", "struggling", "strung", "strut", "strutting", "stuart", "stubborn", "stubby", "stuck", "stud", "studded", "student", "students", "studied", "studies", "studio", "studios", "study", "studying", "stuff", "stuffed", "stuffy", "stumble", "stumbled", "stumbles", "stumbling", "stunk", "stunned", "stunning", "stunningly", "stunt", "stuntman", "stunts", "stupendous", "stupid", "stupider", "stupidest", "stupidity", "stupidly", "sturdy", "stuttering", "style", "styled", "styles", "stylised", "stylish", "stylistic", "stylistically", "stylized", "suave", "sub", "subconscious", "subdued", "subgenre", "subject", "subjected", "subjective", "subjects", "sublime", "subliminal", "submarine", "submission", "submit", "submitted", "subplot", "subplots", "subs", "subscribe", "subsequent", "subsequently", "substance", "substandard", "substantial", "substantive", "substitute", "substituting", "subtext", "subtitle", "subtitled", "subtitles", "subtle", "subtleties", "subtlety", "subtly", "suburb", "suburban", "suburbia", "suburbs", "subversive", "subway", "succeed", "succeeded", "succeeding", "succeeds", "success", "successes", "successful", "successfully", "succession", "successor", "succinctly", "succumb", "succumbs", "such", "suck", "sucked", "sucker", "suckered", "suckers", "sucking", "sucks", "sudden", "suddenly", "sue", "suffer", "suffered", "suffering", "suffers", "suffice", "sufficient", "sufficiently", "sugar", "sugary", "suggest", "suggested", "suggesting", "suggestion", "suggestive", "suggests", "suicidal", "suicide", "suicides", "suit", "suitable", "suitably", "suite", "suited", "suitor", "suits", "sullavan", "sullen", "sullivan", "sultry", "sum", "summarize", "summarized", "summary", "summation", "summed", "summer", "summers", "summing", "summon", "summoned", "sumptuous", "sums", "sun", "sundance", "sunday", "sung", "sunglasses", "sunk", "sunlight", "sunny", "sunrise", "sunset", "sunshine", "super", "superb", "superbly", "superficial", "superficiality", "superficially", "superfluous", "superhero", "superheroes", "superhuman", "superimposed", "superior", "superiority", "superiors", "superlative", "superman", "supermarket", "supernatural", "superpowers", "superstar", "superstars", "supervisor", "supplied", "supplies", "supply", "support", "supported", "supporter", "supporters", "supporting", "supportive", "supports", "suppose", "supposed", "supposedly", "suppress", "suppressed", "supremacy", "supreme", "supremely", "sure", "surely", "surf", "surface", "surfer", "surfers", "surfing", "surgeon", "surgery", "surly", "surpass", "surpassed", "surpasses", "surprise", "surprised", "surprises", "surprising", "surprisingly", "surreal", "surrealism", "surrealistic", "surrender", "surrogate", "surround", "surrounded", "surrounding", "surroundings", "surrounds", "surveillance", "survival", "survive", "survived", "survives", "surviving", "survivor", "survivors", "susan", "susannah", "suspect", "suspected", "suspects", "suspend", "suspended", "suspense", "suspenseful", "suspension", "suspicion", "suspicions", "suspicious", "suspiciously", "sustain", "sustained", "sutherland", "suv", "suzanne", "swallow", "swallowed", "swamp", "swanson", "swashbuckling", "swat", "sway", "swayed", "swayze", "swear", "swearing", "swears", "sweat", "sweater", "sweating", "sweaty", "sweden", "swedish", "sweeney", "sweep", "sweeping", "sweeps", "sweet", "sweetheart", "sweetly", "sweetness", "sweets", "swell", "swelling", "swept", "swift", "swim", "swimming", "swimsuit", "swine", "swing", "swinging", "swings", "swiss", "switch", "switched", "switches", "switching", "switzerland", "sword", "swordplay", "swords", "swordsman", "sworn", "sybil", "sydney", "sydow", "sykes", "sylvester", "sylvia", "symbol", "symbolic", "symbolism", "symbols", "sympathetic", "sympathies", "sympathise", "sympathize", "sympathy", "symphony", "symptoms", "sync", "synchronized", "syndrome", "synonymous", "synopsis", "synthesizer", "syrupy", "system", "systems", "table", "tables", "tabloid", "taboo", "taboos", "taciturn", "tack", "tacked", "tackle", "tackled", "tackles", "tackling", "tacky", "tactic", "tactics", "tad", "tadanobu", "tag", "tagged", "tagline", "tail", "tailor", "tailored", "tails", "tainted", "taiwanese", "takashi", "take", "taken", "takes", "taking", "tale", "talent", "talented", "talentless", "talents", "tales", "talk", "talkative", "talked", "talkie", "talkies", "talking", "talks", "talky", "tall", "taller", "tamblyn", "tame", "tamed", "tamer", "tan", "tang", "tangible", "tangled", "tango", "tank", "tanks", "tap", "tape", "taped", "tapes", "tapestry", "taping", "tapping", "taps", "tara", "tarantino", "target", "targeted", "targets", "tarkovsky", "tarnished", "tarot", "tarzan", "tashan", "task", "tasks", "taste", "tasteful", "tastefully", "tasteless", "tastes", "tasty", "tate", "tattoo", "tattooed", "taught", "taunting", "taut", "tautou", "tawdry", "tax", "taxes", "taxi", "taylor", "tcm", "tea", "teach", "teacher", "teachers", "teaches", "teaching", "teachings", "team", "teamed", "teaming", "teams", "teamwork", "tear", "tearful", "tearing", "tearjerker", "tears", "tease", "teased", "teases", "teasing", "tech", "technical", "technically", "technicolor", "technique", "techniques", "techno", "technological", "technology", "ted", "teddy", "tedious", "tediously", "tedium", "tee", "teen", "teenage", "teenaged", "teenager", "teenagers", "teens", "teeny", "teeth", "tel", "telegraphed", "telephone", "telescope", "televised", "television", "tell", "teller", "telling", "tells", "telly", "temper", "temperament", "temperature", "tempered", "tempest", "template", "temple", "tempo", "temporal", "temporarily", "temporary", "temptation", "tempted", "tempting", "ten", "tenant", "tenants", "tend", "tended", "tendencies", "tendency", "tender", "tenderness", "tending", "tends", "tennessee", "tennis", "tenor", "tens", "tense", "tension", "tensions", "tent", "tentative", "tenth", "tents", "tenuous", "tepid", "teri", "term", "termed", "terminal", "terminally", "terminator", "terms", "terrain", "terri", "terrible", "terribly", "terrific", "terrifically", "terrified", "terrifying", "terrifyingly", "territories", "territory", "terror", "terrorism", "terrorist", "terrorists", "terrorize", "terrorized", "terrorizing", "terry", "tess", "test", "testament", "tested", "testimony", "testing", "testosterone", "tests", "texan", "texas", "text", "textbook", "texts", "texture", "th", "thai", "thailand", "than", "thank", "thankful", "thankfully", "thankless", "thanks", "thanksgiving", "that", "thats", "thaw", "the", "theater", "theaters", "theatre", "theatres", "theatrical", "theatrically", "thee", "theft", "their", "theirs", "thelma", "them", "thematic", "thematically", "theme", "themed", "themes", "themselves", "then", "theo", "theodore", "theology", "theoretically", "theories", "theory", "therapist", "therapy", "there", "thereafter", "thereby", "therefore", "therein", "thereof", "theresa", "theron", "these", "thesis", "thespian", "they", "thick", "thief", "thieves", "thin", "thing", "things", "think", "thinking", "thinks", "thinly", "thinner", "third", "thirdly", "thirds", "thirst", "thirsty", "thirteen", "thirties", "thirty", "this", "tho", "thom", "thomas", "thompson", "thomson", "thorn", "thornton", "thorough", "thoroughly", "those", "thou", "though", "thought", "thoughtful", "thoughtfully", "thoughts", "thousand", "thousands", "thread", "threadbare", "threads", "threat", "threaten", "threatened", "threatening", "threatens", "threats", "three", "threesome", "threshold", "threw", "thrill", "thrilled", "thriller", "thrillers", "thrilling", "thrills", "throat", "throats", "throbbing", "throne", "through", "throughly", "throughout", "throw", "throwaway", "throwback", "throwing", "thrown", "throws", "thru", "thrust", "thug", "thugs", "thumb", "thumbs", "thunder", "thunderbirds", "thurman", "thus", "thwart", "thwarted", "tibet", "tibetan", "tick", "ticked", "ticket", "tickets", "ticking", "tide", "tides", "tidy", "tie", "tied", "tier", "tierney", "ties", "tiffany", "tiger", "tigerland", "tight", "tighter", "tightly", "til", "till", "tilly", "tim", "timberlake", "time", "timed", "timeless", "timely", "timer", "timers", "times", "timid", "timing", "timmy", "timon", "timothy", "tin", "tina", "tiny", "tip", "tips", "tire", "tired", "tiresome", "tiring", "tissue", "tissues", "titanic", "titans", "titillation", "title", "titled", "titles", "tits", "titular", "tng", "to", "toad", "toast", "tobe", "toby", "today", "todays", "todd", "toddler", "toe", "toes", "together", "toilet", "toilets", "token", "tokyo", "told", "tolerable", "tolerance", "tolerant", "tolerate", "tolerated", "tolkien", "toll", "tom", "tomato", "tomatoes", "tomb", "tomboy", "tomei", "tomlinson", "tommy", "tomorrow", "ton", "tone", "toned", "tones", "tongue", "toni", "tonight", "tons", "tony", "too", "took", "tool", "toolbox", "toole", "tools", "tooth", "top", "topic", "topical", "topics", "topless", "topped", "topping", "tops", "torch", "torches", "tore", "torment", "tormented", "tormentors", "torments", "torn", "tornado", "toro", "toronto", "torso", "torture", "tortured", "tortures", "torturing", "torturous", "tos", "toss", "tossed", "tosses", "tossing", "total", "totally", "toting", "toto", "touch", "touched", "touches", "touching", "touchy", "tough", "tougher", "toughest", "toughness", "tour", "touring", "tourist", "tourists", "tournament", "tourneur", "touted", "tow", "toward", "towards", "towel", "tower", "towering", "towers", "town", "towns", "townsend", "townsfolk", "townspeople", "toxic", "toy", "toys", "trace", "traced", "traces", "tracey", "track", "tracked", "tracking", "tracks", "tract", "tracy", "trade", "trademark", "trademarks", "trader", "traders", "trades", "trading", "tradition", "traditional", "traditionally", "traditions", "traffic", "trafficking", "tragedies", "tragedy", "tragic", "tragically", "trail", "trailer", "trailers", "trails", "train", "trained", "trainer", "training", "trains", "trait", "traitor", "traits", "tramp", "trance", "transcend", "transcends", "transfer", "transfered", "transferred", "transfixed", "transform", "transformation", "transformations", "transformed", "transformers", "transforming", "transforms", "transition", "transitions", "translate", "translated", "translates", "translation", "translator", "transmission", "transmitted", "transparent", "transpires", "transplant", "transport", "transported", "transsexual", "transvestite", "transylvania", "trap", "trapped", "trappings", "traps", "trash", "trashed", "trashy", "trauma", "traumas", "traumatic", "traumatized", "travel", "traveled", "traveler", "travelers", "traveling", "travelled", "travelling", "travelogue", "travels", "travesty", "travis", "travolta", "treacherous", "tread", "treason", "treasure", "treasured", "treasury", "treat", "treated", "treating", "treatment", "treats", "treaty", "tree", "trees", "trek", "trelkovsky", "tremendous", "tremendously", "trench", "trend", "trends", "trendy", "trent", "trevor", "trey", "triad", "triads", "trial", "trials", "triangle", "tribal", "tribe", "tribeca", "tribes", "tribulations", "tribute", "trick", "tricked", "tricks", "tricky", "tried", "trier", "tries", "trifle", "trigger", "trilogy", "trim", "trinity", "trio", "trip", "tripe", "triple", "tripping", "trippy", "trips", "tristan", "trite", "triumph", "triumphant", "triumphs", "trivia", "trivial", "trojan", "troll", "troma", "troop", "troopers", "troops", "trophy", "tropical", "trot", "trouble", "troubled", "troubles", "troublesome", "troubling", "troupe", "trousers", "troy", "truck", "trucks", "true", "truer", "truffaut", "truly", "truman", "trump", "trumpet", "trunk", "trust", "trusted", "trusting", "trusty", "truth", "truthful", "truthfully", "truths", "try", "trying", "tsui", "tub", "tube", "tubes", "tucci", "tucker", "tuesday", "tug", "tully", "tumbling", "tumultuous", "tune", "tuned", "tunes", "tung", "tuning", "tunnel", "tunnels", "turbulent", "turd", "turf", "turgid", "turkey", "turkeys", "turkish", "turmoil", "turn", "turned", "turner", "turning", "turns", "turtle", "turturro", "tv", "twain", "twelve", "twenties", "twentieth", "twenty", "twice", "twilight", "twin", "twinkle", "twins", "twist", "twisted", "twisting", "twists", "twisty", "twit", "two", "tycoon", "tying", "tyler", "tyne", "type", "typecast", "typed", "types", "typical", "typically", "typing", "tyranny", "tyrone", "tyson", "uber", "ubiquitous", "ufo", "ugh", "ugliest", "ugliness", "ugly", "uh", "uk", "ulli", "ulrich", "ultimate", "ultimately", "ultimatum", "ultra", "um", "uma", "umm", "un", "una", "unabashed", "unable", "unacceptable", "unanswered", "unappealing", "unarmed", "unattractive", "unavailable", "unavoidable", "unaware", "unbalanced", "unbearable", "unbearably", "unbeatable", "unbeknownst", "unbelievable", "unbelievably", "unbiased", "unborn", "uncanny", "uncaring", "uncensored", "uncertain", "uncertainty", "uncle", "unclear", "uncomfortable", "uncomfortably", "uncommon", "uncompromising", "unconnected", "unconscious", "unconsciously", "uncontrollable", "unconventional", "unconvincing", "uncover", "uncovered", "uncovering", "uncovers", "uncredited", "uncut", "undead", "undemanding", "undeniable", "undeniably", "under", "underage", "underbelly", "undercover", "undercurrent", "undercut", "underdeveloped", "underdog", "underestimated", "undergo", "undergoes", "underground", "underlines", "underlings", "underlying", "undermine", "undermined", "undermines", "undermining", "underneath", "underpinnings", "underrated", "underscores", "understand", "understandable", "understandably", "understanding", "understands", "understated", "understatement", "understood", "undertone", "undertones", "underused", "underwater", "underwear", "underwhelming", "underwood", "underworld", "underwritten", "undeserved", "undeveloped", "undisputed", "undistinguished", "undone", "undoubtedly", "undressed", "undying", "unease", "uneasy", "unedited", "uneducated", "unemotional", "unemployed", "unemployment", "unengaging", "uneven", "uneventful", "unexciting", "unexpected", "unexpectedly", "unexplained", "unfair", "unfairly", "unfaithful", "unfamiliar", "unfathomable", "unfeeling", "unfilmable", "unfinished", "unflinching", "unfocused", "unfold", "unfolded", "unfolding", "unfolds", "unforgettable", "unforgivable", "unforgiving", "unfortunate", "unfortunately", "unfriendly", "unfulfilled", "unfunny", "unger", "unhappily", "unhappy", "unharmed", "unhealthy", "unheard", "unhinged", "uniform", "uniformly", "uniforms", "unimaginative", "unimportant", "unimpressed", "unimpressive", "uninhibited", "uninitiated", "uninspired", "uninspiring", "unintelligent", "unintelligible", "unintended", "unintentional", "unintentionally", "uninterested", "uninteresting", "uninvolving", "union", "unique", "uniquely", "uniqueness", "unit", "unite", "united", "units", "unity", "universal", "universally", "universe", "university", "unjustly", "unknowingly", "unknown", "unknowns", "unleash", "unleashed", "unleashes", "unless", "unlikable", "unlike", "unlikeable", "unlikely", "unlimited", "unlock", "unlucky", "unmemorable", "unmistakable", "unmotivated", "unnamed", "unnatural", "unnecessarily", "unnecessary", "unnerving", "unnoticed", "unobtrusive", "unofficial", "unoriginal", "unorthodox", "unpleasant", "unpopular", "unprecedented", "unpredictability", "unpredictable", "unpretentious", "unprofessional", "unquestionably", "unrated", "unravel", "unraveling", "unravels", "unreal", "unrealistic", "unreasonable", "unrecognizable", "unrelated", "unrelenting", "unremarkable", "unresolved", "unrest", "unsatisfied", "unsatisfying", "unsavory", "unscathed", "unscrupulous", "unseen", "unsettling", "unsolved", "unsophisticated", "unspeakable", "unspoken", "unstable", "unstoppable", "unsubtle", "unsuccessful", "unsuccessfully", "unsung", "unsure", "unsurprisingly", "unsuspecting", "unsympathetic", "untalented", "unthinkable", "until", "untimely", "unto", "untouched", "untrue", "unusual", "unusually", "unwanted", "unwatchable", "unwavering", "unwilling", "unwillingness", "unwittingly", "unworthy", "up", "upbeat", "upbringing", "upcoming", "update", "updated", "upgrade", "upheaval", "uplifting", "upon", "upper", "upright", "uproar", "ups", "upscale", "upset", "upsets", "upsetting", "upside", "upstairs", "uptight", "upward", "upwards", "urban", "urbane", "urge", "urgency", "urgent", "urges", "urging", "ursula", "us", "usa", "usage", "use", "used", "useful", "useless", "user", "users", "uses", "usher", "using", "ussr", "ustinov", "usual", "usually", "utah", "utility", "utilize", "utilized", "utilizes", "utilizing", "utmost", "utopia", "utter", "uttered", "uttering", "utterly", "utters", "uwe", "vacant", "vacation", "vacuous", "vacuum", "vader", "vagina", "vague", "vaguely", "vain", "val", "valentine", "valerie", "valiant", "valid", "validity", "valley", "valuable", "value", "values", "vamp", "vampire", "vampires", "van", "vance", "vancouver", "vanessa", "vanilla", "vanish", "vanished", "vanishes", "vanishing", "vanities", "vanity", "vapid", "vargas", "variable", "variant", "variation", "variations", "varied", "varies", "variety", "various", "vartan", "vary", "varying", "vast", "vastly", "vaudeville", "vaughn", "vault", "vaults", "vcr", "ve", "veers", "vega", "vegas", "vegetables", "vehicle", "vehicles", "veidt", "veil", "veiled", "vein", "veins", "velvet", "vendetta", "veneer", "venezuela", "venezuelan", "vengeance", "vengeful", "venice", "venom", "venomous", "venoms", "vent", "ventura", "venture", "ventures", "venturing", "venue", "venus", "vera", "verbal", "verbally", "verdict", "verge", "verhoeven", "verify", "verisimilitude", "veritable", "verite", "vermin", "verne", "vernon", "veronica", "versa", "versatile", "versatility", "verse", "version", "versions", "versus", "vertigo", "verve", "very", "vessel", "vet", "veteran", "veterans", "vets", "vh1", "vhs", "via", "viable", "vibe", "vibes", "vibrant", "vic", "vice", "vicious", "vicki", "victim", "victimized", "victims", "victor", "victoria", "victorian", "victory", "vidal", "video", "videos", "videotape", "vidor", "vienna", "vietnam", "vietnamese", "view", "viewed", "viewer", "viewers", "viewing", "viewings", "viewpoint", "viewpoints", "views", "viggo", "vigilante", "vignettes", "vijay", "viking", "vikings", "vile", "villa", "village", "villagers", "villages", "villain", "villainess", "villainous", "villains", "vince", "vincent", "vincente", "vincenzo", "vinnie", "vinny", "vintage", "vinyl", "violated", "violation", "violence", "violent", "violently", "violin", "vipul", "virgin", "virginal", "virginia", "virginity", "virgins", "virtual", "virtually", "virtue", "virtues", "virtuous", "virulent", "virus", "visage", "visceral", "visconti", "visible", "visibly", "vision", "visionary", "visions", "visit", "visited", "visiting", "visitor", "visitors", "visits", "vistas", "visual", "visually", "visuals", "vital", "vitality", "viva", "vivacious", "vivian", "vivid", "vividly", "vixen", "vocabulary", "vocal", "vocals", "vogue", "voice", "voiced", "voices", "void", "voight", "volatile", "volcano", "volume", "volumes", "volunteer", "volunteers", "vomit", "vomiting", "von", "vonnegut", "voodoo", "vortex", "vote", "voted", "voters", "votes", "voting", "vows", "voyage", "voyager", "voyeur", "voyeurism", "vs", "vu", "vulcan", "vulgar", "vulgarity", "vulnerability", "vulnerable", "wackiness", "wacko", "wacky", "waco", "wafer", "wage", "wager", "wages", "wagner", "wagon", "wahlberg", "waif", "wailing", "waist", "wait", "waited", "waiter", "waiting", "waitress", "waits", "wake", "wakes", "waking", "wal", "wales", "walk", "walked", "walken", "walker", "walking", "walks", "wall", "wallace", "wallach", "wallet", "wallop", "wallow", "walls", "wally", "walmart", "walrus", "walsh", "walt", "walter", "walters", "wan", "wanda", "wander", "wandered", "wandering", "wanders", "wang", "wanna", "wannabe", "wannabes", "want", "wanted", "wanting", "wants", "war", "ward", "warden", "wardrobe", "wards", "warehouse", "warfare", "warhol", "warhols", "warlord", "warm", "warming", "warmly", "warms", "warmth", "warn", "warned", "warner", "warners", "warning", "warnings", "warns", "warp", "warped", "warrant", "warranted", "warrants", "warren", "warring", "warrior", "warriors", "wars", "wartime", "warts", "wary", "was", "wash", "washed", "washing", "washington", "wasn", "wasnt", "waste", "wasted", "wasteland", "waster", "wastes", "wasting", "watch", "watchable", "watched", "watcher", "watchers", "watches", "watching", "water", "watered", "waterfall", "waterfront", "waterman", "waters", "watson", "watts", "wave", "waves", "waving", "wax", "way", "wayans", "wayne", "ways", "wayward", "wb", "we", "weak", "weaker", "weakest", "weakness", "weaknesses", "wealth", "wealthy", "weapon", "weaponry", "weapons", "wear", "wearing", "wears", "weary", "weather", "weave", "weaver", "weaves", "weaving", "web", "weber", "website", "websites", "webster", "wed", "wedding", "weddings", "wee", "weed", "week", "weekend", "weekly", "weeks", "weep", "weeping", "weepy", "weigh", "weight", "weir", "weird", "weirder", "weirdest", "weirdly", "weirdness", "weirdo", "weissmuller", "weisz", "welch", "welcome", "welcomed", "welfare", "well", "weller", "welles", "wellington", "wells", "welsh", "wendigo", "wendt", "wendy", "went", "were", "weren", "werewolf", "werewolves", "werner", "wes", "wesley", "west", "western", "westerners", "westerns", "wet", "whack", "whacked", "whale", "wham", "what", "whatever", "whatnot", "whats", "whatsoever", "wheel", "wheelchair", "wheels", "when", "whenever", "where", "whereabouts", "whereas", "whereby", "wherein", "wherever", "whether", "whew", "which", "whichever", "while", "whilst", "whim", "whimsical", "whine", "whining", "whiny", "whip", "whipped", "whips", "whirlwind", "whiskey", "whisper", "whistling", "whit", "white", "whites", "whiz", "who", "whoa", "whodunit", "whodunnit", "whoever", "whole", "wholeheartedly", "wholesome", "wholly", "whom", "whomever", "whoopi", "whore", "whores", "whose", "why", "wicked", "wickedly", "wicker", "wide", "widely", "wider", "widescreen", "widmark", "widow", "widowed", "widower", "wielding", "wife", "wig", "wigs", "wikipedia", "wilcox", "wild", "wilde", "wilder", "wilderness", "wildest", "wildlife", "wildly", "will", "willard", "willed", "willem", "william", "williams", "williamson", "willie", "willing", "willingly", "willingness", "willis", "wills", "willy", "wilson", "wily", "wimp", "wimpy", "win", "wince", "winchester", "wincing", "wind", "winded", "winding", "window", "windows", "winds", "windshield", "wine", "winfrey", "wing", "winger", "wings", "wink", "winkler", "winner", "winners", "winning", "wins", "winslet", "winston", "winter", "winters", "wipe", "wiped", "wipes", "wiping", "wire", "wires", "wisconsin", "wisdom", "wise", "wisecracking", "wisecracks", "wisely", "wiser", "wish", "wished", "wishes", "wishful", "wishing", "wistful", "wit", "witch", "witchcraft", "witches", "with", "withdrawn", "witherspoon", "within", "without", "withstand", "witless", "witness", "witnessed", "witnesses", "witnessing", "wits", "witted", "witty", "wives", "wizard", "wizards", "wobbly", "woeful", "woefully", "woke", "woken", "wolf", "wolfe", "wolfman", "wolves", "woman", "womanizer", "womanizing", "women", "won", "wonder", "wondered", "wonderful", "wonderfully", "wondering", "wonderland", "wonders", "wondrous", "wong", "wont", "woo", "wood", "woodard", "wooden", "woodhouse", "woodland", "woods", "woodward", "woody", "wool", "word", "wordless", "words", "wore", "work", "worked", "worker", "workers", "working", "workings", "works", "world", "worldly", "worlds", "worldwide", "worm", "worms", "worn", "woronov", "worried", "worries", "worry", "worrying", "worse", "worship", "worships", "worst", "worth", "worthless", "worthwhile", "worthy", "would", "wouldn", "wound", "wounded", "wounds", "woven", "wow", "wrap", "wrapped", "wrapping", "wraps", "wrath", "wray", "wreak", "wreck", "wrecked", "wrecking", "wrecks", "wrenching", "wrestler", "wrestling", "wretched", "wright", "wrinkle", "wrist", "wrists", "write", "writer", "writers", "writes", "writhing", "writing", "writings", "written", "wrong", "wronged", "wrongly", "wrote", "wrought", "wry", "wtc", "wtf", "wu", "wuhrer", "wuss", "ww", "ww2", "wwe", "wwf", "wwi", "wwii", "www", "wyatt", "wyoming", "ya", "yacht", "yadav", "yahoo", "yakuza", "yanked", "yankee", "yankees", "yaphet", "yard", "yards", "yarn", "yawn", "yawning", "yay", "ye", "yea", "yeah", "year", "yearn", "yearning", "yearns", "years", "yell", "yelled", "yelling", "yellow", "yells", "yep", "yes", "yesterday", "yet", "yeti", "yikes", "yo", "yoda", "yokai", "york", "yorker", "yorkers", "you", "young", "younger", "youngest", "youngster", "youngsters", "your", "yours", "yourself", "yourselves", "youssef", "youth", "youthful", "youths", "youtube", "yr", "yrs", "yu", "yuck", "yuen", "yugoslavia", "yuk", "yukon", "yul", "yummy", "yup", "yuppie", "yuzna", "yvonne", "zabriskie", "zach", "zack", "zadora", "zane", "zany", "zatoichi", "zealand", "zelah", "zelda", "zemeckis", "zen", "zenith", "zentropa", "zero", "zest", "zeta", "zhang", "zimmer", "zip", "zizek", "zodiac", "zoe", "zombi", "zombie", "zombies", "zone", "zoo", "zoom", "zooms", "zorro", "zu", "zucker"], "features": {"360": {"effect": -3.867584673526408e-05, "value": 0.01352227235107801}, "657": {"effect": 0.0629160310821044, "value": 0.05009949161945003}, "683": {"effect": 0.050451999097126964, "value": 0.021969597968899236}, "748": {"effect": 0.49296089863965126, "value": 0.2200993055409461}, "842": {"effect": -0.005340064853428063, "value": 0.013062600291489975}, "1022": {"effect": 0.031876135524370464, "value": 0.07663068100018434}, "1239": {"effect": 0.03962784635343933, "value": 0.0}, "1283": {"effect": 0.1874684852602638, "value": 0.0}, "1425": {"effect": 0.0006527168039591077, "value": 0.016749654643478114}, "1451": {"effect": 0.010907755510523746, "value": 0.019242354370922}, "1470": {"effect": 0.0014222571140528144, "value": 0.0}, "1575": {"effect": 0.1840335765483179, "value": 0.042039546735442475}, "1843": {"effect": 0.03365740337501302, "value": 0.0}, "1897": {"effect": 0.010669619043178391, "value": 0.06539273936264223}, "3430": {"effect": -0.015967447967630236, "value": 0.025886051778449336}, "3502": {"effect": 0.00014777057896362325, "value": 0.0}, "4687": {"effect": 0.002800879419139044, "value": 0.0}, "5049": {"effect": -0.0037936018815791775, "value": 0.0}, "5214": {"effect": -0.13521468310074006, "value": 0.05562939133413393}, "5270": {"effect": -0.035263020676497815, "value": 0.0}, "5579": {"effect": -0.005030033285478375, "value": 0.0}, "6119": {"effect": -0.007192527939479485, "value": 0.0}, "6530": {"effect": 0.11246107575751037, "value": 0.02524958549449904}, "6715": {"effect": 0.000808035602365702, "value": 0.0}, "6851": {"effect": 0.0066870206811397645, "value": 0.008335288676050026}, "7059": {"effect": 0.03459027318486913, "value": 0.06873376728803905}, "7182": {"effect": 0.00819776806901015, "value": 0.0}, "7480": {"effect": 0.003414487975955506, "value": 0.09572774415020982}, "7712": {"effect": 0.005417103164550662, "value": 0.0}, "7899": {"effect": 0.03812656119812106, "value": 0.10015173182697128}, "7921": {"effect": 0.27932071711705814, "value": 0.23203610648036407}, "8131": {"effect": -0.03372426692649736, "value": 0.029721723073279752}, "8359": {"effect": 0.00011033052619057948, "value": 0.0}, "8585": {"effect": -0.018309122280652068, "value": 0.0}, "8807": {"effect": -0.04413905933687989, "value": 0.0}, "8809": {"effect": -0.007449708636395567, "value": 0.0}, "8964": {"effect": -0.010527437282963827, "value": 0.02558689097315441}, "9431": {"effect": 0.02205012442014671, "value": 0.0}, "9547": {"effect": 0.0018152915717760127, "value": 0.0}, "9662": {"effect": -0.011291898497386516, "value": 0.06342273001712061}, "9976": {"effect": 0.08575653881576896, "value": 0.0}, "10035": {"effect": -0.004184971035079132, "value": 0.03223731062857674}, "10043": {"effect": -0.0445120728030368, "value": 0.015885674188052507}, "10168": {"effect": 0.009122713981068986, "value": 0.0}, "10236": {"effect": 0.023159234057400953, "value": 0.0}, "10284": {"effect": 0.0077640001674516524, "value": 0.01000262960209087}, "10700": {"effect": -0.012227232101763385, "value": 0.0}, "10957": {"effect": -0.056734660106382506, "value": 0.02771714940562143}, "11036": {"effect": 0.021536036699581533, "value": 0.0}, "11039": {"effect": 0.005021800753502497, "value": 0.0}, "12798": {"effect": 0.02034089138581319, "value": 0.0}, "12950": {"effect": -0.001308279168397706, "value": 0.0}, "13969": {"effect": 0.006099037139521314, "value": 0.014480575726102743}, "14136": {"effect": 0.015329863538830178, "value": 0.0}, "14302": {"effect": 0.004952638272004777, "value": 0.0}, "14638": {"effect": 0.020427412295524076, "value": 0.0}, "14701": {"effect": 0.006864929355396388, "value": 0.0}, "14710": {"effect": 0.012676845777001748, "value": 0.00979005411106482}, "14721": {"effect": 0.03325685596341988, "value": 0.0}, "14726": {"effect": 0.007365622051324772, "value": 0.0}, "14741": {"effect": 0.022801881678545254, "value": 0.0292293251973179}, "14862": {"effect": -0.10922426908733458, "value": 0.14138783549402914}, "15380": {"effect": 0.000779169941313584, "value": 0.0}, "15676": {"effect": 0.010028171610520555, "value": 0.021904011473460577}, "15917": {"effect": 0.04181692475036045, "value": 0.01529724707634492}, "15924": {"effect": 0.04238153795822657, "value": 0.0}, "16007": {"effect": 0.09156001778425175, "value": 0.04679423802075724}, "16086": {"effect": 0.020804331268947485, "value": 0.0}, "16111": {"effect": 0.023750076224384357, "value": 0.025317042007963624}, "16211": {"effect": -0.021099160122405296, "value": 0.0}, "16240": {"effect": -0.002792889509547814, "value": 0.0}, "16252": {"effect": 0.010196280193499423, "value": 0.0}, "16255": {"effect": 0.10315596019591007, "value": 0.0}, "16260": {"effect": 0.012057091671217095, "value": 0.0}}, "plot_cmap": "RdBu", "labelMargin": 20}),
|
||
document.getElementById('iZGIOF1HLF09NUIH0F160')
|
||
);
|
||
</script>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [7]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="nb">print</span><span class="p">(</span><span class="s2">"Positive"</span> <span class="k">if</span> <span class="n">y_test</span><span class="p">[</span><span class="n">ind</span><span class="p">]</span> <span class="k">else</span> <span class="s2">"Negative"</span><span class="p">,</span> <span class="s2">"Review:"</span><span class="p">)</span>
|
||
<span class="nb">print</span><span class="p">(</span><span class="n">corpus_test</span><span class="p">[</span><span class="n">ind</span><span class="p">])</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="output_wrapper">
|
||
<div class="output">
|
||
|
||
|
||
<div class="output_area">
|
||
|
||
<div class="prompt"></div>
|
||
|
||
|
||
<div class="output_subarea output_stream output_stdout output_text">
|
||
<pre>Positive Review:
|
||
"Twelve Monkeys" is odd and disturbing, yet being so clever and intelligent at the same time. It cleverly jumps between future and the past, and the story it tells is about a man named James Cole, a convict, who is sent back to the past to gather information about a man-made virus that wiped out 5 billion of the human population on the planet back in 1996. At first Cole is sent back to the year 1990 by accident and by misfortune he is taken to a mental institution where he tries to explain his purpose and where he meets a psychiatrist Dr. Kathryn Railly who tries to help him and a patient named Jeffrey Goines, the insane son of a famous scientist. Being provocative and somehow so sensible, dealing with and between reason and madness, the movie is a definite masterpiece in the history of science-fiction films.<br /><br />The story is just fantastic. It's so original and so entertaining. The screenplay itself written by David and Janet Peoples is inspired by a movie named "La Jetée" (1962) which I haven't seen, but I must thank the director and writer of the movie, Chris Marker, for giving such an inspiration for the writers of "Twelve Monkeys". I read a little about "La Jetée", it's not the same story but it has the same idea, so this is not just a copy of it. David and Janet Peoples have transformed this great deal of inspiration to a modernized story, which tells about this urgent need for people to find a solution for maintaining human existence and it does it in a so beautiful and a realistic way that it's a guaranteed thrill ride from the beginning till the end. The music used in the film is odd and somehow so funny and amusing it doesn't really fit until you really get it and when you do you realise that it's so compelling, composed by Paul Buckmaster.<br /><br />Terry Gilliam, who we remember from Monty Python, as the director of the movie was a real surprise for me, as I really never thought him as a director type of a person. I know he has directed movies before, but I really couldn't believe that he could make something this magnificent. It shouldn't be a surprise though, as he does an amazing job. You can still sense that same weirdness as in the Python's, but for me the directing is pretty much flawless though in its odd way of describing things it also makes some scenes strangely disturbing. Yes, it is indeed odd, weird, bizarre and disturbing, so it also makes the movie a bit heavy too, so the weak minded viewers will probably find it hard to watch the movie all the way through. It's not as heavy as you could imagine, but it just has these certain things which in their own purpose are sometimes pretty severe to watch. Despite that, the movie holds this pure intelligence inside it and through flashbacks, dreams, jumps between the past and the future it mixes up the whole story in a very clever way and it doesn't even make the plot messy in any part, though it does need concentration from the viewer after all.<br /><br />What comes to acting, well the movie doesn't even go wrong there. The role of James Cole is played by the mighty Bruce Willis, who probably does his best role performance yet to date. Now people may disagree with me, as he did some fine job in for example "The Sixth Sense" as well, but for me the role of James Cole was so ideal for Willis and he performs it incredibly well. The character is very well written too, yet performed even better. Cole starts to question his own existence and he deals with himself, starting to question his actual time of living, trying to survive and find the crucial missing piece of the puzzle. By hardship he starts to loose his faith, questioning if he can even trust or believe himself. Other role performances worth mentioning are the performances of Madeleine Stow and Brad Pitt. Stow plays the role of Kathryn Railly, the psychiatrist of James Cole, who sees something strangely familiar in Cole and decides to help him to deal with his madness. She somehow starts to believe Cole's story but as a believer of science she tries to find solutions through it and tries to deal with reason when it comes to unbelievable things. Brad Pitt is so good in the role of Jeffrey Goines and he also does one of his best role performances yet to date. The insane yet hilarious personality of the character brought Pitt even an Oscar nomination for it, so I guess I'm not praising the honestly fabulous performance for nothing.<br /><br />All in all, "Twelve Monkeys" is a great science-fiction experience and it will surely be a recommendation for everyone, especially for the sci-fi fans. It includes brilliant characters and superb role performances, especially from Willis and Pitt, and an original and an entertaining story which forms a plot that's so intelligent and clever. Yet being that already mentioned weird and disturbing it definitely captures the viewer's attention by making it interesting and witty. It's also an explosive thriller and it has romance in it too, so it's all that in same package and that makes it one of the best sci-fi motion pictures I've ever seen. Through the odd yet terrific vision of Terry Gilliam it manages to keep itself in balance despite the somewhat bumpy yet somehow stable ride. Hard to explain really, but that's how it is, it's mind blowing.
|
||
|
||
</pre>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
|
||
</div>
|
||
<div class="inner_cell">
|
||
<div class="text_cell_render border-box-sizing rendered_html">
|
||
<h3 id="Explain-the-second-review's-sentiment-prediction">Explain the second review's sentiment prediction<a class="anchor-link" href="#Explain-the-second-review's-sentiment-prediction">¶</a></h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [8]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">ind</span> <span class="o">=</span> <span class="mi">1</span>
|
||
<span class="n">shap</span><span class="o">.</span><span class="n">force_plot</span><span class="p">(</span>
|
||
<span class="n">explainer</span><span class="o">.</span><span class="n">expected_value</span><span class="p">,</span> <span class="n">shap_values</span><span class="p">[</span><span class="n">ind</span><span class="p">,:],</span> <span class="n">X_test_array</span><span class="p">[</span><span class="n">ind</span><span class="p">,:],</span>
|
||
<span class="n">feature_names</span><span class="o">=</span><span class="n">vectorizer</span><span class="o">.</span><span class="n">get_feature_names</span><span class="p">()</span>
|
||
<span class="p">)</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="output_wrapper">
|
||
<div class="output">
|
||
|
||
|
||
<div class="output_area">
|
||
|
||
<div class="prompt output_prompt">Out[8]:</div>
|
||
|
||
|
||
|
||
<div class="output_html rendered_html output_subarea output_execute_result">
|
||
|
||
<div id='iFA6ZQAI0YO66OPOXJGUN'>
|
||
<div style='color: #900; text-align: center;'>
|
||
<b>Visualization omitted, Javascript library not loaded!</b><br>
|
||
Have you run `initjs()` in this notebook? If this notebook was from another
|
||
user you must also trust this notebook (File -> Trust notebook). If you are viewing
|
||
this notebook on github the Javascript has been stripped for security. If you are using
|
||
JupyterLab this error is because a JupyterLab extension has not yet been written.
|
||
</div></div>
|
||
<script>
|
||
if (window.SHAP) SHAP.ReactDom.render(
|
||
SHAP.React.createElement(SHAP.AdditiveForceVisualizer, {"outNames": ["output value"], "baseValue": -0.09826881834578277, "outValue": -0.5933923868764157, "link": "identity", "featureNames": ["00", "000", "007", "01", "02", "05", "06", "10", "100", "1000", "101", "102", "10th", "11", "110", "11th", "12", "120", "12th", "13", "13th", "14", "140", "14th", "15", "150", "16", "16mm", "17", "17th", "18", "180", "1800", "18th", "19", "1912", "1914", "1920", "1920s", "1922", "1924", "1927", "1928", "1929", "1930", "1930s", "1931", "1932", "1933", "1934", "1935", "1936", "1937", "1938", "1939", "1940", "1940s", "1941", "1942", "1943", "1944", "1945", "1946", "1947", "1948", "1949", "1950", "1950s", "1951", "1952", "1953", "1954", "1955", "1956", "1957", "1958", "1959", "1960", "1960s", "1961", "1962", "1963", "1964", "1965", "1966", "1967", "1968", "1969", "1970", "1970s", "1971", "1972", "1973", "1974", "1975", "1976", "1977", "1978", "1979", "1980", "1980s", "1981", "1982", "1983", "1984", "1985", "1986", "1987", "1988", "1989", "1990", "1990s", "1991", "1992", "1993", "1994", "1995", "1996", "1997", "1998", "1999", "19th", "1st", "20", "200", "2000", "2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "20s", "20th", "21", "21st", "22", "23", "24", "25", "250", "26", "27", "28", "29", "2d", "2nd", "30", "300", "3000", "30s", "31", "32", "33", "34", "35", "36", "360", "37", "39", "3d", "3rd", "40", "400", "40s", "42", "42nd", "43", "44", "45", "47", "48", "49", "4th", "50", "500", "50s", "51", "52", "54", "55", "56", "58", "5th", "60", "600", "60s", "64", "65", "66", "68", "6th", "70", "700", "70s", "71", "73", "74", "747", "75", "76", "77", "78", "79", "7th", "80", "80s", "81", "82", "83", "84", "85", "86", "87", "88", "89", "8mm", "8th", "90", "90210", "90s", "91", "911", "93", "94", "95", "96", "97", "98", "99", "9th", "aag", "aames", "aaron", "abandon", "abandoned", "abandoning", "abandonment", "abandons", "abbot", "abbott", "abc", "abducted", "abduction", "abe", "abhay", "abhorrent", "abiding", "abilities", "ability", "able", "ably", "aboard", "abominable", "abomination", "aboriginal", "aborted", "abortion", "abound", "abounds", "about", "above", "abraham", "abroad", "abrupt", "abruptly", "absence", "absent", "absolute", "absolutely", "absorb", "absorbed", "absorbing", "abstract", "absurd", "absurdist", "absurdity", "absurdly", "abu", "abundance", "abundant", "abuse", "abused", "abusing", "abusive", "abysmal", "abysmally", "abyss", "academic", "academy", "accent", "accented", "accents", "accept", "acceptable", "acceptance", "accepted", "accepting", "accepts", "access", "accessible", "accident", "accidental", "accidentally", "accidents", "acclaim", "acclaimed", "accolades", "accompanied", "accompanies", "accompaniment", "accompany", "accompanying", "accomplice", "accomplish", "accomplished", "accomplishes", "accomplishment", "accomplishments", "according", "accordingly", "account", "accountant", "accounts", "accuracy", "accurate", "accurately", "accusations", "accuse", "accused", "accuses", "accustomed", "ace", "achieve", "achieved", "achievement", "achievements", "achieves", "achieving", "achilles", "aching", "achingly", "acid", "ackland", "acknowledge", "acknowledged", "acquaintance", "acquaintances", "acquainted", "acquire", "acquired", "acres", "acrobatics", "across", "act", "acted", "acting", "action", "actioner", "actions", "active", "actively", "activist", "activists", "activities", "activity", "actor", "actors", "actress", "actresses", "acts", "actual", "actuality", "actually", "ad", "ada", "adam", "adama", "adams", "adapt", "adaptation", "adaptations", "adapted", "adapting", "adaption", "add", "added", "addict", "addicted", "addiction", "addictive", "addicts", "adding", "addition", "additional", "additionally", "additions", "addled", "address", "addressed", "addresses", "addressing", "adds", "adelaide", "adele", "adept", "adequate", "adequately", "adjective", "adjust", "adjusted", "administration", "admirable", "admirably", "admiration", "admire", "admired", "admirer", "admirers", "admires", "admiring", "admission", "admit", "admits", "admitted", "admittedly", "admitting", "ado", "adolescence", "adolescent", "adolescents", "adolf", "adopt", "adopted", "adoption", "adopts", "adorable", "adoration", "adore", "adored", "adoring", "adrenaline", "adrian", "adrienne", "ads", "adult", "adulterous", "adultery", "adulthood", "adults", "advance", "advanced", "advancement", "advances", "advancing", "advantage", "advantages", "adventure", "adventures", "adventurous", "adversaries", "adversary", "adversity", "advert", "advertised", "advertisement", "advertisements", "advertising", "advice", "advise", "advised", "adviser", "advises", "advocate", "aerial", "aesthetic", "aesthetically", "aesthetics", "afar", "affable", "affair", "affairs", "affect", "affected", "affecting", "affection", "affectionate", "affections", "affects", "affinity", "affleck", "afflicted", "affluent", "afford", "afforded", "afghanistan", "afi", "afloat", "afore", "aforementioned", "afraid", "africa", "african", "africans", "afro", "after", "afterlife", "aftermath", "afternoon", "aftertaste", "afterthought", "afterward", "afterwards", "afterwords", "again", "against", "agatha", "age", "aged", "agency", "agenda", "agent", "agents", "ages", "aggravating", "aggression", "aggressive", "aggressively", "aghast", "aging", "agnes", "ago", "agonizing", "agony", "agree", "agreed", "agreeing", "agreement", "agrees", "ah", "ahead", "ahem", "ahh", "ai", "aid", "aide", "aided", "aids", "aiello", "ailing", "aim", "aime", "aimed", "aiming", "aimless", "aimlessly", "aims", "ain", "air", "aircraft", "aired", "airhead", "airing", "airline", "airplane", "airplanes", "airport", "airs", "aisle", "ajay", "aka", "akin", "akira", "akshay", "akshaye", "al", "ala", "alain", "alan", "alarm", "alarming", "alas", "alaska", "alastair", "alba", "albeit", "albert", "alberto", "album", "albums", "alcohol", "alcoholic", "alcoholism", "alec", "alejandro", "alert", "alex", "alexander", "alexandra", "alexandre", "alexis", "alfre", "alfred", "ali", "alias", "alibi", "alice", "alicia", "alien", "alienate", "alienated", "alienating", "alienation", "aliens", "alike", "alison", "alive", "all", "allan", "alleged", "allegedly", "allegorical", "allegory", "allen", "allende", "allergic", "alley", "alleys", "alliance", "allied", "allies", "alligator", "allison", "allow", "allowed", "allowing", "allows", "alluded", "allure", "alluring", "allusions", "ally", "almighty", "almost", "alone", "along", "alongside", "aloof", "alot", "aloud", "alpha", "already", "alright", "also", "altar", "alter", "altered", "altering", "alternate", "alternately", "alternates", "alternating", "alternative", "although", "altman", "altogether", "alumni", "alvin", "always", "am", "amanda", "amateur", "amateurish", "amateurs", "amato", "amaze", "amazed", "amazement", "amazes", "amazing", "amazingly", "amazon", "ambassador", "amber", "ambiance", "ambient", "ambiguity", "ambiguous", "ambition", "ambitions", "ambitious", "ambulance", "amc", "amelie", "america", "american", "americana", "americanized", "americans", "amiable", "amicus", "amid", "amidst", "amitabh", "amityville", "ammunition", "amnesia", "amok", "among", "amongst", "amoral", "amos", "amount", "amounts", "ample", "amrita", "amuse", "amused", "amusement", "amuses", "amusing", "amusingly", "amy", "an", "ana", "anachronistic", "anaconda", "anakin", "anal", "analogy", "analysis", "analyze", "analyzed", "analyzing", "anamorphic", "anastasia", "anatomy", "ancestor", "ancestors", "ancestry", "anchor", "anchorman", "anchors", "ancient", "and", "anders", "anderson", "andie", "andre", "andrea", "andrei", "andrew", "andrews", "andy", "ang", "angel", "angela", "angeles", "angelic", "angelina", "angelo", "angels", "anger", "angered", "angers", "angie", "angle", "angles", "anglo", "angry", "angst", "anguish", "anil", "animal", "animals", "animate", "animated", "animation", "animations", "animator", "animators", "anime", "aniston", "anita", "ankle", "ann", "anna", "annals", "anne", "annie", "anniversary", "announce", "announced", "announcement", "announcer", "announces", "annoy", "annoyance", "annoyed", "annoying", "annoyingly", "annoys", "annual", "anonymous", "anorexic", "another", "answer", "answered", "answering", "answers", "ant", "antagonist", "antagonists", "anthem", "anthology", "anthony", "anthropologist", "anti", "antichrist", "anticipate", "anticipated", "anticipating", "anticipation", "anticlimactic", "antics", "antidote", "antihero", "antiquated", "antithesis", "anton", "antonio", "antonioni", "ants", "antwerp", "antwone", "anxiety", "anxious", "anxiously", "any", "anybody", "anyhow", "anymore", "anyone", "anything", "anytime", "anyway", "anyways", "anywhere", "apart", "apartheid", "apartment", "apartments", "apathetic", "ape", "apes", "aplenty", "aplomb", "apocalypse", "apocalyptic", "apollo", "apologies", "apologise", "apologize", "apology", "appalled", "appalling", "appallingly", "apparent", "apparently", "appeal", "appealed", "appealing", "appeals", "appear", "appearance", "appearances", "appeared", "appearing", "appears", "appease", "appetite", "applaud", "applauded", "applause", "apple", "applegate", "applied", "applies", "apply", "applying", "appointed", "appreciate", "appreciated", "appreciates", "appreciating", "appreciation", "appreciative", "apprentice", "approach", "approached", "approaches", "approaching", "appropriate", "appropriately", "approval", "approve", "approved", "approximately", "april", "apt", "aptly", "aquarium", "arab", "arabia", "arabian", "arabic", "arabs", "aragorn", "arbitrary", "arc", "arcane", "arch", "archaeological", "archaeologist", "archaic", "archer", "archetypal", "archetype", "archibald", "archie", "architect", "architecture", "archive", "archives", "arcs", "arctic", "arden", "ardent", "arduous", "are", "area", "areas", "aren", "arena", "argentina", "argento", "arguably", "argue", "argued", "argues", "arguing", "argument", "arguments", "ariel", "arise", "arises", "arising", "aristocracy", "aristocrat", "aristocratic", "aristocrats", "arizona", "ark", "arkin", "arm", "armageddon", "armand", "armed", "armies", "armor", "arms", "armstrong", "army", "arnie", "arnold", "around", "aroused", "arquette", "arrange", "arranged", "arrangement", "arrangements", "arranges", "array", "arrest", "arrested", "arresting", "arrival", "arrive", "arrived", "arrives", "arriving", "arrogance", "arrogant", "arrow", "arrows", "art", "artemisia", "artful", "artfully", "arthouse", "arthur", "article", "articles", "articulate", "artifacts", "artificial", "artificially", "artist", "artistic", "artistically", "artistry", "artists", "arts", "artsy", "artwork", "arty", "aryan", "as", "asano", "ascertain", "ash", "ashamed", "ashes", "ashley", "ashton", "asia", "asian", "asians", "aside", "asides", "asin", "asinine", "ask", "asked", "askey", "asking", "asks", "asleep", "aspect", "aspects", "aspirations", "aspire", "aspires", "aspiring", "ass", "assassin", "assassinate", "assassinated", "assassination", "assassins", "assault", "assaulted", "assaults", "assembled", "assembly", "assert", "assertion", "asserts", "assessment", "asset", "assets", "assigned", "assignment", "assignments", "assist", "assistance", "assistant", "assistants", "assisted", "associate", "associated", "associates", "association", "assorted", "assortment", "assume", "assumed", "assumes", "assuming", "assumption", "assumptions", "assurance", "assure", "assured", "astaire", "astonished", "astonishing", "astonishingly", "astor", "astounding", "astoundingly", "astray", "astronaut", "astronauts", "astute", "asylum", "at", "ate", "atheist", "athlete", "athletes", "athletic", "atkins", "atlantic", "atlantis", "atmosphere", "atmospheric", "atomic", "atop", "atrocious", "atrocities", "atrocity", "attached", "attachment", "attack", "attacked", "attacker", "attackers", "attacking", "attacks", "attain", "attempt", "attempted", "attempting", "attempts", "attenborough", "attend", "attendance", "attendant", "attended", "attending", "attends", "attention", "attentions", "attic", "attire", "attitude", "attitudes", "attorney", "attract", "attracted", "attracting", "attraction", "attractions", "attractive", "attracts", "attribute", "attributed", "attributes", "atwill", "atypical", "aubrey", "auction", "audacious", "audacity", "audiard", "audible", "audience", "audiences", "audio", "audition", "auditioning", "audrey", "august", "aunt", "auntie", "aunts", "aura", "aural", "aussie", "austen", "austere", "austin", "australia", "australian", "australians", "austria", "austrian", "auteur", "authentic", "authenticity", "author", "authorities", "authority", "authors", "autistic", "auto", "autobiographical", "autobiography", "autograph", "automatic", "automatically", "automobile", "automobiles", "autopsy", "autumn", "ava", "avail", "available", "avalanche", "avant", "avenge", "avenger", "avengers", "avenging", "avenue", "average", "avid", "aviv", "avoid", "avoided", "avoiding", "avoids", "aw", "await", "awaited", "awaiting", "awaits", "awake", "awaken", "awakened", "awakening", "awakens", "award", "awarded", "awards", "aware", "awareness", "away", "awe", "awed", "aweigh", "awesome", "awesomely", "awful", "awfully", "awfulness", "awhile", "awkward", "awkwardly", "awkwardness", "awry", "ax", "axe", "axis", "azaria", "aztec", "babble", "babbling", "babe", "babes", "babies", "baby", "babylon", "babysitter", "bacall", "bach", "bachchan", "bachelor", "back", "backbone", "backdrop", "backdrops", "backed", "background", "backgrounds", "backing", "backlash", "backs", "backseat", "backstage", "backstory", "backup", "backward", "backwards", "backwoods", "backyard", "bacon", "bad", "badass", "baddie", "baddies", "badge", "badly", "badness", "baffled", "baffles", "baffling", "bag", "bagdad", "baggage", "baghdad", "bags", "bahrain", "bailey", "baio", "bait", "baked", "baker", "bakshi", "bakula", "balance", "balanced", "balances", "balancing", "balcony", "bald", "baldwin", "ball", "ballad", "ballads", "ballet", "balloon", "ballroom", "balls", "balsam", "baltimore", "bam", "bambi", "banal", "banality", "banana", "band", "banderas", "bandit", "bands", "bandwagon", "bane", "bang", "banging", "bangs", "banjo", "bank", "banker", "bankrupt", "bankruptcy", "banks", "banned", "banner", "banquet", "banter", "baptist", "bar", "barbara", "barbarian", "barbaric", "barbed", "barbie", "barbra", "bard", "bare", "barely", "barf", "bargain", "barker", "barkin", "barking", "barman", "barn", "barnes", "barney", "baron", "barr", "barrage", "barred", "barrel", "barrels", "barren", "barrier", "barriers", "barry", "barrymore", "bars", "bart", "bartender", "barton", "base", "baseball", "based", "baseketball", "basement", "bases", "bash", "bashed", "bashing", "basic", "basically", "basics", "basil", "basing", "basinger", "basis", "basket", "basketball", "bass", "bassinger", "bastard", "bastards", "bat", "bates", "bath", "bathing", "bathroom", "bathtub", "batman", "bats", "battered", "battle", "battlefield", "battles", "battlestar", "battling", "bauer", "bava", "bawdy", "baxter", "bay", "baywatch", "bbc", "bc", "be", "beach", "beaches", "beads", "beam", "beams", "bean", "beans", "bear", "bearable", "beard", "bearded", "bearing", "bears", "beast", "beasts", "beat", "beaten", "beating", "beatings", "beatles", "beatrice", "beats", "beatty", "beau", "beauties", "beautiful", "beautifully", "beauty", "beaver", "became", "because", "beck", "beckham", "beckinsale", "becky", "become", "becomes", "becoming", "bed", "bedknobs", "bedroom", "beds", "bee", "beef", "been", "beer", "beers", "beery", "bees", "beetle", "before", "beforehand", "befriend", "befriended", "befriends", "beg", "began", "beggars", "begged", "begging", "begin", "beginning", "beginnings", "begins", "begs", "begun", "behalf", "behave", "behaved", "behaves", "behaving", "behavior", "behaviors", "behaviour", "beheading", "behind", "behold", "being", "beings", "bel", "bela", "beleaguered", "belgian", "belgium", "belief", "beliefs", "believability", "believable", "believably", "believe", "believed", "believer", "believers", "believes", "believing", "bell", "belle", "bells", "belly", "belong", "belonged", "belonging", "belongs", "beloved", "below", "belt", "belts", "belushi", "bemused", "ben", "bench", "benchmark", "bend", "bender", "bending", "beneath", "benefit", "benefited", "benefits", "benet", "benevolent", "benicio", "benign", "benjamin", "bennett", "benny", "benson", "bent", "bentley", "beowulf", "bereft", "berenger", "bergman", "berkeley", "berkley", "berkowitz", "berlin", "bernadette", "bernard", "bernie", "bernsen", "bernstein", "berry", "berserk", "bert", "beset", "beside", "besides", "besieged", "best", "bestiality", "bet", "beta", "beth", "bethany", "betray", "betrayal", "betrayed", "betrays", "bets", "betsy", "bette", "better", "bettie", "betting", "betty", "between", "beverly", "bevy", "beware", "bewildered", "bewitched", "beyond", "bi", "bias", "biased", "bible", "biblical", "bickering", "bicycle", "bid", "bidding", "big", "bigelow", "bigfoot", "bigger", "biggest", "biggs", "bigoted", "bigotry", "bike", "biker", "bikers", "bikini", "biko", "bill", "billboards", "billed", "billie", "billing", "billion", "bills", "billy", "bimbo", "bin", "binder", "binding", "bing", "binks", "binoche", "bio", "biographical", "biographies", "biography", "biological", "biopic", "bird", "birds", "birth", "birthday", "bisexual", "bishop", "bit", "bitch", "bitching", "bitchy", "bite", "bites", "biting", "bits", "bitten", "bitter", "bitterly", "bitterness", "bittersweet", "biz", "bizarre", "bizarrely", "black", "blackadder", "blackboard", "blackie", "blackmail", "blacks", "blackwood", "blade", "blades", "blah", "blaine", "blair", "blaise", "blake", "blame", "blamed", "blames", "blaming", "blanc", "bland", "blank", "blanket", "blanks", "blaring", "blasphemous", "blast", "blasted", "blasting", "blasts", "blatant", "blatantly", "blaxploitation", "blazing", "bleached", "bleak", "bleed", "bleeding", "blend", "blended", "blending", "blends", "bless", "blessed", "blessing", "blethyn", "blew", "blind", "blinded", "blindly", "blindness", "blink", "blinking", "bliss", "bloated", "blob", "block", "blockbuster", "blockbusters", "blocked", "blocking", "blocks", "bloke", "blond", "blonde", "blondell", "blondes", "blood", "bloodbath", "blooded", "bloodless", "bloodshed", "bloodthirsty", "bloody", "bloom", "blossom", "blossomed", "blossoms", "blouse", "blow", "blowing", "blown", "blows", "blue", "blues", "blunders", "blunt", "bluntly", "blur", "blurb", "blurred", "blurry", "blush", "bluth", "bo", "board", "boarding", "boards", "boast", "boasting", "boasts", "boat", "boats", "bob", "bobby", "bodies", "bodily", "body", "bodyguard", "bog", "bogart", "bogdanovich", "bogged", "boggles", "boggling", "bogie", "bogs", "bogus", "bohemian", "boil", "boiled", "boiling", "boils", "bold", "bolivia", "boll", "bollywood", "bolt", "bolts", "boman", "bomb", "bombastic", "bombed", "bomber", "bombers", "bombing", "bombings", "bombs", "bon", "bona", "bonanza", "bond", "bondage", "bonding", "bonds", "bone", "bones", "bonham", "bonkers", "bonnie", "bont", "bonus", "boo", "boob", "boobs", "booby", "boogeyman", "boogie", "book", "books", "boom", "boomers", "boone", "boorish", "boorman", "boost", "boot", "booth", "boothe", "boots", "booty", "booze", "border", "bordering", "borderline", "borders", "bore", "bored", "boredom", "bores", "boring", "boris", "born", "borne", "borrow", "borrowed", "borrowing", "borrows", "bosnia", "boss", "bosses", "boston", "bosworth", "botched", "both", "bother", "bothered", "bothering", "bothers", "bots", "bottle", "bottles", "bottom", "bought", "bounce", "bouncing", "bouncy", "bound", "boundaries", "bounds", "bounty", "bourgeois", "bourne", "bout", "bow", "bowels", "bowie", "bowl", "bowling", "bows", "box", "boxed", "boxer", "boxes", "boxing", "boy", "boyd", "boyer", "boyfriend", "boyfriends", "boyhood", "boyish", "boyle", "boys", "br", "bra", "brad", "bradford", "bradley", "brady", "brag", "braga", "brain", "braindead", "brained", "brainer", "brainless", "brains", "brainwashed", "brainy", "brakes", "branagh", "branch", "branches", "brand", "brando", "brandon", "brash", "brashear", "brass", "brat", "bratty", "braun", "bravado", "brave", "braveheart", "bravely", "bravery", "bravo", "bravura", "brawl", "brazil", "brazilian", "bread", "break", "breakdown", "breaker", "breakfast", "breaking", "breakout", "breaks", "breakthrough", "breakup", "breast", "breasted", "breasts", "breath", "breathe", "breathes", "breathing", "breathless", "breathtaking", "breathtakingly", "breckinridge", "bred", "breed", "breeding", "breeze", "breezy", "brenda", "brendan", "brennan", "brent", "bret", "brett", "brewster", "brian", "brick", "bricks", "bride", "brides", "bridge", "bridges", "bridget", "brief", "briefcase", "briefly", "brien", "brigade", "briggs", "bright", "brighter", "brightest", "brightly", "brigitte", "brilliance", "brilliant", "brilliantly", "brimming", "bring", "bringing", "brings", "brink", "brisk", "brisson", "brit", "britain", "british", "britney", "brits", "brittany", "broad", "broadcast", "broadcasting", "broader", "broadly", "broadway", "brock", "broderick", "brody", "broke", "broken", "bronson", "bronte", "bronx", "brooding", "brooke", "brooklyn", "brooks", "broomsticks", "bros", "brosnan", "brothel", "brother", "brotherhood", "brothers", "brought", "brow", "brown", "browning", "browsing", "bruce", "bruckheimer", "brunette", "bruno", "brush", "brushes", "brutal", "brutality", "brutally", "brute", "brutish", "bryan", "bryant", "brynner", "bs", "bsg", "btk", "btw", "bubble", "bubblegum", "bubbles", "bubbly", "buck", "bucket", "buckets", "bucks", "bud", "budapest", "buddhist", "buddies", "budding", "buddy", "budget", "budgetary", "budgeted", "budgets", "buff", "buffalo", "buffoon", "buffs", "buffy", "bug", "buggy", "bugs", "build", "building", "buildings", "builds", "buildup", "built", "bulb", "bulging", "bulk", "bull", "bulldog", "bullet", "bullets", "bullied", "bullies", "bullock", "bulls", "bullshit", "bully", "bullying", "bum", "bumbling", "bump", "bumped", "bumping", "bumps", "bums", "bunch", "bunker", "bunny", "bunuel", "burden", "burdened", "bureau", "bureaucracy", "burgeoning", "burgess", "burial", "buried", "buries", "burke", "burlesque", "burn", "burned", "burnett", "burning", "burns", "burnt", "burroughs", "burrows", "burst", "bursting", "bursts", "burstyn", "burt", "burton", "bury", "burying", "bus", "busby", "buscemi", "buses", "busey", "bush", "bushes", "business", "businesses", "businessman", "businessmen", "bust", "busted", "buster", "busting", "busy", "but", "butch", "butcher", "butchered", "butchering", "butler", "butt", "butter", "butterfly", "button", "buttons", "butts", "buy", "buying", "buys", "buzz", "by", "bye", "bygone", "byrne", "byron", "ca", "caan", "cab", "cabaret", "cabin", "cabinet", "cable", "cad", "caesar", "cafe", "cafeteria", "caf\u00e9", "cage", "caged", "cages", "cagney", "cain", "caine", "cake", "cal", "calamity", "calculated", "calculating", "calendar", "caliber", "calibre", "california", "call", "callahan", "called", "calling", "callous", "calls", "calm", "calmly", "calvin", "cam", "camaraderie", "cambodia", "cambodian", "camcorder", "came", "camel", "cameo", "cameos", "camera", "cameraman", "cameras", "camerawork", "cameron", "camp", "campaign", "campbell", "camper", "campers", "campfire", "campiness", "camping", "camps", "campus", "campy", "can", "canada", "canadian", "canadians", "canal", "cancel", "canceled", "cancelled", "cancels", "cancer", "candid", "candidate", "candidates", "candle", "candles", "candy", "cane", "canine", "canned", "cannes", "cannibal", "cannibalism", "cannibalistic", "cannibals", "cannon", "cannons", "cannot", "canoe", "canon", "cans", "cant", "canvas", "canyon", "cap", "capabilities", "capability", "capable", "capably", "capacity", "cape", "caper", "capital", "capitalism", "capitalist", "capitalize", "capote", "capra", "caprica", "caprice", "capshaw", "capsule", "capt", "captain", "captivate", "captivated", "captivating", "captive", "captors", "capture", "captured", "captures", "capturing", "car", "carbon", "card", "cardboard", "cardinal", "cards", "care", "cared", "career", "careers", "carefree", "careful", "carefully", "careless", "carelessly", "carell", "cares", "caretaker", "carey", "carface", "cargo", "caribbean", "caricature", "caricatures", "caring", "carl", "carla", "carlisle", "carlito", "carlo", "carlos", "carlton", "carlyle", "carmen", "carnage", "carnal", "carnival", "carnosaur", "carol", "carole", "carolina", "caroline", "caron", "carpenter", "carpet", "carradine", "carrey", "carriage", "carrie", "carried", "carrier", "carries", "carroll", "carrot", "carry", "carrying", "cars", "carson", "cart", "carter", "cartoon", "cartoonish", "cartoons", "cartoony", "carved", "carving", "cary", "casablanca", "case", "cases", "casey", "cash", "cashier", "cashing", "casino", "casper", "cassandra", "cassavetes", "cassel", "cassidy", "cassie", "cast", "casted", "casting", "castle", "castles", "castro", "casts", "casual", "casually", "casualty", "cat", "catalog", "catalogue", "catalyst", "catastrophe", "catastrophic", "catch", "catches", "catching", "catchphrase", "catchy", "cate", "categories", "categorized", "category", "cater", "catering", "catharsis", "cathartic", "catherine", "catholic", "cathy", "caton", "cats", "cattle", "catwoman", "caucasian", "caught", "cause", "caused", "causes", "causing", "caution", "cautionary", "cavalry", "cave", "caveman", "cavemen", "caves", "cavorting", "cbc", "cbs", "cd", "cease", "ceases", "cecil", "cedric", "ceiling", "celebrate", "celebrated", "celebrates", "celebrating", "celebration", "celebrities", "celebrity", "celeste", "celestial", "celie", "celine", "cell", "cellar", "cells", "celluloid", "celtic", "cement", "cemetery", "censor", "censored", "censors", "censorship", "cent", "center", "centered", "centerpiece", "centers", "central", "centre", "centred", "centres", "cents", "centuries", "century", "ceo", "cerebral", "ceremonies", "ceremony", "certain", "certainly", "certainty", "certificate", "cesar", "cetera", "cg", "cgi", "chad", "chagrin", "chahine", "chain", "chained", "chains", "chainsaw", "chair", "chairman", "chairs", "chalk", "challenge", "challenged", "challenger", "challenges", "challenging", "chamber", "chamberlain", "champagne", "champion", "champions", "championship", "chan", "chance", "chances", "chandler", "chaney", "chang", "change", "changed", "changes", "changing", "channel", "channeling", "channels", "chant", "chanting", "chaos", "chaotic", "chap", "chaplin", "chapter", "chapters", "character", "characterisation", "characterisations", "characterised", "characteristic", "characteristics", "characterization", "characterizations", "characterized", "characters", "charade", "charge", "charged", "charges", "charging", "charisma", "charismatic", "charitable", "charity", "charles", "charley", "charlie", "charlize", "charlotte", "charlton", "charm", "charmed", "charmer", "charming", "charmingly", "charms", "charts", "chase", "chased", "chases", "chasing", "chat", "chatter", "chatting", "chauffeur", "chavez", "che", "cheadle", "cheap", "cheaper", "cheapest", "cheaply", "cheat", "cheated", "cheating", "cheats", "check", "checked", "checking", "checkout", "checks", "cheech", "cheek", "cheeky", "cheer", "cheered", "cheerful", "cheerfully", "cheering", "cheerleader", "cheers", "cheery", "cheese", "cheesiest", "cheesiness", "cheesy", "cheezy", "chef", "chemical", "chemicals", "chemistry", "chen", "cher", "cherie", "cherish", "cherished", "cherry", "cheryl", "chess", "chest", "chester", "cheung", "chevy", "chew", "chewbacca", "chewing", "chews", "chi", "chiba", "chic", "chicago", "chick", "chicken", "chickens", "chicks", "chico", "chief", "child", "childhood", "childish", "childishly", "childlike", "children", "chile", "chill", "chiller", "chilling", "chillingly", "chills", "chilly", "chimney", "chimp", "chimps", "chin", "china", "chinatown", "chinese", "ching", "chip", "chips", "chloe", "chock", "chocolate", "choice", "choices", "choir", "choke", "choked", "chong", "choose", "chooses", "choosing", "chop", "chopped", "chopper", "chopping", "choppy", "chopra", "chops", "chord", "chore", "choreographed", "choreographer", "choreography", "chores", "chorus", "chose", "chosen", "chow", "chris", "chrissy", "christ", "christensen", "christian", "christianity", "christians", "christie", "christina", "christine", "christmas", "christopher", "christy", "chronic", "chronicle", "chronicles", "chronological", "chronologically", "chronology", "chubby", "chuck", "chuckle", "chuckled", "chuckles", "chuckling", "chucky", "chunk", "chunks", "chunky", "church", "churches", "churchill", "churn", "churned", "churning", "cia", "cigar", "cigarette", "cigarettes", "cigars", "cillian", "cinderella", "cindy", "cinema", "cinemas", "cinematic", "cinematically", "cinematographer", "cinematographic", "cinematography", "cinemax", "circa", "circle", "circles", "circuit", "circular", "circumstance", "circumstances", "circus", "cited", "cities", "citizen", "citizens", "city", "civil", "civilian", "civilians", "civilisation", "civilization", "civilized", "ck", "clad", "claim", "claimed", "claiming", "claims", "clair", "claire", "clan", "claptrap", "clara", "clare", "clarence", "clarify", "clarity", "clark", "clarke", "clash", "clashes", "class", "classes", "classic", "classical", "classics", "classified", "classify", "classmates", "classroom", "classy", "claude", "claudia", "claus", "clause", "claustrophobia", "claustrophobic", "claw", "claws", "clay", "claymation", "clayton", "clean", "cleaned", "cleaner", "cleaning", "cleans", "clear", "cleared", "clearer", "clearly", "cleavage", "cleese", "clerk", "clerks", "cleveland", "clever", "cleverly", "cleverness", "cliche", "cliched", "cliches", "clich\u00e9", "clich\u00e9d", "clich\u00e9s", "click", "clicked", "client", "clients", "cliff", "cliffhanger", "clifford", "cliffs", "climactic", "climate", "climatic", "climax", "climaxes", "climb", "climbed", "climber", "climbing", "climbs", "clinic", "clinical", "clint", "clinton", "clip", "clipped", "clips", "clique", "clive", "cloak", "clock", "clocking", "clockwork", "clone", "clones", "clooney", "cloris", "close", "closed", "closely", "closer", "closes", "closest", "closet", "closeup", "closeups", "closing", "closure", "cloth", "clothed", "clothes", "clothing", "cloud", "clouds", "clown", "clowns", "club", "clubs", "clue", "clueless", "clues", "clumsily", "clumsy", "clunker", "clunky", "clutches", "clutching", "clutter", "clyde", "cnn", "co", "coach", "coal", "coarse", "coast", "coastal", "coaster", "coat", "coated", "coats", "cobb", "cobra", "coburn", "cocaine", "cock", "cockney", "cocktail", "cocktails", "cocky", "code", "codes", "cody", "coen", "coffee", "coffin", "cohen", "coherence", "coherency", "coherent", "cohesion", "cohesive", "cohorts", "coin", "coincidence", "coincidences", "coincidentally", "coke", "col", "colbert", "cold", "cole", "coleman", "colin", "collaborated", "collaboration", "collaborations", "collaborator", "collage", "collapse", "collapsed", "collapses", "collapsing", "collar", "colleague", "colleagues", "collect", "collected", "collecting", "collection", "collections", "collective", "collectively", "collector", "collectors", "colleen", "college", "collette", "collide", "collins", "collision", "colman", "colonel", "colonial", "colonies", "colony", "color", "colorado", "colored", "colorful", "colors", "colossal", "colour", "coloured", "colourful", "colours", "coltrane", "columbia", "columbine", "columbo", "column", "com", "coma", "comatose", "combat", "combination", "combine", "combined", "combines", "combining", "combo", "combs", "come", "comeback", "comedian", "comedians", "comedic", "comedienne", "comedies", "comedy", "comers", "comes", "comet", "comeuppance", "comfort", "comfortable", "comfortably", "comforting", "comforts", "comic", "comical", "comically", "comics", "coming", "command", "commander", "commanding", "commandments", "commando", "commandos", "commands", "commend", "commendable", "commended", "comment", "commentaries", "commentary", "commentator", "commentators", "commented", "commenter", "commenters", "commenting", "comments", "commercial", "commercially", "commercials", "commie", "commit", "commitment", "commitments", "commits", "committed", "committee", "committing", "common", "commonly", "commonplace", "communicate", "communicated", "communicating", "communication", "communications", "communism", "communist", "communists", "communities", "community", "companies", "companion", "companions", "companionship", "company", "comparable", "comparatively", "compare", "compared", "compares", "comparing", "comparison", "comparisons", "compassion", "compassionate", "compelled", "compelling", "compellingly", "compensate", "compensated", "compete", "competence", "competent", "competently", "competing", "competition", "competitive", "competitors", "compilation", "complain", "complained", "complaining", "complains", "complaint", "complaints", "complement", "complements", "complete", "completed", "completely", "completing", "completist", "completists", "complex", "complexities", "complexity", "complicate", "complicated", "complications", "compliment", "compliments", "component", "components", "compose", "composed", "composer", "composers", "composition", "compositions", "compound", "comprehend", "comprehension", "comprehensive", "compressed", "comprised", "comprises", "compromise", "compromised", "compromising", "compulsion", "compulsive", "computer", "computers", "comrades", "con", "conan", "conceal", "concealed", "concede", "conceit", "conceited", "conceivable", "conceive", "conceived", "concentrate", "concentrated", "concentrates", "concentrating", "concentration", "concept", "conception", "concepts", "conceptual", "concern", "concerned", "concerning", "concerns", "concert", "concerts", "concise", "conclude", "concluded", "concludes", "concluding", "conclusion", "conclusions", "concoction", "concrete", "concur", "condemn", "condemned", "condemning", "condensed", "condescending", "condition", "conditioned", "conditions", "conduct", "conducted", "conducting", "conductor", "conducts", "confederate", "conference", "confess", "confessed", "confesses", "confession", "confessions", "confidant", "confidence", "confident", "confidential", "confined", "confines", "confirm", "confirmed", "confirms", "conflict", "conflicted", "conflicting", "conflicts", "confront", "confrontation", "confronted", "confronting", "confronts", "confuse", "confused", "confusing", "confusion", "congratulate", "congratulations", "congregation", "congress", "conjure", "connect", "connected", "connecticut", "connecting", "connection", "connections", "connects", "connell", "connelly", "connery", "connie", "conniving", "connoisseur", "connolly", "connor", "connors", "conquer", "conquered", "conquers", "conquest", "conrad", "conroy", "cons", "conscience", "conscious", "consciously", "consciousness", "consecutive", "consent", "consequence", "consequences", "consequently", "conservative", "consider", "considerable", "considerably", "consideration", "considerations", "considered", "considering", "considers", "consist", "consisted", "consistency", "consistent", "consistently", "consisting", "consists", "consolation", "conspicuous", "conspiracies", "conspiracy", "constance", "constant", "constantly", "constitute", "constitutes", "constitution", "constraints", "construct", "constructed", "construction", "constructive", "consultant", "consumed", "consumer", "consumers", "consuming", "consummate", "consumption", "contact", "contacts", "contain", "contained", "containing", "contains", "contaminated", "contemplate", "contemplating", "contemporaries", "contemporary", "contempt", "contend", "contender", "content", "contention", "contents", "contest", "contestant", "contestants", "contests", "context", "continent", "continual", "continually", "continuation", "continue", "continued", "continues", "continuing", "continuity", "continuous", "continuously", "contract", "contradict", "contradiction", "contradictions", "contradictory", "contrary", "contrast", "contrasted", "contrasting", "contrasts", "contribute", "contributed", "contributes", "contributing", "contribution", "contributions", "contrivance", "contrivances", "contrived", "control", "controlled", "controlling", "controls", "controversial", "controversy", "convenience", "convenient", "conveniently", "convent", "convention", "conventional", "conventions", "conversation", "conversations", "conversion", "convert", "converted", "convey", "conveyed", "conveying", "conveys", "convict", "convicted", "conviction", "convictions", "convicts", "convince", "convinced", "convinces", "convincing", "convincingly", "convoluted", "cook", "cooked", "cookie", "cookies", "cooking", "cooks", "cool", "cooler", "coolest", "coolness", "coop", "cooper", "cooperate", "cooperation", "cop", "cope", "copied", "copies", "coping", "copious", "copper", "coppola", "cops", "copy", "copying", "copyright", "corbett", "corbin", "cord", "core", "corey", "corinne", "corky", "corleone", "corman", "corn", "cornball", "corner", "cornered", "corners", "corny", "coronation", "coroner", "corporate", "corporation", "corporations", "corpse", "corpses", "correct", "corrected", "correction", "correctly", "correctness", "corridor", "corridors", "corrupt", "corrupted", "corruption", "cortez", "cos", "cosmic", "cost", "costar", "costello", "costner", "costs", "costume", "costumed", "costumes", "costuming", "cottage", "cotton", "couch", "could", "couldn", "council", "counseling", "counselor", "count", "countdown", "counted", "counter", "counterpart", "counterparts", "counterpoint", "countess", "counting", "countless", "countries", "country", "countryside", "counts", "county", "coup", "couple", "coupled", "couples", "coupling", "courage", "courageous", "course", "court", "courtesy", "courtney", "courtroom", "courtyard", "cousin", "cousins", "coven", "cover", "coverage", "covered", "covering", "covers", "cow", "coward", "cowardly", "cowboy", "cowboys", "cowgirls", "cows", "cox", "coy", "coyote", "cozy", "crack", "cracked", "cracker", "cracking", "cracks", "cradle", "craft", "crafted", "crafting", "crafts", "craftsmanship", "crafty", "craig", "cram", "crammed", "cramped", "crane", "crank", "cranked", "cranky", "crap", "crapfest", "crappy", "crash", "crashed", "crashers", "crashes", "crashing", "crass", "cratchit", "crater", "craven", "craving", "crawford", "crawl", "crawled", "crawling", "craze", "crazed", "crazier", "crazies", "craziness", "crazy", "creaky", "cream", "create", "created", "creates", "creating", "creation", "creations", "creative", "creatively", "creativity", "creator", "creators", "creature", "creatures", "credentials", "credibility", "credible", "credit", "credited", "credits", "credulity", "creed", "creek", "creep", "creeped", "creepier", "creepiest", "creepily", "creepiness", "creeping", "creeps", "creepshow", "creepy", "crenna", "crew", "crews", "cricket", "cried", "cries", "crime", "crimes", "criminal", "criminally", "criminals", "crimson", "cringe", "cringed", "cringing", "cripple", "crippled", "crisis", "crisp", "crispin", "cristina", "criteria", "criterion", "critic", "critical", "critically", "criticise", "criticised", "criticism", "criticisms", "criticize", "criticized", "criticizing", "critics", "critique", "critter", "critters", "croc", "crocodile", "crocodiles", "croft", "cromwell", "cronenberg", "cronies", "crook", "crooked", "crooks", "crop", "crosby", "cross", "crossbow", "crossed", "crosses", "crossing", "crotch", "crothers", "crouching", "crouse", "crow", "crowd", "crowded", "crowds", "crowe", "crown", "crowning", "crucial", "crucified", "crucifix", "crud", "crude", "cruel", "cruella", "cruelty", "cruise", "crumbling", "crummy", "crusade", "crush", "crushed", "crushes", "crushing", "crust", "crusty", "cruz", "cry", "crying", "crypt", "cryptic", "crystal", "csi", "cuba", "cuban", "cube", "cuckoo", "cuddly", "cue", "cues", "cukor", "culkin", "culminates", "culminating", "culmination", "culp", "culprit", "cult", "cults", "cultural", "culture", "cultured", "cultures", "cum", "cumming", "cummings", "cunning", "cunningham", "cup", "curator", "curb", "cure", "cured", "curio", "curiosity", "curious", "curiously", "curly", "curr", "current", "currently", "currie", "curry", "curse", "cursed", "curses", "cursing", "curtain", "curtains", "curtis", "curtiz", "curve", "curves", "cusack", "cushing", "custer", "custody", "custom", "customary", "customers", "customs", "cut", "cute", "cuteness", "cutest", "cutesy", "cutouts", "cuts", "cutter", "cutting", "cuz", "cv", "cybill", "cyborg", "cyborgs", "cycle", "cylon", "cylons", "cynic", "cynical", "cynicism", "cynics", "cynthia", "cypher", "czech", "da", "dabney", "dad", "daddy", "dads", "daffy", "dafoe", "daft", "dagger", "dahl", "dahmer", "daily", "daisies", "daisy", "dakota", "dale", "dallas", "dalmatians", "dalton", "daly", "dam", "damage", "damaged", "damaging", "dame", "damian", "damien", "damme", "damn", "damned", "damning", "damon", "damsel", "dan", "dana", "dance", "danced", "dancer", "dancers", "dances", "dancing", "dancy", "dandy", "dane", "danes", "danger", "dangerfield", "dangerous", "dangerously", "dangers", "dangling", "dani", "daniel", "danielle", "daniels", "danish", "danning", "danny", "dante", "danza", "daphne", "darcy", "dare", "dared", "dares", "daria", "daring", "dario", "dark", "darkened", "darker", "darkest", "darkly", "darkness", "darkwolf", "darlene", "darling", "darn", "darren", "darryl", "darth", "daryl", "das", "dash", "dashed", "dashing", "dastardly", "data", "date", "dated", "dates", "dating", "daughter", "daughters", "dave", "davenport", "david", "davidson", "davies", "davis", "dawn", "dawson", "day", "daylight", "days", "daytime", "dazed", "dazzled", "dazzling", "dc", "de", "dead", "deadbeat", "deadly", "deadpan", "deaf", "deal", "dealer", "dealers", "dealing", "dealings", "deals", "dealt", "dean", "deanna", "dear", "dearly", "death", "deathbed", "deaths", "deathtrap", "debacle", "debatable", "debate", "debating", "debbie", "deborah", "debra", "debris", "debt", "debts", "debut", "debuted", "decade", "decadence", "decadent", "decades", "decapitated", "decapitation", "decay", "decaying", "deceased", "deceit", "deceive", "deceived", "december", "decency", "decent", "decently", "deception", "deceptive", "decide", "decided", "decidedly", "decides", "deciding", "decipher", "decision", "decisions", "deck", "declaration", "declare", "declared", "declares", "decline", "declined", "declining", "deco", "decomposing", "deconstruct", "decor", "decorated", "decoration", "decrepit", "dedicated", "dedication", "dee", "deed", "deeds", "deem", "deemed", "deep", "deeper", "deepest", "deeply", "deer", "def", "default", "defeat", "defeated", "defeating", "defeats", "defence", "defend", "defended", "defending", "defends", "defense", "defiance", "defiant", "deficiencies", "defies", "definately", "define", "defined", "defines", "defining", "definite", "definitely", "definition", "definitive", "deformed", "deft", "deftly", "defy", "defying", "degenerate", "degenerates", "degradation", "degrades", "degrading", "degree", "degrees", "deja", "del", "delay", "delayed", "delectable", "deleted", "deliberate", "deliberately", "delicate", "delicately", "delicious", "deliciously", "delight", "delighted", "delightful", "delightfully", "delights", "delirious", "deliver", "deliverance", "delivered", "delivering", "delivers", "delivery", "dell", "della", "delon", "delpy", "delta", "deluded", "deluise", "delusion", "delusional", "delusions", "delve", "delves", "demand", "demanded", "demanding", "demands", "demeaning", "demeanor", "demented", "demi", "demille", "demise", "demme", "democracy", "democratic", "demographic", "demolition", "demon", "demonic", "demonicus", "demons", "demonstrate", "demonstrated", "demonstrates", "demonstrating", "demonstration", "demunn", "den", "dench", "denholm", "denial", "denied", "denies", "deniro", "denis", "denise", "denmark", "dennis", "denny", "denominator", "denouement", "dense", "dental", "dentist", "dentists", "denver", "deny", "denying", "denzel", "deol", "depalma", "depardieu", "departed", "department", "departments", "departs", "departure", "depend", "dependable", "depended", "dependent", "depending", "depends", "depict", "depicted", "depicting", "depiction", "depictions", "depicts", "deplorable", "deposit", "depp", "depraved", "depravity", "depressed", "depressing", "depression", "depressive", "deprived", "depth", "depths", "deputy", "der", "deranged", "derek", "derivative", "derive", "derived", "derives", "dermot", "dern", "des", "descendant", "descendants", "descended", "descending", "descends", "descent", "describe", "described", "describes", "describing", "description", "descriptions", "desert", "deserted", "deserts", "deserve", "deserved", "deservedly", "deserves", "deserving", "design", "designed", "designer", "designs", "desirable", "desire", "desired", "desires", "desk", "desolate", "despair", "desperate", "desperately", "desperation", "despicable", "despise", "despised", "despite", "destination", "destined", "destiny", "destroy", "destroyed", "destroying", "destroys", "destruction", "destructive", "det", "detached", "detail", "detailed", "detailing", "details", "detective", "detectives", "detention", "deter", "deteriorated", "deterioration", "determination", "determine", "determined", "detour", "detract", "detracted", "detractors", "detracts", "detriment", "detroit", "deus", "deux", "devastated", "devastating", "develop", "developed", "developing", "development", "developments", "develops", "devgan", "device", "devices", "devil", "devilish", "devils", "devious", "devise", "devised", "devito", "devoid", "devon", "devos", "devoted", "devotion", "devoured", "devout", "dewey", "dexter", "dey", "di", "diabolical", "diagnosed", "diagnosis", "dial", "dialect", "dialog", "dialogs", "dialogue", "dialogues", "diamond", "diamonds", "diana", "diane", "diaper", "diaries", "diary", "diaz", "dicaprio", "dice", "dick", "dickens", "dickinson", "dictates", "dictator", "dictatorship", "diction", "dictionary", "did", "didactic", "didn", "didnt", "die", "died", "diego", "dien", "dies", "diet", "dietrich", "differ", "difference", "differences", "different", "differentiate", "differently", "differs", "difficult", "difficulties", "difficulty", "dig", "digest", "digger", "diggers", "digging", "digital", "digitally", "dignified", "dignity", "digress", "digs", "dil", "dilapidated", "dilemma", "dilemmas", "dillon", "diluted", "dim", "dime", "dimension", "dimensional", "dimensions", "diminish", "diminished", "diminishes", "diminishing", "diminutive", "dimitri", "dimly", "din", "diner", "dingo", "dining", "dinner", "dino", "dinosaur", "dinosaurs", "dip", "dipping", "dir", "dire", "direct", "directed", "directer", "directing", "direction", "directions", "directly", "director", "directorial", "directors", "directs", "dirk", "dirt", "dirty", "dis", "disability", "disabled", "disagree", "disappear", "disappearance", "disappeared", "disappearing", "disappears", "disappoint", "disappointed", "disappointing", "disappointingly", "disappointment", "disappointments", "disappoints", "disaster", "disasters", "disastrous", "disbelief", "disc", "discarded", "discern", "discernible", "discerning", "discipline", "disclaimer", "disco", "discomfort", "disconcerting", "disconnected", "discount", "discourse", "discover", "discovered", "discoveries", "discovering", "discovers", "discovery", "discredit", "discrimination", "discuss", "discussed", "discusses", "discussing", "discussion", "discussions", "disdain", "disease", "diseases", "disfigured", "disgrace", "disgraceful", "disgruntled", "disguise", "disguised", "disguises", "disgust", "disgusted", "disgusting", "disgustingly", "dish", "dishes", "disheveled", "dishonest", "disillusioned", "disinterested", "disjointed", "disk", "dislike", "disliked", "dismal", "dismay", "dismayed", "dismiss", "dismissed", "dismisses", "disney", "disneyland", "disorder", "disorders", "disowned", "disparate", "dispatch", "dispatched", "displaced", "display", "displayed", "displaying", "displays", "displeasure", "disposable", "disposal", "disposed", "disposing", "disposition", "dispute", "disregard", "disrespect", "disrespectful", "dissatisfied", "dissect", "disservice", "dissolves", "distance", "distant", "distaste", "distasteful", "distinct", "distinction", "distinctive", "distinctly", "distinguish", "distinguished", "distinguishes", "distorted", "distortion", "distract", "distracted", "distracting", "distraction", "distractions", "distracts", "distraught", "distress", "distressed", "distressing", "distribute", "distributed", "distribution", "distributor", "distributors", "district", "disturb", "disturbed", "disturbing", "disturbingly", "ditch", "ditto", "ditzy", "diva", "dive", "diver", "diverse", "diversion", "diversity", "dives", "divide", "divided", "divine", "diving", "division", "divorce", "divorced", "dixon", "dizzy", "dizzying", "dj", "dna", "do", "doc", "dock", "docks", "doctor", "doctors", "docu", "docudrama", "document", "documentaries", "documentary", "documented", "documents", "dodge", "dodger", "dodging", "dodgy", "doe", "does", "doesn", "doesnt", "dog", "dogma", "dogs", "doing", "dolby", "doll", "dollar", "dollars", "dolls", "dolly", "dolph", "dom", "domain", "domestic", "dominant", "dominate", "dominated", "dominates", "dominating", "domination", "domineering", "dominic", "dominique", "domino", "don", "donald", "donate", "done", "dong", "donkey", "donna", "donnell", "donner", "donnie", "donovan", "dont", "doo", "dooley", "doom", "doomed", "door", "doors", "doorstep", "doorway", "dope", "dopey", "doppelganger", "dorff", "doris", "dorky", "dorm", "dorothy", "dose", "doses", "dot", "dots", "double", "doubles", "doubt", "doubtful", "doubtless", "doubts", "doug", "dough", "douglas", "dour", "dove", "dowdy", "down", "downbeat", "downer", "downey", "downfall", "downhill", "download", "downright", "downs", "downside", "downstairs", "downtown", "downtrodden", "downward", "doyle", "dozen", "dozens", "dp", "dr", "drab", "dracula", "draft", "drafted", "drag", "dragged", "dragging", "dragon", "dragons", "drags", "drain", "drained", "draining", "drake", "drama", "dramas", "dramatic", "dramatically", "dramatics", "dramatization", "dramatized", "drastically", "draw", "drawback", "drawbacks", "drawer", "drawing", "drawings", "drawl", "drawn", "draws", "dread", "dreaded", "dreadful", "dreadfully", "dream", "dreamed", "dreamer", "dreaming", "dreamlike", "dreams", "dreamworks", "dreamy", "dreary", "dreck", "drenched", "dress", "dressed", "dresses", "dressing", "drew", "dreyfus", "dreyfuss", "dribble", "dried", "drift", "drifter", "drifting", "drifts", "drill", "drilling", "drink", "drinking", "drinks", "drip", "dripped", "dripping", "drive", "drivel", "driven", "driver", "drivers", "drives", "driving", "droll", "drone", "drones", "droning", "drool", "drooling", "drop", "dropped", "dropping", "drops", "dross", "drove", "drown", "drowned", "drowning", "drowns", "drug", "drugged", "drugs", "drum", "drummer", "drums", "drunk", "drunken", "drunks", "dry", "drying", "dtv", "du", "dual", "dub", "dubbed", "dubbing", "dubious", "dublin", "duchovny", "duck", "ducks", "dud", "dude", "dudes", "dudley", "duds", "due", "duel", "dueling", "duet", "duff", "dug", "duh", "dukakis", "duke", "dukes", "dull", "dullness", "duly", "dumb", "dumbed", "dumber", "dumbest", "dumbing", "dummy", "dump", "dumped", "dumps", "dumpster", "dunaway", "duncan", "dundee", "dune", "dung", "dungeon", "dungeons", "dunk", "dunne", "dunno", "dunst", "duo", "duped", "duration", "during", "duryea", "dusk", "dust", "dustin", "dusty", "dutch", "duties", "duty", "duval", "duvall", "dv", "dvd", "dvds", "dvr", "dwarf", "dwarfs", "dwell", "dwelling", "dwells", "dwight", "dyan", "dye", "dyer", "dying", "dyke", "dylan", "dynamic", "dynamics", "dynamite", "dynasty", "dysfunctional", "dystopian", "each", "eager", "eagerly", "eagle", "ealing", "ear", "earl", "earlier", "earliest", "early", "earn", "earned", "earnest", "earning", "earns", "earp", "ears", "earth", "earthly", "earthquake", "ease", "easier", "easiest", "easily", "east", "easter", "eastern", "eastwood", "easy", "eat", "eaten", "eater", "eaters", "eating", "eats", "ebay", "ebenezer", "ebert", "eccentric", "echo", "echoed", "echoes", "echoing", "eclectic", "eclipsed", "economic", "economical", "economy", "ecstasy", "ecstatic", "ed", "eddie", "eddy", "eden", "edgar", "edge", "edged", "edges", "edgy", "edie", "edinburgh", "edison", "edit", "edited", "edith", "editing", "edition", "editions", "editor", "editors", "edits", "edmond", "edmund", "educate", "educated", "education", "educational", "edward", "edwards", "eerie", "eerily", "effect", "effected", "effective", "effectively", "effectiveness", "effects", "effeminate", "efficiency", "efficient", "efficiently", "effort", "effortless", "effortlessly", "efforts", "eg", "egan", "egg", "eggs", "ego", "egos", "egotistical", "egregious", "egypt", "egyptian", "eh", "eight", "eighteen", "eighth", "eighties", "eighty", "eileen", "einstein", "either", "el", "elaborate", "elaborated", "elaine", "elder", "elderly", "elders", "eldest", "eleanor", "elected", "election", "electric", "electrical", "electricity", "electrifying", "electrocuted", "electronic", "electronics", "elegance", "elegant", "elegantly", "element", "elementary", "elements", "elephant", "elephants", "elevate", "elevated", "elevates", "elevator", "elevators", "eleven", "elf", "eli", "elia", "elicit", "eligible", "elijah", "eliminate", "eliminated", "eliminating", "elisabeth", "elisha", "elite", "elitist", "eliza", "elizabeth", "ella", "ellen", "elliot", "elliott", "ellis", "elm", "elmer", "eloquent", "elsa", "else", "elsewhere", "elton", "eludes", "elusive", "elvira", "elvis", "ely", "em", "email", "embark", "embarks", "embarrass", "embarrassed", "embarrassing", "embarrassingly", "embarrassment", "embedded", "embittered", "embodied", "embodies", "embodiment", "embrace", "embraced", "embraces", "embracing", "emerge", "emerged", "emergence", "emergency", "emerges", "emerging", "emil", "emilio", "emily", "eminently", "emma", "emmanuelle", "emmy", "emoting", "emotion", "emotional", "emotionally", "emotionless", "emotions", "emotive", "empathetic", "empathize", "empathy", "emperor", "emphasis", "emphasize", "emphasized", "emphasizes", "empire", "employ", "employed", "employee", "employees", "employer", "employment", "employs", "emptiness", "empty", "emulate", "en", "enable", "enabled", "enables", "enabling", "enacted", "enamored", "enchanted", "enchanting", "encompassing", "encounter", "encountered", "encountering", "encounters", "encourage", "encouraged", "encourages", "encouraging", "end", "endear", "endearing", "endeavor", "ended", "ending", "endings", "endless", "endlessly", "endor", "endorse", "endorsement", "endowed", "ends", "endurance", "endure", "endured", "endures", "enduring", "enemies", "enemy", "energetic", "energy", "enforcement", "enforcer", "engage", "engaged", "engagement", "engages", "engaging", "engine", "engineer", "engineered", "engineering", "engines", "england", "english", "englishman", "englund", "engrossed", "engrossing", "enhance", "enhanced", "enhances", "enigma", "enigmatic", "enjoy", "enjoyable", "enjoyably", "enjoyed", "enjoying", "enjoyment", "enjoys", "enlighten", "enlightened", "enlightening", "enlightenment", "enlist", "enlisted", "enlists", "ennio", "enormous", "enormously", "enough", "enraged", "enrico", "ensemble", "ensue", "ensues", "ensuing", "ensure", "ensures", "ensuring", "entangled", "enter", "entered", "entering", "enterprise", "enters", "entertain", "entertained", "entertainer", "entertainers", "entertaining", "entertainment", "entertains", "enthralled", "enthralling", "enthusiasm", "enthusiast", "enthusiastic", "enthusiastically", "enthusiasts", "entice", "enticing", "entire", "entirely", "entirety", "entitled", "entity", "entourage", "entrance", "entranced", "entrepreneur", "entries", "entry", "envelope", "environment", "environmental", "environments", "envisioned", "envy", "ephemeral", "epic", "epics", "epidemic", "epilogue", "episode", "episodes", "episodic", "epitome", "eponymous", "epps", "equal", "equality", "equally", "equals", "equation", "equipment", "equipped", "equivalent", "er", "era", "eras", "erase", "erased", "eraserhead", "eric", "erica", "erik", "erika", "erm", "ernest", "ernie", "ernst", "erotic", "erotica", "eroticism", "err", "erratic", "errol", "error", "errors", "erupts", "es", "escalating", "escapades", "escape", "escaped", "escapes", "escaping", "escapism", "escapist", "escort", "esoteric", "esp", "especially", "espionage", "esposito", "esque", "esquire", "essay", "essence", "essential", "essentially", "establish", "established", "establishes", "establishing", "establishment", "estate", "esteem", "esteemed", "esther", "estimation", "estranged", "et", "etc", "etched", "eternal", "eternally", "eternity", "ethan", "ethel", "ethereal", "ethical", "ethics", "ethnic", "ethnicity", "eugene", "euro", "europa", "europe", "european", "europeans", "eva", "evacuated", "evaluate", "evaluation", "evan", "evangelical", "evans", "eve", "evelyn", "even", "evening", "event", "events", "eventual", "eventually", "ever", "everett", "evergreen", "everlasting", "every", "everybody", "everyday", "everyman", "everyone", "everything", "everytime", "everywhere", "evidence", "evidenced", "evident", "evidently", "evil", "evils", "evocative", "evoke", "evoked", "evokes", "evoking", "evolution", "evolve", "evolved", "evolves", "evolving", "ewan", "ewoks", "ex", "exact", "exactly", "exaggerated", "exaggerating", "exaggeration", "exaggerations", "examination", "examine", "examined", "examines", "examining", "example", "examples", "exceed", "exceeded", "exceedingly", "exceeds", "excel", "excellence", "excellent", "excellently", "excels", "except", "exception", "exceptional", "exceptionally", "exceptions", "excerpts", "excess", "excesses", "excessive", "excessively", "exchange", "exchanges", "exchanging", "excited", "excitement", "exciting", "exclaims", "exclamation", "excluding", "exclusive", "exclusively", "excrement", "excruciating", "excruciatingly", "excursion", "excuse", "excused", "excuses", "exec", "execrable", "execs", "execute", "executed", "executing", "execution", "executions", "executive", "executives", "exemplary", "exemplifies", "exercise", "exhausted", "exhausting", "exhibit", "exhibited", "exhibition", "exhibits", "exhilarating", "exile", "exiled", "exist", "existed", "existence", "existent", "existential", "existing", "exists", "exit", "exiting", "exits", "exorcist", "exotic", "expand", "expanded", "expansive", "expect", "expectation", "expectations", "expected", "expecting", "expects", "expedition", "expelled", "expendable", "expense", "expenses", "expensive", "experience", "experienced", "experiences", "experiencing", "experiment", "experimental", "experimentation", "experimenting", "experiments", "expert", "expertise", "expertly", "experts", "explain", "explained", "explaining", "explains", "explanation", "explanations", "explicit", "explicitly", "explode", "exploded", "explodes", "exploding", "exploit", "exploitation", "exploitative", "exploited", "exploiting", "exploitive", "exploits", "exploration", "explore", "explored", "explores", "exploring", "explosion", "explosions", "explosive", "explosives", "expose", "exposed", "exposes", "exposing", "exposition", "exposure", "express", "expressed", "expresses", "expressing", "expression", "expressionism", "expressionist", "expressionless", "expressions", "expressive", "exquisite", "exquisitely", "extend", "extended", "extends", "extension", "extensive", "extensively", "extent", "exterior", "external", "extinct", "extinction", "extra", "extract", "extraneous", "extraordinarily", "extraordinary", "extras", "extravagant", "extravaganza", "extreme", "extremely", "extremes", "extremities", "exuberance", "exuberant", "exudes", "eye", "eyeball", "eyeballs", "eyebrow", "eyebrows", "eyed", "eyes", "eyre", "fable", "fabric", "fabricated", "fabulous", "facade", "face", "faced", "faceless", "faces", "facet", "facets", "facial", "facile", "facilities", "facility", "facing", "fact", "factions", "factor", "factors", "factory", "facts", "factual", "fade", "faded", "fades", "fading", "fagin", "fail", "failed", "failing", "failings", "fails", "failure", "failures", "faint", "faints", "fair", "fairbanks", "fairly", "fairness", "fairy", "fairytale", "faith", "faithful", "faithfully", "faithfulness", "fake", "faked", "faking", "falco", "falcon", "falk", "fall", "fallen", "falling", "fallon", "falls", "false", "falsely", "falters", "fame", "famed", "familial", "familiar", "familiarity", "families", "family", "famine", "famous", "famously", "fan", "fanatic", "fanatical", "fanatics", "fancy", "fanning", "fanny", "fans", "fantasies", "fantastic", "fantastical", "fantastically", "fantasy", "far", "farce", "farcical", "fare", "fared", "fares", "farewell", "faris", "farm", "farmer", "farmers", "farnsworth", "farrah", "farrell", "farrelly", "fart", "farther", "farting", "fascinated", "fascinating", "fascination", "fascism", "fascist", "fashion", "fashionable", "fashioned", "fashions", "fassbinder", "fast", "faster", "fastest", "fat", "fatal", "fatale", "fatally", "fate", "fated", "fateful", "fates", "father", "fathers", "fathom", "fault", "faultless", "faults", "faulty", "faux", "fav", "fave", "favor", "favorable", "favored", "favorite", "favorites", "favors", "favour", "favourite", "favourites", "favours", "fawcett", "fay", "faye", "fbi", "fear", "feared", "fearful", "fearing", "fearless", "fears", "feast", "feat", "feather", "feathers", "feature", "featured", "features", "featurette", "featuring", "february", "fed", "federal", "fee", "feeble", "feed", "feeding", "feeds", "feel", "feelgood", "feeling", "feelings", "feels", "feet", "feinstone", "feisty", "feline", "felix", "fell", "fellini", "fellow", "fellows", "fellowship", "felt", "female", "females", "feminine", "femininity", "feminism", "feminist", "feminists", "femme", "fence", "fencing", "fend", "fenton", "fernando", "ferocious", "ferrell", "ferrer", "ferris", "ferry", "fest", "festival", "festivals", "fetched", "fetching", "fetish", "feud", "feudal", "fever", "few", "fewer", "fey", "fez", "fi", "fiance", "fianc\u00e9", "fianc\u00e9e", "fiasco", "fiction", "fictional", "fictionalized", "fictitious", "fiddle", "fide", "fidel", "fidelity", "fido", "field", "fields", "fiend", "fiennes", "fierce", "fiercely", "fiery", "fifteen", "fifth", "fifties", "fifty", "fight", "fighter", "fighters", "fighting", "fights", "figure", "figured", "figures", "figuring", "file", "files", "filipino", "fill", "filled", "filler", "filling", "fills", "film", "filmed", "filmic", "filming", "filmmaker", "filmmakers", "filmmaking", "filmography", "films", "filter", "filters", "filth", "filthy", "final", "finale", "finally", "finance", "financed", "finances", "financial", "financially", "financing", "finch", "find", "finding", "findings", "finds", "fine", "finely", "fineman", "finer", "finesse", "finest", "finger", "fingernails", "fingers", "finish", "finished", "finishes", "finishing", "finney", "finnish", "fiona", "fire", "fired", "firefighters", "firefly", "fireplace", "fires", "fireworks", "firing", "firm", "firmly", "first", "firstly", "fischer", "fish", "fishburne", "fisher", "fisherman", "fishing", "fist", "fisted", "fists", "fit", "fits", "fitted", "fitting", "fitzgerald", "five", "fix", "fixation", "fixed", "fixing", "flag", "flags", "flaherty", "flair", "flamboyant", "flame", "flamenco", "flames", "flaming", "flapping", "flare", "flash", "flashback", "flashbacks", "flashed", "flashes", "flashing", "flashlight", "flashy", "flat", "flats", "flattering", "flavor", "flavour", "flaw", "flawed", "flawless", "flawlessly", "flaws", "flea", "fled", "fledged", "flee", "fleeing", "flees", "fleet", "fleeting", "fleischer", "fleming", "flesh", "fleshed", "flew", "flic", "flick", "flicker", "flickering", "flicks", "flies", "flight", "flights", "flimsy", "fling", "flip", "flippant", "flipped", "flipping", "flips", "flirt", "flirting", "flirts", "float", "floating", "floats", "flock", "flood", "flooding", "floor", "floors", "flop", "flopped", "flops", "florence", "florida", "flounder", "flourish", "flourishes", "flow", "flower", "flowers", "flowing", "flown", "flows", "floyd", "flu", "fluent", "fluff", "fluffy", "fluid", "fluke", "flung", "flushed", "flute", "fly", "flying", "flynn", "foch", "focus", "focused", "focuses", "focusing", "fodder", "foe", "foes", "fog", "foggy", "foil", "fold", "foley", "folk", "folklore", "folks", "follow", "followed", "followers", "following", "follows", "folly", "fond", "fonda", "fondly", "fondness", "fontaine", "food", "fool", "fooled", "fooling", "foolish", "foolishly", "foolishness", "fools", "foot", "footage", "football", "footed", "footlight", "footsteps", "for", "foray", "forbes", "forbid", "forbidden", "force", "forced", "forces", "forcing", "ford", "fore", "foreboding", "foree", "foreground", "forehead", "foreign", "foreigner", "foreigners", "foremost", "forensic", "foreshadowing", "forest", "forests", "forever", "forewarned", "forget", "forgets", "forgettable", "forgetting", "forgivable", "forgive", "forgiven", "forgiveness", "forgives", "forgiving", "forgot", "forgotten", "fork", "forlani", "form", "formal", "format", "formation", "formed", "former", "formerly", "formidable", "forming", "forms", "formula", "formulaic", "formulas", "forrest", "forsaken", "forsythe", "fort", "forth", "forthcoming", "forties", "fortress", "fortunate", "fortunately", "fortune", "fortunes", "forty", "forum", "forward", "forwarded", "forwarding", "forwards", "foster", "fought", "foul", "found", "foundation", "founded", "founder", "founding", "fountain", "four", "fourteen", "fourth", "fox", "foxes", "foxx", "foxy", "fraction", "fractured", "fragile", "fragility", "fragmented", "fragments", "frail", "frailty", "frame", "framed", "frames", "framework", "framing", "france", "frances", "franchise", "franchot", "francis", "francisco", "franco", "francois", "frank", "frankenstein", "frankie", "franklin", "frankly", "franks", "frantic", "frantically", "franz", "frat", "fraternity", "fraud", "fraught", "freak", "freaked", "freakin", "freaking", "freakish", "freaks", "freaky", "fred", "freddie", "freddy", "frederic", "free", "freed", "freedom", "freely", "freeman", "freeway", "freeze", "freezing", "french", "frenchman", "frenetic", "frenzied", "frenzy", "frequency", "frequent", "frequently", "fresh", "freshly", "freshman", "freshness", "freud", "freudian", "fricker", "friction", "friday", "fridge", "fried", "friend", "friendly", "friends", "friendship", "friendships", "friggin", "fright", "frighten", "frightened", "frightening", "frighteningly", "fringe", "fritz", "frodo", "frog", "frogs", "frolic", "from", "front", "frontal", "frontier", "fronts", "frost", "frozen", "fruit", "fruition", "frustrated", "frustrating", "frustratingly", "frustration", "frustrations", "fry", "frye", "frying", "ft", "fu", "fuel", "fuels", "fugitive", "fulci", "fulfill", "fulfilled", "fulfilling", "fulfillment", "fulfills", "full", "fuller", "fullest", "fully", "fun", "function", "functional", "functioning", "functions", "fund", "fundamental", "fundamentalist", "fundamentally", "funded", "funding", "funds", "funeral", "funky", "funnier", "funniest", "funnily", "funny", "fur", "furious", "furlong", "furniture", "furry", "further", "furthermore", "fury", "fuse", "fuss", "futile", "futility", "future", "futuristic", "fuzzy", "fx", "gable", "gabriel", "gabriella", "gackt", "gadget", "gadgets", "gag", "gage", "gags", "gail", "gain", "gained", "gaining", "gains", "gal", "galactica", "galaxy", "gale", "gall", "gallagher", "gallery", "galore", "gals", "gamble", "gambler", "gambling", "game", "gameplay", "games", "gaming", "gamut", "gandalf", "gandhi", "gandolfini", "gang", "gangs", "gangsta", "gangster", "gangsters", "gap", "gaping", "gaps", "garage", "garam", "garb", "garbage", "garbo", "garcia", "garde", "garden", "gardener", "gardens", "gardner", "garfield", "gargantuan", "garish", "garland", "garner", "garnered", "garrett", "garry", "gary", "gas", "gasoline", "gasp", "gasping", "gate", "gates", "gather", "gathered", "gathering", "gathers", "gaudy", "gauge", "gave", "gavin", "gawd", "gawky", "gay", "gays", "gaze", "gazing", "gazzara", "gear", "geared", "gears", "geddes", "gee", "geek", "geeks", "geeky", "geer", "geez", "geezer", "geisha", "gellar", "gem", "gems", "gen", "gena", "gender", "gene", "general", "generally", "generals", "generate", "generated", "generates", "generating", "generation", "generations", "generic", "generous", "genesis", "genetic", "genetically", "genie", "genitals", "genius", "geniuses", "genre", "genres", "gentle", "gentleman", "gentlemen", "gently", "genuine", "genuinely", "geoffrey", "geographic", "geography", "george", "georges", "georgia", "gerald", "geraldine", "gerard", "gere", "german", "germans", "germany", "gershwin", "gertrude", "gesture", "gestures", "get", "getaway", "gets", "getting", "ghastly", "ghetto", "ghost", "ghostly", "ghosts", "gi", "giallo", "giamatti", "giancarlo", "giant", "giants", "gibberish", "gibson", "giddy", "gielgud", "gift", "gifted", "gifts", "gig", "gigantic", "giggle", "giggles", "giggling", "gigi", "gigli", "gigolo", "gigs", "gil", "gilbert", "gilliam", "gillian", "gilligan", "gimmick", "gimmicks", "gimmicky", "gina", "ginger", "giovanna", "giovanni", "girl", "girlfight", "girlfriend", "girlfriends", "girls", "gist", "give", "given", "gives", "giving", "glad", "gladiator", "gladly", "gladys", "glamor", "glamorous", "glamour", "glance", "glances", "glaring", "glass", "glasses", "gleason", "glee", "gleeful", "gleefully", "glen", "glenda", "glenn", "glib", "glimmer", "glimpse", "glimpsed", "glimpses", "glitter", "glitz", "global", "globe", "gloom", "gloomy", "gloria", "glorified", "glorifies", "glorify", "glorious", "gloriously", "glory", "gloss", "glossed", "glossy", "glove", "glover", "gloves", "glow", "glowing", "glue", "glued", "go", "goal", "goals", "goat", "god", "godard", "goddess", "godfather", "godmother", "gods", "godzilla", "goebbels", "goer", "goers", "goes", "going", "goings", "gold", "goldberg", "goldblum", "golden", "goldie", "goldsmith", "goldsworthy", "golf", "gomez", "gone", "gong", "gonna", "gonzalez", "gonzo", "goo", "good", "goodbye", "goodfellas", "goodies", "gooding", "goodman", "goodness", "goodnight", "goods", "goody", "goof", "goofs", "goofy", "google", "goon", "goons", "goose", "gopal", "gordon", "gore", "gorgeous", "gorgeously", "gorilla", "gory", "gosh", "gospel", "gossip", "got", "goth", "gothic", "gotta", "gotten", "governess", "government", "governments", "governor", "govinda", "gown", "gowns", "grab", "grabbed", "grabbing", "grabs", "grace", "graced", "graceful", "gracefully", "graces", "grade", "grader", "gradual", "gradually", "graduate", "graduated", "graduates", "graduation", "grady", "graffiti", "graham", "grail", "grain", "grainy", "grammar", "grand", "grandchildren", "granddaughter", "grandeur", "grandfather", "grandiose", "grandma", "grandmother", "grandpa", "grandparents", "grandson", "granger", "granny", "grant", "granted", "grants", "graphic", "graphically", "graphics", "gras", "grasp", "grass", "grateful", "gratification", "gratifying", "grating", "gratitude", "gratuitous", "grave", "graves", "graveyard", "gravitas", "gravity", "gray", "grayson", "grease", "greasy", "great", "greater", "greatest", "greatly", "greatness", "greats", "greece", "greed", "greedy", "greek", "green", "greenaway", "greene", "greenlight", "greet", "greeted", "greetings", "greg", "gregory", "gremlins", "grenade", "grenades", "grendel", "greta", "gretchen", "grew", "grey", "grieco", "grief", "grier", "grieving", "griffin", "griffith", "griffiths", "grifters", "grim", "grimy", "grin", "grinch", "grind", "grindhouse", "grinding", "grinning", "grip", "gripe", "gripped", "gripping", "grips", "grisham", "grisly", "grit", "gritty", "grizzled", "groan", "groaning", "groans", "grocery", "groin", "groom", "groomed", "groove", "groovy", "gross", "grosse", "grossed", "grossing", "grossly", "grotesque", "ground", "groundbreaking", "grounded", "grounds", "group", "groups", "grow", "growing", "growling", "grown", "grows", "growth", "grudge", "grudgingly", "grueling", "gruesome", "gruesomely", "gruff", "grumpy", "grungy", "grunts", "guarantee", "guaranteed", "guard", "guarded", "guardian", "guards", "guerrilla", "guess", "guessed", "guessing", "guest", "guests", "guetary", "guevara", "guidance", "guide", "guided", "guidelines", "guides", "guiding", "guilt", "guilty", "guinea", "guinness", "guise", "guitar", "guitarist", "gulf", "gullible", "gum", "gummer", "gump", "gun", "gundam", "gunfight", "gunfighter", "gunfire", "gung", "gunga", "gunman", "gunned", "gunpoint", "guns", "gunshot", "gunshots", "gunslinger", "guru", "gus", "gushing", "gusto", "gut", "guts", "gutsy", "gutted", "gutter", "guy", "guys", "guzman", "gwyneth", "gwynne", "gyllenhaal", "gym", "gypsies", "gypsy", "ha", "haas", "habit", "habits", "hack", "hacked", "hacking", "hackman", "hackneyed", "hacks", "had", "hadley", "hadn", "hag", "haggard", "haha", "hai", "hail", "hailed", "haines", "hair", "haircut", "haircuts", "hairdo", "haired", "hairs", "hairstyle", "hairstyles", "hairy", "hal", "hale", "haley", "half", "halfway", "hall", "halle", "hallmark", "halloween", "hallucination", "hallucinations", "hallway", "hallways", "halt", "ham", "hamill", "hamilton", "hamlet", "hammer", "hammered", "hammerhead", "hamming", "hammy", "hampered", "hampton", "hams", "han", "hand", "handed", "handedly", "handful", "handicapped", "handing", "handle", "handled", "handles", "handling", "hands", "handsome", "handy", "hang", "hanged", "hanger", "hanging", "hangover", "hangs", "hank", "hanks", "hanna", "hannah", "hannibal", "hans", "hansen", "hanson", "hanzo", "haphazard", "haphazardly", "hapless", "happen", "happened", "happening", "happenings", "happens", "happenstance", "happier", "happily", "happiness", "happy", "hara", "harass", "harassed", "harassment", "harbor", "hard", "hardcore", "hardened", "harder", "hardest", "hardly", "hardship", "hardships", "hardware", "hardwicke", "hardy", "hare", "harilal", "hark", "harlem", "harlin", "harlow", "harm", "harmed", "harmless", "harmon", "harmony", "harold", "harp", "harper", "harrelson", "harried", "harriet", "harris", "harrison", "harron", "harrowing", "harry", "harsh", "harshly", "harshness", "hart", "hartley", "hartman", "harvard", "harvest", "harvey", "has", "hasn", "hasselhoff", "hasso", "hastily", "hasty", "hat", "hatcher", "hatchet", "hate", "hated", "hateful", "hater", "haters", "hates", "hating", "hatred", "hats", "haunt", "haunted", "haunting", "hauntingly", "haunts", "havana", "have", "haven", "having", "havoc", "hawaii", "hawaiian", "hawk", "hawke", "hawks", "hawn", "hay", "hayden", "hayes", "hays", "hayward", "hayworth", "hazy", "hazzard", "hbo", "he", "head", "headache", "headed", "heading", "headlights", "headlines", "headquarters", "heads", "headstrong", "heal", "healed", "healing", "health", "healthy", "heap", "hear", "heard", "hearing", "hears", "hearst", "heart", "heartbeat", "heartbreak", "heartbreaking", "heartbroken", "hearted", "heartfelt", "heartily", "heartland", "heartless", "hearts", "heartwarming", "hearty", "heat", "heated", "heath", "heather", "heaven", "heavenly", "heavens", "heavily", "heavy", "heavyweight", "hebrew", "hecht", "heck", "hectic", "hector", "hedy", "heed", "heel", "heels", "hefty", "heh", "height", "heightened", "heightens", "heights", "heinous", "heir", "heiress", "heist", "held", "helen", "helena", "helga", "helicopter", "helicopters", "hell", "hellman", "hello", "hellraiser", "helm", "helmed", "helmer", "helmet", "help", "helped", "helper", "helpful", "helping", "helpless", "helplessness", "helps", "hemingway", "hence", "henchman", "henchmen", "henderson", "hendrix", "henner", "henri", "henry", "henson", "henstridge", "hepburn", "her", "herbert", "hercules", "herd", "here", "herein", "heres", "heritage", "herman", "hernandez", "hero", "heroes", "heroic", "heroics", "heroin", "heroine", "heroines", "heroism", "herring", "herrings", "hers", "herself", "herzog", "hes", "hesitant", "hesitate", "hesitation", "heston", "heterosexual", "hewitt", "hey", "heyday", "hi", "hick", "hickock", "hicks", "hid", "hidden", "hide", "hideous", "hideously", "hideout", "hides", "hiding", "high", "higher", "highest", "highlight", "highlighted", "highlighting", "highlights", "highly", "highs", "highway", "hijacked", "hijacking", "hijinks", "hiking", "hilarious", "hilariously", "hilarity", "hilary", "hill", "hillary", "hillbillies", "hillbilly", "hilliard", "hills", "hillyer", "hilt", "hilton", "him", "himself", "hindered", "hindi", "hinds", "hindsight", "hindu", "hines", "hinges", "hint", "hinted", "hinting", "hints", "hip", "hippie", "hippies", "hippy", "hire", "hired", "hires", "hiring", "his", "hispanic", "historian", "historians", "historic", "historical", "historically", "history", "histrionic", "histrionics", "hit", "hitch", "hitchcock", "hitchcockian", "hitchhiker", "hitler", "hits", "hitting", "hiv", "hk", "hmm", "hmmm", "hmmmm", "ho", "hobby", "hobgoblins", "hockey", "hodge", "hoffman", "hog", "hogan", "hogg", "hogwash", "hokey", "hokum", "hold", "holden", "holding", "holds", "hole", "holes", "holiday", "holidays", "holland", "hollow", "holloway", "holly", "hollywood", "holm", "holmes", "holocaust", "holt", "holy", "homage", "homages", "home", "homeland", "homeless", "homely", "homemade", "homer", "homes", "hometown", "homeward", "homework", "homicidal", "homicide", "homo", "homoerotic", "homophobic", "homosexual", "homosexuality", "homosexuals", "honed", "honest", "honestly", "honesty", "honey", "honeymoon", "hong", "honor", "honorable", "honored", "honors", "honour", "honourable", "hoo", "hood", "hoodlum", "hoodlums", "hoods", "hook", "hooked", "hooker", "hookers", "hooks", "hooligans", "hooper", "hooray", "hoot", "hoover", "hop", "hope", "hoped", "hopeful", "hopefully", "hopeless", "hopelessly", "hopelessness", "hopes", "hoping", "hopkins", "hopper", "hopping", "horde", "hordes", "horizon", "horizons", "horn", "horns", "horny", "horrendous", "horrendously", "horrible", "horribly", "horrid", "horrific", "horrified", "horrifying", "horror", "horrors", "horse", "horseback", "horses", "horton", "hose", "hospital", "host", "hostage", "hostages", "hosted", "hostel", "hostess", "hostile", "hostility", "hosts", "hot", "hotel", "hotels", "hotter", "hottest", "hottie", "hound", "hounds", "hour", "hours", "house", "household", "housekeeper", "houses", "housewife", "housewives", "housing", "houston", "how", "howard", "however", "howl", "howling", "hrs", "html", "http", "hubby", "hudson", "hug", "huge", "hugely", "hugging", "hugh", "hughes", "hugo", "huh", "hulk", "hulking", "hum", "human", "humane", "humanity", "humanoid", "humans", "humble", "humdrum", "humiliate", "humiliated", "humiliating", "humiliation", "humility", "humming", "humor", "humorless", "humorous", "humour", "humourless", "humphrey", "hunchback", "hundred", "hundreds", "hundstage", "hung", "hungarian", "hunger", "hungry", "hunk", "hunky", "hunt", "hunted", "hunter", "hunters", "hunting", "hurricane", "hurry", "hurt", "hurting", "hurts", "husband", "husbands", "hustle", "hustler", "huston", "hut", "hutton", "hybrid", "hyde", "hype", "hyped", "hyper", "hyperactive", "hyperbole", "hypnotic", "hypnotized", "hypocrisy", "hypocrite", "hypocritical", "hysteria", "hysterical", "hysterically", "hysterics", "iago", "ian", "ice", "iceberg", "ichi", "icing", "icky", "icon", "iconic", "icons", "icy", "id", "ida", "idea", "ideal", "idealism", "idealistic", "idealized", "ideally", "ideals", "ideas", "identical", "identification", "identified", "identify", "identifying", "identities", "identity", "ideological", "ideologies", "ideology", "idiocy", "idiosyncrasies", "idiosyncratic", "idiot", "idiotic", "idiotically", "idiots", "idle", "idol", "idyllic", "ie", "if", "ignorance", "ignorant", "ignore", "ignored", "ignores", "ignoring", "igor", "ii", "iii", "il", "ilk", "ill", "illegal", "illicit", "illinois", "illiterate", "illness", "illogical", "illuminate", "illusion", "illusions", "illustrate", "illustrated", "illustrates", "illustration", "illustrations", "illustrious", "ilona", "im", "image", "imagery", "images", "imaginable", "imaginary", "imagination", "imaginations", "imaginative", "imaginatively", "imagine", "imagined", "imagines", "imagining", "imax", "imbecilic", "imdb", "imho", "imitate", "imitated", "imitating", "imitation", "imitations", "immaculate", "immature", "immediate", "immediately", "immense", "immensely", "immerse", "immersed", "immigrant", "immigrants", "immigration", "imminent", "immoral", "immorality", "immortal", "immortality", "immune", "imo", "impact", "impaled", "impatient", "impeccable", "impeccably", "impending", "impenetrable", "imperfect", "imperial", "impersonate", "impersonating", "impersonation", "impersonator", "implanted", "implausibility", "implausible", "implements", "implication", "implications", "implicit", "implied", "implies", "implore", "imply", "implying", "import", "importance", "important", "importantly", "impose", "imposed", "imposing", "impossibility", "impossible", "impossibly", "impostor", "impotent", "impoverished", "impress", "impressed", "impresses", "impressing", "impression", "impressionable", "impressions", "impressive", "impressively", "imprisoned", "improbable", "impromptu", "improv", "improve", "improved", "improvement", "improvements", "improves", "improving", "improvisation", "improvise", "improvised", "impulse", "impulses", "in", "inability", "inaccuracies", "inaccurate", "inadequate", "inadvertently", "inane", "inanimate", "inappropriate", "inappropriately", "inbred", "inc", "incapable", "incarnation", "incarnations", "incessant", "incessantly", "incest", "incestuous", "inch", "inches", "incident", "incidental", "incidentally", "incidents", "inclined", "include", "included", "includes", "including", "inclusion", "incoherent", "income", "incomparable", "incompetence", "incompetent", "incomplete", "incomprehensible", "incongruous", "inconsequential", "inconsistencies", "inconsistent", "incorporate", "incorporated", "incorporates", "incorrect", "increase", "increased", "increases", "increasing", "increasingly", "incredible", "incredibly", "incriminating", "indeed", "indelible", "independence", "independent", "indescribable", "india", "indian", "indiana", "indians", "indicate", "indicated", "indicates", "indicating", "indication", "indicative", "indicator", "indictment", "indie", "indies", "indifference", "indifferent", "indigenous", "indirectly", "indistinguishable", "individual", "individuality", "individually", "individuals", "indoor", "indoors", "induce", "induced", "inducing", "indulge", "indulgence", "indulgent", "indulges", "industrial", "industry", "indy", "ineffective", "inept", "ineptitude", "ineptly", "ineptness", "inescapable", "inevitable", "inevitably", "inexcusable", "inexperience", "inexperienced", "inexplicable", "inexplicably", "infamous", "infant", "infantile", "infatuated", "infected", "infectious", "inferior", "infernal", "inferno", "infested", "infidelity", "infinite", "infinitely", "infinity", "inflict", "inflicted", "inflicting", "influence", "influenced", "influences", "influential", "info", "infomercial", "inform", "information", "informative", "informed", "informer", "informs", "infuriating", "infused", "ing", "ingenious", "ingenuity", "ingmar", "ingram", "ingredient", "ingredients", "ingrid", "inhabit", "inhabitants", "inhabited", "inhabiting", "inhabits", "inherent", "inherently", "inherit", "inheritance", "inherited", "inherits", "inhuman", "inhumanity", "inimitable", "initial", "initially", "initiative", "inject", "injected", "injection", "injects", "injured", "injuries", "injury", "injustice", "ink", "inkling", "inmates", "inn", "innate", "inner", "innocence", "innocent", "innocently", "innocuous", "innovation", "innovative", "innuendo", "innuendos", "innumerable", "inoffensive", "input", "ins", "insane", "insanely", "insanity", "insatiable", "insect", "insects", "insecure", "insecurities", "insensitive", "insert", "inserted", "inserting", "inserts", "inside", "insight", "insightful", "insights", "insignificance", "insignificant", "insipid", "insist", "insisted", "insistence", "insistent", "insisting", "insists", "insomnia", "insomniac", "inspector", "inspiration", "inspirational", "inspire", "inspired", "inspires", "inspiring", "installed", "installment", "installments", "instalment", "instance", "instances", "instant", "instantly", "instead", "instinct", "instincts", "institute", "institution", "instructed", "instructions", "instructor", "instrument", "instrumental", "instruments", "insufferable", "insufficient", "insult", "insulted", "insulting", "insultingly", "insults", "insurance", "intact", "integral", "integrate", "integrated", "integration", "integrity", "intellect", "intellectual", "intellectually", "intellectuals", "intelligence", "intelligent", "intelligently", "intend", "intended", "intending", "intends", "intense", "intensely", "intensity", "intent", "intention", "intentional", "intentionally", "intentioned", "intentions", "intents", "inter", "interact", "interacting", "interaction", "interactions", "intercourse", "intercut", "interest", "interested", "interesting", "interestingly", "interests", "interfere", "interference", "interior", "interiors", "interlude", "interludes", "interminable", "internal", "international", "internet", "interplay", "interpret", "interpretation", "interpretations", "interpreted", "interrogation", "interrupt", "interrupted", "interspersed", "intertwined", "intervals", "intervenes", "intervention", "interview", "interviewed", "interviewing", "interviews", "interwoven", "intestines", "intimacy", "intimate", "intimidating", "into", "intolerable", "intolerance", "intoxicated", "intricacies", "intricate", "intricately", "intrigue", "intrigued", "intrigues", "intriguing", "intrinsic", "intro", "introduce", "introduced", "introduces", "introducing", "introduction", "introductory", "introspection", "introspective", "introverted", "intruder", "intrusion", "intrusive", "invade", "invaded", "invaders", "invading", "invaluable", "invariably", "invasion", "invent", "invented", "inventing", "invention", "inventions", "inventive", "inventiveness", "inventor", "invest", "invested", "investigate", "investigated", "investigates", "investigating", "investigation", "investigations", "investigative", "investigator", "investment", "invincible", "invisibility", "invisible", "invitation", "invite", "invited", "invites", "inviting", "involve", "involved", "involvement", "involves", "involving", "iowa", "iq", "ira", "iran", "irani", "iranian", "iraq", "ireland", "irene", "irish", "irishman", "iron", "ironic", "ironically", "ironies", "irons", "ironside", "irony", "irrational", "irrelevant", "irresistible", "irresponsible", "irreverent", "irreversible", "irritate", "irritated", "irritates", "irritating", "irritatingly", "irritation", "irs", "irving", "irwin", "is", "isaac", "isabel", "isabelle", "ish", "ishq", "ishtar", "islam", "island", "islanders", "islands", "isle", "ism", "isn", "isnt", "isolated", "isolation", "israel", "israeli", "issue", "issued", "issues", "it", "italian", "italians", "italy", "itch", "itchy", "item", "items", "its", "itself", "iturbi", "iv", "ivan", "ivory", "ivy", "izzard", "jab", "jabba", "jack", "jackass", "jacket", "jackets", "jackie", "jackman", "jackson", "jacob", "jacobi", "jacqueline", "jacques", "jada", "jaded", "jafar", "jaffar", "jaffe", "jagger", "jai", "jail", "jake", "jam", "james", "jameson", "jamie", "jammed", "jan", "jane", "janeane", "janet", "janice", "janine", "janitor", "janos", "january", "japan", "japanese", "jar", "jared", "jarring", "jason", "jaw", "jawed", "jaws", "jay", "jazz", "jazzy", "je", "jealous", "jealousy", "jean", "jeanette", "jeans", "jed", "jedi", "jeep", "jeez", "jeff", "jefferson", "jeffery", "jeffrey", "jekyll", "jelly", "jenkins", "jenna", "jennifer", "jenny", "jeopardy", "jeremy", "jerk", "jerker", "jerking", "jerks", "jerky", "jeroen", "jerome", "jerry", "jersey", "jerusalem", "jess", "jesse", "jessica", "jessie", "jester", "jesus", "jet", "jew", "jewel", "jewelry", "jewels", "jewish", "jews", "jfk", "jigsaw", "jill", "jim", "jimmy", "jj", "jo", "joan", "joanna", "job", "jobs", "jock", "jocks", "jodie", "joe", "joel", "joey", "johansson", "john", "johnnie", "johnny", "johnson", "johnston", "join", "joined", "joining", "joins", "joint", "joke", "joker", "jokes", "joking", "jolie", "jolly", "jolt", "jon", "jonathan", "jones", "jonestown", "jordan", "jose", "joseph", "josh", "joshua", "josie", "joss", "jos\u00e9", "journal", "journalism", "journalist", "journalists", "journey", "journeys", "jovi", "jox", "joy", "joyce", "joyless", "joyous", "joys", "jr", "ju", "juan", "judd", "jude", "judge", "judged", "judgement", "judges", "judging", "judgment", "judgmental", "judi", "judith", "judy", "juice", "juicy", "jules", "julia", "julian", "julie", "juliet", "juliette", "july", "jumbled", "jumbo", "jump", "jumped", "jumping", "jumps", "jumpy", "june", "jungle", "jungles", "junior", "junk", "junkie", "junkies", "junkyard", "jurassic", "jury", "just", "justice", "justifiably", "justification", "justified", "justifies", "justify", "justifying", "justin", "justly", "juvenile", "juxtaposition", "ka", "kahn", "kalifornia", "kamal", "kane", "kansas", "kapoor", "kar", "karate", "kareena", "karen", "kari", "karisma", "karl", "karloff", "karma", "kasdan", "kate", "katherine", "kathleen", "kathryn", "kathy", "katie", "katsu", "kattan", "kaufman", "kavner", "kay", "kaye", "kazan", "keanu", "keaton", "keeler", "keen", "keep", "keeper", "keeping", "keeps", "kei", "keira", "keitel", "keith", "keller", "kellerman", "kelly", "ken", "kennedy", "kennel", "kenneth", "kenny", "kent", "kentucky", "kept", "kermit", "kerr", "kerry", "ketchup", "kevin", "key", "keyboard", "keys", "keystone", "khan", "khanna", "kick", "kicked", "kicker", "kicking", "kicks", "kid", "kiddie", "kiddies", "kidding", "kidman", "kidnap", "kidnapped", "kidnappers", "kidnapping", "kidnaps", "kids", "kiefer", "kill", "killed", "killer", "killers", "killing", "killings", "kills", "kilmer", "kilter", "kim", "kimberly", "kin", "kind", "kinda", "kindergarten", "kindly", "kindness", "kinds", "kinetic", "king", "kingdom", "kings", "kingsley", "kinky", "kinnear", "kino", "kinski", "kipling", "kirk", "kirsten", "kiss", "kissed", "kisses", "kissing", "kit", "kitamura", "kitchen", "kitsch", "kitschy", "kitten", "kittens", "kitty", "klaus", "klein", "kline", "knack", "knee", "knees", "knew", "knife", "knight", "knightley", "knightly", "knights", "knit", "knives", "knock", "knocked", "knocking", "knockoff", "knocks", "know", "knowing", "knowingly", "knowledge", "knowledgeable", "known", "knows", "knox", "knuckle", "kolchak", "kong", "koo", "kooky", "korda", "korea", "korean", "kothari", "kotto", "kovacs", "kramer", "krause", "krell", "krige", "kris", "krishna", "kristen", "kristin", "kristofferson", "krueger", "kruger", "kubrick", "kudos", "kudrow", "kumar", "kung", "kurosawa", "kurt", "kyle", "kylie", "la", "lab", "label", "labeled", "labels", "labeouf", "labor", "laboratory", "labored", "labour", "labyrinth", "laced", "lack", "lacked", "lacking", "lackluster", "lacklustre", "lacks", "laconic", "lad", "ladder", "laden", "ladies", "lads", "lady", "laid", "lair", "laird", "lake", "lam", "lamarr", "lamas", "lamb", "lambert", "lambs", "lame", "lamer", "lamest", "lamp", "lampoon", "lan", "lana", "lancaster", "lance", "lanchester", "land", "landed", "landing", "landis", "landlady", "landlord", "landmark", "landmarks", "lando", "landon", "lands", "landscape", "landscapes", "lane", "lang", "lange", "language", "languages", "lansbury", "lap", "lapd", "lapse", "lapses", "laputa", "lara", "large", "largely", "larger", "largest", "larry", "lars", "las", "lascivious", "laser", "lassie", "last", "lasted", "lasting", "lastly", "lasts", "late", "lately", "later", "latest", "latin", "latino", "latter", "lau", "lauded", "laugh", "laughable", "laughably", "laughed", "laughing", "laughs", "laughter", "launch", "launched", "launching", "laundry", "laura", "laurel", "lauren", "laurence", "laurie", "lava", "lavish", "law", "lawman", "lawn", "lawrence", "laws", "lawyer", "lawyers", "lay", "layer", "layered", "layers", "laying", "layout", "lays", "laziness", "lazy", "lbs", "lds", "le", "lea", "leachman", "lead", "leaden", "leader", "leaders", "leadership", "leading", "leads", "leaf", "league", "leagues", "leak", "lean", "leaning", "leanings", "leans", "leap", "leaping", "leaps", "learn", "learned", "learning", "learns", "learnt", "leary", "lease", "least", "leather", "leave", "leaves", "leaving", "lecherous", "lecture", "lectures", "led", "ledger", "lee", "leering", "left", "leftist", "leftover", "leg", "legacy", "legal", "legally", "legend", "legendary", "legends", "legged", "legion", "legions", "legitimate", "legs", "leguizamo", "leia", "leigh", "leisurely", "lemmon", "lemon", "lena", "lend", "lends", "length", "lengths", "lengthy", "lennon", "leno", "lens", "lenses", "lent", "leo", "leon", "leonard", "leonardo", "leone", "leopold", "lerner", "les", "lesbian", "lesbianism", "lesbians", "leslie", "less", "lesser", "lesson", "lessons", "lest", "lester", "let", "letdown", "lethal", "lethargic", "lets", "letter", "letters", "letting", "leung", "levant", "level", "levels", "levin", "levinson", "levy", "lewis", "lex", "li", "liaison", "liam", "liang", "liar", "liberal", "liberally", "liberals", "liberated", "liberating", "liberation", "liberties", "liberty", "libido", "librarian", "library", "license", "lick", "lie", "lied", "lies", "lieu", "lieutenant", "liev", "life", "lifeless", "lifelong", "lifes", "lifestyle", "lifestyles", "lifetime", "lift", "lifted", "lifting", "lifts", "light", "lighted", "lighten", "lighter", "lighthearted", "lighting", "lightly", "lightness", "lightning", "lights", "lightweight", "likability", "likable", "like", "likeable", "liked", "likelihood", "likely", "likes", "likewise", "liking", "lil", "lila", "lili", "lilith", "lillian", "lilly", "lily", "limb", "limbo", "limbs", "limelight", "limit", "limitations", "limited", "limits", "limp", "lin", "lincoln", "linda", "linden", "lindsay", "lindsey", "lindy", "line", "linear", "lined", "liner", "liners", "lines", "lineup", "linger", "lingering", "lingers", "lining", "link", "linked", "linking", "linklater", "links", "lion", "lionel", "lions", "liotta", "lip", "lips", "lipstick", "liquid", "liquor", "lisa", "list", "listed", "listen", "listened", "listener", "listening", "listens", "listing", "listings", "listless", "lists", "lit", "lite", "literal", "literally", "literary", "literate", "literature", "lithgow", "litter", "little", "liu", "liv", "live", "lived", "lively", "liven", "liver", "lives", "living", "livingston", "liz", "liza", "lizard", "lizards", "ll", "lloyd", "lo", "loach", "load", "loaded", "loads", "loan", "loathe", "loathing", "loathsome", "lobby", "local", "locale", "locales", "locals", "locate", "located", "location", "locations", "lock", "locke", "locked", "locker", "locking", "locks", "log", "logan", "loggia", "logic", "logical", "logically", "logo", "lohan", "lois", "lol", "lola", "lolita", "lombard", "lommel", "lon", "london", "lone", "loneliness", "lonely", "loner", "long", "longed", "longer", "longest", "longing", "longoria", "longs", "longtime", "loni", "look", "lookalike", "looked", "looking", "lookout", "looks", "looming", "loomis", "looney", "loony", "loop", "loopy", "loose", "loosely", "looser", "looses", "loosing", "loot", "lopez", "lord", "lords", "lore", "loren", "lorenzo", "loretta", "lorne", "lorre", "los", "lose", "loser", "losers", "loses", "losing", "loss", "losses", "lost", "lot", "lotr", "lots", "lottery", "lou", "loud", "louder", "loudly", "louie", "louis", "louise", "louisiana", "lounge", "lousy", "lovable", "love", "loveable", "loved", "lovely", "lovemaking", "lover", "lovers", "loves", "loving", "lovingly", "low", "lowbrow", "lowe", "lower", "lowered", "lowest", "lowly", "lows", "loy", "loyal", "loyalty", "lsd", "lt", "lubitsch", "luc", "lucas", "lucid", "lucifer", "lucile", "lucille", "lucio", "luck", "luckily", "lucky", "lucy", "ludicrous", "ludicrously", "lugosi", "luigi", "luis", "luise", "lukas", "luke", "lukewarm", "lulu", "lumbering", "lumet", "luminous", "lump", "luna", "lunacy", "lunatic", "lunch", "lundgren", "lung", "lungs", "lurches", "lure", "lured", "lures", "lurid", "lurking", "lurks", "luscious", "lush", "lust", "luster", "lustful", "lusting", "lusty", "luther", "luthor", "luxurious", "luxury", "luzhin", "lying", "lyle", "lyman", "lynch", "lynchian", "lynn", "lynne", "lyric", "lyrical", "lyrics", "ma", "mabel", "mac", "macabre", "macarthur", "macaulay", "macbeth", "macdonald", "macgregor", "machete", "machina", "machinations", "machine", "machinery", "machines", "macho", "mack", "macmurray", "macy", "mad", "maddening", "made", "madeleine", "madeline", "madhur", "madison", "madly", "madman", "madness", "madonna", "madrid", "madsen", "mae", "maestro", "mafia", "magazine", "magazines", "maggie", "maggots", "magic", "magical", "magically", "magician", "magnetic", "magnetism", "magnificence", "magnificent", "magnificently", "magnitude", "magnolia", "magnum", "maguire", "mahatma", "maher", "mahoney", "maid", "maiden", "mail", "main", "maine", "mainland", "mainly", "mainstream", "maintain", "maintained", "maintaining", "maintains", "majestic", "majesty", "major", "majority", "majors", "make", "makeover", "maker", "makers", "makes", "makeup", "making", "makings", "malcolm", "malden", "male", "males", "malevolent", "malice", "malicious", "malik", "mall", "malone", "malta", "maltese", "maltin", "mama", "mamet", "mamie", "mammoth", "man", "manage", "managed", "management", "manager", "manages", "managing", "manchester", "manchu", "manchurian", "mandatory", "mandy", "manga", "mangled", "manhattan", "manhood", "mania", "maniac", "maniacal", "maniacs", "manic", "manifest", "manipulate", "manipulated", "manipulates", "manipulating", "manipulation", "manipulative", "mankind", "manly", "mann", "manner", "mannered", "mannerisms", "manners", "manny", "manor", "manos", "mans", "mansfield", "mansion", "manson", "mantegna", "manual", "manufactured", "manure", "manuscript", "many", "map", "mar", "marathon", "marbles", "marc", "marcel", "march", "marches", "marching", "marco", "marcus", "mardi", "mare", "margaret", "marginal", "marginally", "margret", "maria", "marie", "marijuana", "marilyn", "marin", "marina", "marine", "marines", "mario", "marion", "marisa", "marital", "marjorie", "mark", "marked", "market", "marketed", "marketing", "marking", "marks", "marlene", "marley", "marlon", "marquee", "marquis", "marred", "marriage", "marriages", "married", "marries", "marry", "marrying", "mars", "marsh", "marsha", "marshal", "marshall", "mart", "martha", "martial", "martian", "martians", "martin", "martinez", "martino", "marty", "marvel", "marvellous", "marvelous", "marvelously", "marvin", "marx", "marxist", "mary", "masala", "masculine", "masculinity", "mash", "mask", "masked", "masks", "masochist", "masochistic", "mason", "masquerading", "mass", "massachusetts", "massacre", "massacred", "masses", "massey", "massive", "massively", "master", "mastered", "masterful", "masterfully", "mastermind", "masterpiece", "masterpieces", "masters", "masterson", "masterwork", "mastery", "mastroianni", "masturbation", "match", "matched", "matches", "matching", "mate", "material", "materials", "mates", "math", "matheson", "mathieu", "mating", "matin\u00e9e", "matrix", "matt", "matte", "mattei", "matter", "mattered", "matters", "matthau", "matthew", "mature", "matured", "maturity", "maudlin", "maugham", "maureen", "maurice", "maverick", "mawkish", "max", "maximum", "maxwell", "may", "maya", "maybe", "mayer", "mayhem", "mayor", "maze", "mazes", "mc", "mcadams", "mcbain", "mccarthy", "mcclure", "mcconaughey", "mccoy", "mcdermott", "mcdonald", "mcdonalds", "mcdowell", "mcgavin", "mcgregor", "mchugh", "mcintire", "mcintyre", "mckee", "mclaglen", "mcmahon", "mcnally", "mcqueen", "mcshane", "me", "meadows", "meager", "meal", "mean", "meandering", "meanders", "meaning", "meaningful", "meaningless", "meanings", "means", "meant", "meantime", "meanwhile", "measure", "measured", "measures", "meat", "meatball", "meaty", "mecha", "mechanic", "mechanical", "mechanics", "mechanism", "medal", "media", "medical", "medication", "medicine", "medieval", "mediocre", "mediocrity", "meditation", "mediterranean", "medium", "mediums", "meek", "meet", "meeting", "meetings", "meets", "meg", "mega", "megan", "mel", "melancholic", "melancholy", "melanie", "melbourne", "meld", "melinda", "melissa", "melodies", "melodrama", "melodramas", "melodramatic", "melody", "melt", "melting", "melts", "melville", "melvyn", "member", "members", "memoir", "memoirs", "memorable", "memorably", "memorial", "memories", "memorized", "memory", "men", "menace", "menacing", "mendes", "mendez", "mental", "mentality", "mentally", "mention", "mentioned", "mentioning", "mentions", "mentor", "menu", "mercenary", "merchandise", "merchant", "mercifully", "merciless", "mercilessly", "mercury", "mercy", "mere", "meredith", "merely", "merge", "merit", "merits", "merk", "merlin", "mermaid", "merrill", "merry", "meryl", "mesh", "mesmerized", "mesmerizing", "mess", "message", "messages", "messed", "messenger", "messes", "messiah", "messing", "messy", "met", "metal", "metamorphosis", "metaphor", "metaphorical", "metaphors", "metaphysical", "meteor", "meteorite", "meter", "meth", "method", "methodical", "methods", "meticulous", "metro", "metropolis", "metropolitan", "mexican", "mexico", "meyer", "meyers", "mgm", "mia", "miami", "mic", "mice", "michael", "michaels", "micheal", "michel", "michell", "michelle", "michigan", "mick", "mickey", "microphone", "mid", "middle", "midget", "midgets", "midler", "midnight", "midst", "midway", "midwest", "might", "mightily", "mighty", "miike", "mike", "miklos", "milan", "mild", "mildly", "mildred", "mile", "miles", "milestone", "milieu", "militant", "military", "milk", "milked", "mill", "milland", "millard", "millennium", "miller", "million", "millionaire", "millions", "mills", "milo", "milton", "mime", "mimic", "mimicking", "min", "mind", "minded", "mindless", "mindlessly", "minds", "mindset", "mine", "minelli", "miner", "miners", "mines", "mini", "miniature", "minimal", "minimalist", "minimalistic", "minimum", "mining", "minions", "miniseries", "minister", "minnelli", "minor", "minorities", "minority", "mins", "minus", "minute", "minutes", "mira", "miracle", "miracles", "miraculous", "miraculously", "miranda", "miriam", "mirror", "mirrors", "mis", "misadventures", "miscarriage", "miscast", "miscasting", "mischievous", "mise", "miserable", "miserably", "misery", "misfire", "misfit", "misfits", "misfortune", "misguided", "mish", "mishaps", "mishmash", "mislead", "misleading", "misled", "mismatched", "misogynistic", "misogyny", "misplaced", "miss", "missed", "misses", "missile", "missiles", "missing", "mission", "missionary", "missions", "missouri", "mist", "mistake", "mistaken", "mistakenly", "mistakes", "mister", "mistreated", "mistress", "misty", "misunderstand", "misunderstanding", "misunderstandings", "misunderstood", "misused", "mitch", "mitchell", "mitchum", "mix", "mixed", "mixes", "mixing", "mixture", "miyazaki", "mm", "mo", "moan", "moaning", "moans", "mob", "mobile", "mobster", "mobsters", "mock", "mocked", "mockery", "mocking", "mockumentary", "mode", "model", "modeled", "modeling", "models", "moderate", "moderately", "modern", "modest", "modesty", "modicum", "modine", "moe", "mol", "mold", "mole", "molested", "molina", "moll", "molly", "mom", "moment", "momentarily", "moments", "momentum", "mommy", "moms", "mon", "mona", "monaghan", "monarch", "monastery", "monday", "monetary", "money", "monica", "monitor", "monitors", "monk", "monkey", "monkeys", "monks", "mono", "monologue", "monologues", "mononoke", "monotone", "monotonous", "monotony", "monroe", "monster", "monsters", "monstrosity", "monstrous", "montage", "montages", "montana", "monte", "montgomery", "month", "months", "monty", "monument", "monumental", "mood", "moodiness", "moods", "moody", "moon", "moonlight", "moonstruck", "moonwalker", "moore", "moorehead", "moral", "morale", "moralistic", "morality", "morally", "morals", "moran", "morbid", "morbius", "more", "moreau", "moreover", "mores", "morgan", "morgana", "morgue", "moriarty", "morita", "mormon", "mormons", "morning", "moron", "moronic", "morons", "morose", "morphed", "morphs", "morricone", "morris", "morrow", "morse", "mortal", "mortality", "mortally", "mortensen", "mortimer", "morton", "moscow", "moses", "moss", "most", "mostel", "mostly", "motel", "mother", "mothers", "motif", "motifs", "motion", "motions", "motivated", "motivation", "motivations", "motive", "motives", "motley", "motor", "motorcycle", "moulin", "mount", "mountain", "mountains", "mounted", "mounting", "mourning", "mouse", "moustache", "mouth", "mouthed", "mouths", "move", "moved", "movement", "movements", "moves", "movie", "moviegoer", "moviegoers", "movies", "moving", "mower", "mpaa", "mph", "mr", "mrs", "ms", "mst", "mst3k", "mtv", "much", "muck", "mud", "muddled", "muddy", "mug", "mugging", "mulder", "mulholland", "muller", "mullet", "mulligan", "multi", "multiple", "multiplex", "multiply", "multitude", "mum", "mumbai", "mumbling", "mumbo", "mummy", "munchies", "munching", "mundane", "muni", "munro", "muppet", "muppets", "murder", "murdered", "murderer", "murderers", "murdering", "murderous", "murders", "muriel", "murky", "murphy", "murray", "muscle", "muscles", "muscular", "muse", "museum", "mush", "music", "musical", "musically", "musicals", "musician", "musicians", "muslim", "muslims", "mussolini", "must", "mustache", "muster", "mutant", "mutants", "mutated", "mute", "muted", "mutilated", "mutilation", "mutiny", "mutual", "my", "myers", "myles", "myra", "myriad", "myrna", "myrtle", "myself", "mysteries", "mysterious", "mysteriously", "mystery", "mystic", "mystical", "mysticism", "mystique", "myth", "mythic", "mythical", "mythological", "mythology", "myths", "nada", "nadir", "nagging", "nah", "nail", "nailed", "nails", "nair", "naive", "naivety", "naivet\u00e9", "naked", "nam", "name", "named", "nameless", "namely", "names", "naming", "nana", "nancy", "nanny", "naomi", "nap", "napier", "napoleon", "narcissism", "narcissistic", "narrated", "narrates", "narrating", "narration", "narrative", "narratives", "narrator", "narrow", "narrowly", "nary", "nasa", "naschy", "nash", "nasties", "nasty", "nat", "natali", "natalie", "natasha", "nathan", "nation", "national", "nationalist", "nations", "native", "natives", "natural", "naturalism", "naturalistic", "naturally", "nature", "natured", "naughty", "nausea", "nauseating", "nauseous", "nauseum", "naval", "navigate", "navy", "nay", "nazi", "nazis", "na\u00efve", "nbc", "nc", "ne", "neal", "near", "nearby", "nearest", "nearing", "nearly", "neat", "neatly", "necessarily", "necessary", "necessity", "neck", "necklace", "necks", "ned", "need", "needed", "needing", "needle", "needless", "needlessly", "needn", "needs", "needy", "neeson", "nefarious", "negative", "negatively", "negatives", "neglect", "neglected", "negligible", "negotiate", "negotiation", "neighbor", "neighborhood", "neighborhoods", "neighbors", "neighbour", "neighbourhood", "neighbours", "neil", "neill", "neither", "nell", "nelson", "nemesis", "nemo", "neo", "neon", "nephew", "nephews", "nepotism", "nerd", "nerds", "nerdy", "nerve", "nerves", "nervous", "ness", "nest", "net", "netflix", "netherlands", "network", "networks", "neuroses", "neurotic", "neutral", "nevada", "neve", "never", "neverending", "nevermind", "nevertheless", "neville", "new", "newcomer", "newcomers", "newer", "newest", "newfound", "newhart", "newly", "newman", "news", "newspaper", "newspapers", "newsreel", "newton", "next", "nic", "nice", "nicely", "nicer", "niche", "nicholas", "nicholson", "nick", "nickelodeon", "nickname", "nicky", "nicolai", "nicolas", "nicole", "niece", "nielsen", "nietzsche", "nifty", "nigel", "nigh", "night", "nightclub", "nightly", "nightmare", "nightmares", "nightmarish", "nights", "nighttime", "nighy", "nihilism", "nina", "nine", "nineteenth", "nineties", "ninety", "ninja", "ninjas", "nintendo", "ninth", "nipple", "niro", "nisha", "nit", "niven", "nixon", "no", "noah", "noam", "nobel", "nobility", "noble", "nobleman", "nobody", "nod", "nodding", "nods", "noel", "noir", "noirish", "noirs", "noise", "noises", "noisy", "nolan", "nolte", "nominal", "nominated", "nomination", "nominations", "nominee", "nominees", "non", "nondescript", "none", "nonetheless", "nonexistent", "nonsense", "nonsensical", "nonstop", "noodle", "noon", "nope", "nor", "nora", "norm", "norma", "normal", "normalcy", "normally", "norman", "norris", "north", "northam", "northern", "northwest", "norton", "norway", "norwegian", "nose", "nosed", "noses", "nostalgia", "nostalgic", "nosy", "not", "notable", "notably", "notch", "note", "noted", "notes", "noteworthy", "nothing", "nothingness", "notice", "noticeable", "noticeably", "noticed", "notices", "noticing", "noting", "notion", "notions", "notoriety", "notorious", "notoriously", "notting", "notwithstanding", "novak", "novel", "novelist", "novella", "novels", "novelty", "november", "novice", "now", "nowadays", "nowhere", "nt", "nuance", "nuanced", "nuances", "nubile", "nuclear", "nude", "nudity", "nuff", "nuisance", "nuke", "numb", "number", "numbers", "numbing", "numbingly", "numerous", "nun", "nuns", "nurse", "nurses", "nursing", "nut", "nuts", "nutshell", "nutty", "ny", "nyc", "nymphomaniac", "nypd", "oakland", "oasis", "obese", "obi", "object", "objections", "objective", "objectively", "objects", "obligated", "obligation", "obligatory", "obliged", "oblivion", "oblivious", "obnoxious", "obscene", "obscure", "obscured", "obscurity", "observation", "observations", "observe", "observed", "observer", "observes", "observing", "obsessed", "obsession", "obsessions", "obsessive", "obsolete", "obstacle", "obstacles", "obtain", "obtained", "obtaining", "obtrusive", "obvious", "obviously", "occasion", "occasional", "occasionally", "occasions", "occult", "occupants", "occupation", "occupied", "occupy", "occupying", "occur", "occurred", "occurrence", "occurrences", "occurring", "occurs", "ocean", "oceans", "october", "odd", "oddball", "oddity", "oddly", "odds", "ode", "odyssey", "oeuvre", "of", "off", "offbeat", "offend", "offended", "offender", "offenders", "offends", "offense", "offensive", "offensively", "offer", "offered", "offering", "offerings", "offers", "office", "officer", "officers", "offices", "official", "officially", "officials", "offs", "offscreen", "offset", "offside", "offspring", "oft", "often", "ogling", "ogre", "oh", "ohio", "oil", "ok", "okay", "oklahoma", "ol", "old", "older", "oldest", "olds", "ole", "olen", "olin", "olive", "oliver", "olivia", "olivier", "ollie", "olsen", "olympia", "olympic", "olympics", "om", "omar", "omega", "omen", "omg", "ominous", "omitted", "on", "once", "one", "ones", "oneself", "ongoing", "online", "only", "onscreen", "onset", "ontario", "onto", "onwards", "ooh", "oops", "oozes", "oozing", "open", "opened", "opener", "opening", "openly", "opens", "opera", "operas", "operate", "operates", "operatic", "operating", "operation", "operations", "operative", "operator", "opinion", "opinions", "opponent", "opponents", "opportunities", "opportunity", "opposed", "opposing", "opposite", "opposites", "opposition", "oppressed", "oppression", "oppressive", "oppressors", "oprah", "opted", "optimism", "optimistic", "option", "options", "opus", "or", "oral", "orange", "orbit", "orchestra", "orchestral", "orchestrated", "ordeal", "order", "ordered", "ordering", "orders", "ordinary", "oregon", "org", "organ", "organic", "organization", "organizations", "organized", "organs", "orgasm", "orgies", "orgy", "oriental", "orientation", "oriented", "origin", "original", "originality", "originally", "originals", "originated", "origins", "orlando", "orleans", "orphan", "orphanage", "orphans", "orson", "orthodox", "orwell", "osborne", "osbourne", "oscar", "oscars", "ostensibly", "othello", "other", "others", "otherwise", "otherworldly", "ott", "otto", "ouch", "ought", "ounce", "our", "ours", "ourselves", "out", "outbreak", "outburst", "outbursts", "outcast", "outcome", "outdated", "outdoes", "outdoor", "outdoors", "outer", "outfit", "outfits", "outing", "outings", "outlandish", "outlaw", "outlaws", "outlet", "outline", "outlook", "output", "outrage", "outraged", "outrageous", "outrageously", "outright", "outs", "outset", "outside", "outsider", "outsiders", "outstanding", "outta", "outtakes", "outweigh", "over", "overact", "overacted", "overacting", "overacts", "overall", "overbearing", "overblown", "overboard", "overcome", "overcomes", "overcoming", "overdoes", "overdone", "overdose", "overhead", "overkill", "overlapping", "overlong", "overlook", "overlooked", "overlooking", "overly", "overnight", "overplayed", "overpowering", "overrated", "overs", "overseas", "oversexed", "overshadowed", "overstated", "overt", "overthrow", "overtly", "overtones", "overuse", "overused", "overview", "overweight", "overwhelm", "overwhelmed", "overwhelming", "overwhelmingly", "overwrought", "owe", "owed", "owen", "owes", "owing", "owl", "own", "owned", "owner", "owners", "owning", "owns", "oxygen", "oz", "ozzy", "pa", "pabst", "pace", "paced", "paces", "pacific", "pacifist", "pacing", "pacino", "pack", "package", "packaging", "packed", "packing", "packs", "pact", "pad", "padded", "padding", "pagan", "page", "pages", "paid", "pain", "pained", "painful", "painfully", "pains", "paint", "painted", "painter", "painters", "painting", "paintings", "paints", "pair", "paired", "pairing", "pairs", "pakistan", "pakistani", "pal", "palace", "palance", "palatable", "pale", "pales", "palestinian", "palette", "palm", "palma", "palmer", "palpable", "pals", "palsy", "paltrow", "paltry", "pam", "pamela", "pan", "panache", "panahi", "panama", "pandora", "panic", "panned", "pans", "pantheon", "panties", "pants", "pap", "paper", "paperback", "paperhouse", "papers", "paquin", "par", "parable", "parade", "paradise", "paragraph", "parallel", "parallels", "paralyzed", "parameters", "paramount", "paranoia", "paranoid", "paranormal", "paraphrase", "parasite", "pardon", "parent", "parental", "parenting", "parents", "paresh", "paris", "parisian", "park", "parked", "parker", "parking", "parks", "parliament", "parlor", "parodies", "parody", "parodying", "parole", "parrot", "parsons", "part", "parter", "partial", "partially", "participant", "participants", "participate", "participated", "participating", "participation", "particular", "particularly", "parties", "parting", "partition", "partly", "partner", "partners", "partnership", "parts", "party", "partying", "pas", "pasolini", "pass", "passable", "passage", "passages", "passed", "passenger", "passengers", "passes", "passing", "passion", "passionate", "passionately", "passions", "passive", "past", "paste", "pasted", "pastiche", "pastor", "pat", "patch", "patched", "patented", "patently", "path", "pathetic", "pathetically", "pathological", "pathos", "paths", "patience", "patient", "patiently", "patients", "patriarch", "patric", "patricia", "patrick", "patriot", "patriotic", "patriotism", "patrol", "patron", "patronizing", "patrons", "patsy", "pattern", "patterns", "patton", "patty", "paul", "paula", "paulie", "pauline", "paulo", "pauly", "pause", "pauses", "paved", "pawn", "paxton", "pay", "payback", "paycheck", "payed", "paying", "payment", "payne", "payoff", "pays", "paz", "pazu", "pbs", "pc", "peace", "peaceful", "peak", "peaks", "pearl", "peasant", "peasants", "peck", "pecker", "peckinpah", "peculiar", "pedestrian", "pedigree", "pedophile", "pedro", "pee", "peek", "peeping", "peer", "peers", "peet", "pegg", "peggy", "pen", "penalty", "penchant", "pencil", "penelope", "penguin", "penis", "penn", "penned", "penniless", "penny", "penultimate", "people", "peoples", "pepper", "peppered", "per", "perceive", "perceived", "perceives", "percent", "percentage", "perception", "perceptive", "percy", "perdition", "perennial", "perfect", "perfected", "perfection", "perfectly", "perform", "performance", "performances", "performed", "performer", "performers", "performing", "performs", "perhaps", "peril", "perilous", "perils", "period", "periodically", "periods", "peripheral", "perkins", "perky", "perlman", "permanent", "permanently", "permission", "permit", "permitted", "perpetrated", "perpetrators", "perpetual", "perpetually", "perpetuate", "perplexed", "perplexing", "perry", "persecuted", "persecution", "perseverance", "persistent", "person", "persona", "personable", "personal", "personalities", "personality", "personally", "personas", "personified", "personnel", "persons", "perspective", "perspectives", "persuade", "persuaded", "persuades", "persuasion", "persuasive", "pertwee", "peru", "pervasive", "perverse", "perversely", "perversion", "pervert", "perverted", "pesci", "pesky", "pessimistic", "pet", "pete", "peter", "peters", "peterson", "pets", "petty", "pfeiffer", "pg", "phantasm", "phantom", "phase", "phenomena", "phenomenal", "phenomenally", "phenomenon", "phil", "philadelphia", "philip", "philippe", "philippines", "phillip", "phillips", "philo", "philosopher", "philosophical", "philosophies", "philosophy", "phoenix", "phone", "phoned", "phones", "phony", "photo", "photogenic", "photograph", "photographed", "photographer", "photographers", "photographic", "photographs", "photography", "photos", "phrase", "phrases", "phyllis", "physical", "physically", "physician", "physics", "physique", "pi", "pia", "pianist", "piano", "pic", "pick", "picked", "pickford", "picking", "pickpocket", "picks", "pickup", "picky", "picnic", "pics", "picture", "pictured", "pictures", "picturesque", "pidgeon", "pie", "piece", "pieced", "pieces", "pier", "pierce", "piercing", "pierre", "pig", "pigeon", "piggy", "pigs", "pile", "piles", "pilgrimage", "pill", "pillow", "pills", "pilot", "pilots", "pimp", "pin", "pine", "ping", "pining", "pink", "pinkett", "pinnacle", "pinned", "pino", "pins", "pioneer", "pioneers", "pipe", "piper", "pipes", "pirate", "pirates", "piscopo", "pistol", "pit", "pitch", "pitched", "pitcher", "pitfalls", "pitiable", "pitiful", "pits", "pitt", "pity", "pivotal", "pixar", "pizza", "place", "placed", "placement", "places", "placid", "placing", "plague", "plagued", "plagues", "plain", "plainly", "plains", "plan", "plane", "planes", "planet", "planets", "plank", "planned", "planning", "plans", "plant", "plantation", "planted", "plants", "plastered", "plastic", "plate", "platform", "platinum", "platitudes", "platoon", "plausibility", "plausible", "play", "playboy", "played", "player", "players", "playful", "playfully", "playing", "plays", "playwright", "plea", "plead", "pleads", "pleas", "pleasance", "pleasant", "pleasantly", "please", "pleased", "pleases", "pleasing", "pleasurable", "pleasure", "pleasures", "plentiful", "plenty", "plethora", "plight", "plodding", "plods", "plot", "plotline", "plots", "plotted", "plotting", "plowright", "ploy", "plucked", "plucky", "plug", "plumbing", "plummer", "plump", "plunges", "plus", "pm", "po", "pocket", "pockets", "pod", "podge", "poe", "poem", "poet", "poetic", "poetry", "poets", "poignancy", "poignant", "point", "pointed", "pointing", "pointless", "pointlessly", "pointlessness", "points", "poison", "poisoned", "poisoning", "poisonous", "poke", "poked", "pokemon", "poker", "pokes", "poking", "pol", "poland", "polanski", "polar", "pole", "poles", "police", "policeman", "policemen", "policies", "policy", "polish", "polished", "polite", "politely", "political", "politically", "politician", "politicians", "politics", "pollack", "pollution", "polly", "poltergeist", "pompous", "pond", "ponder", "pondering", "ponderous", "pony", "poo", "pool", "poop", "poor", "poorer", "poorest", "poorly", "pop", "popcorn", "pope", "popped", "popping", "poppins", "pops", "populace", "popular", "popularity", "populate", "populated", "population", "porch", "porky", "porn", "porno", "pornographic", "pornography", "porsche", "port", "porter", "portion", "portions", "portman", "portobello", "portrait", "portraits", "portray", "portrayal", "portrayals", "portrayed", "portraying", "portrays", "portugal", "portuguese", "pose", "posed", "poses", "posey", "posh", "posing", "position", "positions", "positive", "positively", "positives", "posse", "possess", "possessed", "possesses", "possessing", "possession", "possessions", "possessive", "possibilities", "possibility", "possible", "possibly", "post", "postal", "postcard", "posted", "poster", "posters", "posting", "postman", "posts", "posturing", "postwar", "pot", "potato", "potboiler", "potent", "potential", "potentially", "potter", "potty", "pound", "pounding", "pounds", "pour", "poured", "pouring", "pov", "poverty", "pow", "powder", "powell", "power", "powered", "powerful", "powerfully", "powerhouse", "powerless", "powers", "pows", "pr", "practical", "practically", "practice", "practiced", "practices", "practicing", "prairie", "praise", "praised", "praises", "praising", "prancing", "prank", "pranks", "prashant", "pratfalls", "pray", "prayed", "prayer", "prayers", "praying", "pre", "preach", "preached", "preacher", "preaching", "preachy", "preceded", "precedes", "preceding", "precinct", "precious", "precise", "precisely", "precision", "precocious", "preconceived", "preconceptions", "precursor", "predator", "predators", "predatory", "predecessor", "predecessors", "predicament", "predict", "predictability", "predictable", "predictably", "predicted", "predicting", "predominantly", "prefer", "preferable", "preferably", "preference", "preferred", "preferring", "prefers", "pregnancy", "pregnant", "prehistoric", "prejudice", "prejudices", "premature", "prematurely", "premier", "premiere", "premiered", "preminger", "premise", "premises", "preparation", "prepare", "prepared", "prepares", "preparing", "preposterous", "prequel", "presence", "present", "presentation", "presented", "presenter", "presenting", "presents", "preservation", "preserve", "preserved", "president", "presidential", "presley", "press", "pressburger", "pressed", "pressing", "pressure", "pressures", "prestigious", "preston", "presumably", "presume", "presumed", "preteen", "pretend", "pretending", "pretends", "pretense", "pretension", "pretensions", "pretentious", "pretentiousness", "prettier", "pretty", "prevail", "prevails", "prevalent", "prevent", "prevented", "preventing", "prevents", "preview", "previews", "previous", "previously", "prey", "price", "priced", "priceless", "prices", "pride", "priest", "priests", "primal", "primarily", "primary", "prime", "primitive", "prince", "princes", "princess", "principal", "principals", "principle", "principles", "print", "printed", "prints", "prior", "priority", "prison", "prisoner", "prisoners", "prissy", "pristine", "private", "privilege", "privileged", "privy", "prix", "priyadarshan", "prize", "prizes", "pro", "probable", "probably", "probation", "probing", "problem", "problematic", "problems", "procedure", "procedures", "proceed", "proceeded", "proceeding", "proceedings", "proceeds", "process", "proclaimed", "proclaims", "prodigy", "produce", "produced", "producer", "producers", "produces", "producing", "product", "production", "productions", "productive", "products", "profane", "profanity", "profession", "professional", "professionalism", "professionally", "professionals", "professor", "professors", "profile", "profit", "profits", "profound", "profoundly", "program", "programme", "programmed", "programmer", "programmers", "programmes", "programming", "programs", "progress", "progressed", "progresses", "progression", "progressive", "progressively", "prohibition", "project", "projected", "projection", "projects", "prolific", "prologue", "prolonged", "prom", "prominence", "prominent", "prominently", "promiscuity", "promiscuous", "promise", "promised", "promises", "promising", "promisingly", "promo", "promos", "promote", "promoted", "promoter", "promoting", "promotion", "promotional", "prompted", "promptly", "prone", "pronounce", "pronounced", "proof", "prop", "propaganda", "proper", "properly", "property", "prophecy", "prophet", "prophetic", "proportion", "proportions", "proposal", "proposed", "proposes", "proposition", "proprietor", "props", "pros", "prosaic", "prose", "prosecutor", "prospect", "prostitute", "prostitutes", "prostitution", "protagonist", "protagonists", "protect", "protected", "protecting", "protection", "protective", "protector", "protest", "protests", "protocol", "prototype", "protracted", "prot\u00e9g\u00e9", "proud", "proudly", "prove", "proved", "proven", "proverbial", "proves", "provide", "provided", "provides", "providing", "provincial", "proving", "provocative", "provoke", "provoked", "provokes", "provoking", "prowess", "prude", "prudish", "pryor", "ps", "pseudo", "psyche", "psychedelic", "psychiatric", "psychiatrist", "psychic", "psycho", "psychological", "psychologically", "psychologist", "psychology", "psychopath", "psychopathic", "psychopaths", "psychos", "psychosis", "psychotic", "pub", "puberty", "pubescent", "public", "publicist", "publicity", "publicly", "publish", "published", "publisher", "pudding", "puddle", "puerile", "puerto", "puke", "pulitzer", "pull", "pulled", "pulling", "pullman", "pulls", "pulp", "pulse", "pumbaa", "pump", "pumped", "pumping", "pumpkin", "pun", "punch", "punched", "punches", "punching", "punchline", "punctuated", "punish", "punished", "punishing", "punishment", "punk", "punks", "puns", "pupil", "pupils", "puppet", "puppetry", "puppets", "puppies", "puppy", "purchase", "purchased", "purchasing", "pure", "purely", "purest", "purgatory", "puri", "purist", "purists", "purity", "purple", "purports", "purpose", "purposely", "purposes", "purse", "pursue", "pursued", "pursues", "pursuing", "pursuit", "push", "pushed", "pushes", "pushing", "pussy", "put", "putrid", "puts", "putting", "puzzle", "puzzled", "puzzles", "puzzling", "pyle", "pyramid", "pyrotechnics", "python", "quaid", "quaint", "qualified", "qualifies", "qualify", "qualities", "quality", "qualms", "quantity", "quantum", "quarter", "quarters", "quartet", "quasi", "queen", "queens", "queer", "quentin", "quest", "question", "questionable", "questioned", "questioning", "questions", "queue", "quibble", "quibbles", "quick", "quicker", "quickie", "quickly", "quid", "quiet", "quietly", "quincy", "quinn", "quintessential", "quips", "quirkiness", "quirks", "quirky", "quit", "quite", "quits", "quivering", "quo", "quotable", "quote", "quoted", "quotes", "quotient", "quoting", "ra", "rabbit", "rabbits", "rabid", "race", "races", "rachel", "racial", "racing", "racism", "racist", "rack", "racy", "radar", "radha", "radiant", "radiation", "radical", "radically", "radio", "radioactive", "radios", "radium", "rae", "raft", "rag", "rage", "ragged", "raging", "rags", "raid", "raider", "raiders", "railroad", "rails", "railway", "raimi", "rain", "rainbow", "rainer", "raines", "raining", "rains", "rainy", "raise", "raised", "raises", "raising", "raj", "raja", "rajpal", "rally", "ralph", "ram", "rama", "ramble", "rambling", "ramblings", "rambo", "rammed", "ramon", "ramones", "ramp", "rampage", "rampant", "ramsey", "ramshackle", "ran", "ranch", "rancid", "randall", "randolph", "random", "randomly", "randy", "rang", "range", "ranger", "rangers", "ranges", "ranging", "rank", "ranked", "ranking", "ranks", "ransom", "rant", "ranting", "rants", "rao", "raoul", "rap", "rape", "raped", "rapes", "rapid", "rapidly", "raping", "rapist", "rapists", "rapper", "rapture", "raquel", "rare", "rarely", "rarity", "rash", "rat", "rate", "rated", "rates", "rathbone", "rather", "rating", "ratings", "ratio", "rational", "rats", "ratso", "raul", "raunchy", "rave", "raven", "ravenous", "raves", "raving", "ravishing", "raw", "rawal", "ray", "raymond", "razor", "razzie", "re", "rea", "reach", "reached", "reaches", "reaching", "react", "reacted", "reacting", "reaction", "reactionary", "reactions", "reacts", "read", "reader", "readers", "readily", "reading", "readings", "reads", "ready", "reagan", "real", "realise", "realised", "realises", "realising", "realism", "realist", "realistic", "realistically", "realities", "reality", "realization", "realize", "realized", "realizes", "realizing", "really", "realm", "reaper", "rear", "reason", "reasonable", "reasonably", "reasoning", "reasons", "reb", "rebecca", "rebel", "rebellion", "rebellious", "rebels", "rebirth", "rebuilt", "recall", "recalled", "recalls", "recap", "recapture", "receive", "received", "receives", "receiving", "recent", "recently", "reception", "recipe", "recite", "reciting", "reckless", "reckon", "reclaim", "recluse", "recognisable", "recognise", "recognised", "recognition", "recognizable", "recognize", "recognized", "recognizes", "recognizing", "recollection", "recommend", "recommendable", "recommendation", "recommended", "recommending", "reconcile", "reconciliation", "reconsider", "reconstruction", "record", "recorded", "recorder", "recording", "recordings", "records", "recounting", "recover", "recovered", "recovering", "recovery", "recreate", "recreated", "recreating", "recreation", "recruit", "recruited", "recruiting", "recruits", "recurring", "recycled", "red", "redeem", "redeemable", "redeemed", "redeeming", "redeems", "redemption", "redford", "redgrave", "redhead", "redneck", "rednecks", "redone", "reduce", "reduced", "reduces", "redundancy", "redundant", "reed", "reefer", "reeks", "reel", "reeling", "reels", "reese", "reeve", "reeves", "refer", "reference", "referenced", "references", "referred", "referring", "refers", "refined", "reflect", "reflected", "reflecting", "reflection", "reflections", "reflective", "reflects", "reform", "refrain", "refreshing", "refreshingly", "refrigerator", "refuge", "refugee", "refugees", "refund", "refusal", "refuse", "refused", "refuses", "refusing", "regain", "regal", "regard", "regarded", "regarding", "regardless", "regards", "regime", "regina", "reginald", "region", "regional", "register", "registered", "regret", "regrets", "regrettably", "regretted", "regular", "regularly", "regulars", "rehab", "rehash", "rehashed", "rehashing", "rehearsal", "rehearsing", "reid", "reign", "reincarnated", "reincarnation", "reinforce", "reinforced", "reinforces", "reinhold", "reiser", "reject", "rejected", "rejecting", "rejection", "rejects", "rekindle", "relatable", "relate", "related", "relates", "relating", "relation", "relations", "relationship", "relationships", "relative", "relatively", "relatives", "relax", "relaxed", "relaxing", "release", "released", "releases", "releasing", "relegated", "relentless", "relentlessly", "relevance", "relevant", "reliable", "reliance", "relic", "relied", "relief", "relies", "relieve", "relieved", "religion", "religions", "religious", "religiously", "relish", "relive", "reliving", "reloaded", "reluctant", "reluctantly", "rely", "relying", "remade", "remain", "remainder", "remained", "remaining", "remains", "remake", "remakes", "remaking", "remark", "remarkable", "remarkably", "remarked", "remarks", "remastered", "remember", "remembered", "remembering", "remembers", "remind", "reminded", "reminder", "reminding", "reminds", "reminisce", "reminiscent", "reminiscing", "remorse", "remote", "remotely", "removal", "remove", "removed", "removing", "renaissance", "renamed", "render", "rendered", "rendering", "renders", "rendition", "rene", "renee", "renegade", "renewed", "renny", "reno", "renoir", "renowned", "rent", "rental", "rentals", "rented", "renting", "rents", "rep", "repair", "repeat", "repeated", "repeatedly", "repeating", "repeats", "repellent", "repertoire", "repetition", "repetitious", "repetitive", "replace", "replaced", "replacement", "replaces", "replacing", "replay", "replaying", "replete", "replicate", "replied", "replies", "reply", "report", "reported", "reportedly", "reporter", "reporters", "reporting", "reports", "reprehensible", "represent", "representation", "representative", "represented", "representing", "represents", "repressed", "repression", "reprise", "reprises", "reprising", "reptilian", "republic", "republican", "republicans", "repugnant", "repulsed", "repulsion", "repulsive", "reputation", "request", "requiem", "require", "required", "requirement", "requirements", "requires", "requiring", "requisite", "rerun", "reruns", "rescue", "rescued", "rescues", "rescuing", "research", "researched", "researcher", "researching", "resemblance", "resemble", "resembled", "resembles", "resembling", "resent", "resentment", "reservation", "reservations", "reserve", "reserved", "reservoir", "residence", "resident", "residents", "resides", "resigned", "resist", "resistance", "resists", "resolution", "resolve", "resolved", "resonance", "resonate", "resonates", "resort", "resorting", "resorts", "resounding", "resourceful", "resources", "respect", "respectable", "respected", "respectful", "respecting", "respective", "respectively", "respects", "respite", "respond", "responded", "responds", "response", "responses", "responsibilities", "responsibility", "responsible", "rest", "restaurant", "restaurants", "restless", "restoration", "restore", "restored", "restores", "restrained", "restraining", "restraint", "restricted", "restrictions", "restrictive", "restroom", "rests", "result", "resulted", "resulting", "results", "resume", "resurrect", "resurrected", "resurrection", "retail", "retain", "retained", "retaining", "retains", "retard", "retarded", "retelling", "rethink", "retire", "retired", "retirement", "retread", "retreat", "retribution", "retrieve", "retro", "retrospect", "retrospective", "return", "returned", "returning", "returns", "reubens", "reunion", "reunite", "reunited", "reunites", "rev", "reveal", "revealed", "revealing", "reveals", "revel", "revelation", "revelations", "revenge", "revered", "reverend", "reversal", "reverse", "reversed", "review", "reviewed", "reviewer", "reviewers", "reviewing", "reviews", "revisit", "revisited", "revisiting", "revival", "revive", "revived", "revolt", "revolting", "revolution", "revolutionary", "revolve", "revolved", "revolver", "revolves", "revolving", "revue", "reward", "rewarded", "rewarding", "rewards", "rewind", "reworking", "rewrite", "rewrites", "rex", "reynolds", "rhetoric", "rhine", "rhino", "rhode", "rhonda", "rhyme", "rhymes", "rhys", "rhythm", "ribisi", "ribs", "rican", "ricardo", "ricci", "rice", "rich", "richard", "richards", "richardson", "richer", "riches", "richest", "richie", "richly", "richness", "rick", "ricky", "rico", "rid", "ridden", "riddle", "riddled", "ride", "rider", "riders", "rides", "ridicule", "ridiculed", "ridicules", "ridiculous", "ridiculously", "ridiculousness", "riding", "ridley", "rife", "riff", "riffs", "rifle", "rifles", "right", "righteous", "rightful", "rightfully", "rightly", "rights", "rigid", "riley", "ring", "ringing", "ringo", "rings", "ringu", "ringwald", "rio", "riot", "riots", "rip", "ripe", "ripoff", "ripped", "ripper", "ripping", "rips", "rise", "risen", "rises", "risible", "rising", "risk", "risking", "risks", "risky", "risqu\u00e9", "rita", "ritchie", "ritter", "ritual", "rituals", "rival", "rivalry", "rivals", "river", "rivers", "riveted", "riveting", "rizzo", "rko", "roach", "road", "roads", "roam", "roaming", "roar", "roaring", "roasted", "rob", "robbed", "robber", "robbers", "robbery", "robbie", "robbing", "robbins", "robby", "robe", "robert", "roberta", "roberto", "roberts", "robertson", "robin", "robinson", "robocop", "robot", "robotic", "robots", "robs", "robust", "rochester", "rochon", "rock", "rocked", "rocker", "rocket", "rockets", "rockin", "rocking", "rocks", "rockwell", "rocky", "rod", "roddenberry", "roddy", "rode", "rodgers", "rodney", "rodriguez", "roeg", "roger", "rogers", "rogue", "rohmer", "roland", "role", "roles", "roll", "rolled", "roller", "rollicking", "rolling", "rolls", "rom", "roman", "romance", "romances", "romania", "romanian", "romano", "romantic", "romantically", "romanticism", "romanticized", "rome", "romeo", "romero", "romp", "romps", "romy", "ron", "ronald", "ronnie", "ronny", "roof", "rooker", "rookie", "room", "roommate", "roommates", "rooms", "rooney", "roosevelt", "root", "rooted", "rooting", "roots", "rope", "ropes", "rory", "rosanna", "rosario", "roscoe", "rose", "rosemary", "rosenstrasse", "roses", "rosie", "ross", "rosy", "rot", "roth", "rotoscoped", "rotoscoping", "rotten", "rotting", "rouge", "rough", "roughly", "round", "rounded", "rounding", "rounds", "rourke", "rousing", "route", "routine", "routinely", "routines", "row", "rowan", "rowdy", "rowlands", "roy", "royal", "royale", "royalty", "rpg", "rub", "rubbed", "rubber", "rubbing", "rubbish", "rubble", "ruby", "rudd", "rude", "rudimentary", "rudolph", "rudy", "rufus", "rug", "rugged", "ruin", "ruined", "ruining", "ruins", "rukh", "rule", "ruled", "ruler", "rules", "ruling", "rumble", "rumor", "rumored", "rumors", "run", "runaway", "rundown", "runner", "running", "runs", "runtime", "rupert", "rural", "ruse", "rush", "rushed", "rushes", "rushing", "russ", "russel", "russell", "russia", "russian", "russians", "russo", "rusty", "rut", "ruth", "ruthless", "ruthlessly", "ryan", "ryder", "saber", "sabotage", "sabretooth", "sabrina", "sabu", "saccharine", "sack", "sacred", "sacrifice", "sacrificed", "sacrifices", "sacrificing", "sad", "saddened", "sadder", "saddest", "saddled", "saddles", "sadism", "sadistic", "sadly", "sadness", "safe", "safely", "safer", "safety", "saffron", "saga", "saget", "said", "saif", "sail", "sailing", "sailor", "sailors", "saint", "saints", "sake", "salacious", "salad", "salary", "sale", "salem", "sales", "salesman", "sally", "salman", "salon", "saloon", "salt", "salute", "salvage", "salvation", "sam", "samantha", "same", "sammi", "sammo", "sammy", "sample", "samuel", "samurai", "san", "sanchez", "sanctimonious", "sand", "sanders", "sandler", "sandra", "sands", "sandwich", "sandy", "sane", "sang", "sanitized", "sanity", "sank", "sans", "sant", "santa", "sap", "sappy", "saps", "sara", "sarah", "sarandon", "sarcasm", "sarcastic", "sardonic", "sasquatch", "sassy", "sat", "satan", "satanic", "satellite", "satire", "satires", "satiric", "satirical", "satisfaction", "satisfactory", "satisfied", "satisfy", "satisfying", "saturated", "saturday", "saucer", "saucy", "savage", "savagely", "savages", "savant", "save", "saved", "saves", "saving", "savings", "savini", "savior", "savor", "savvy", "saw", "sawyer", "saxon", "say", "saying", "says", "scale", "scales", "scalpel", "scam", "scan", "scandal", "scandalous", "scandinavian", "scant", "scantily", "scar", "scarce", "scarcely", "scare", "scarecrow", "scared", "scares", "scarf", "scarface", "scarier", "scariest", "scaring", "scarlet", "scarlett", "scarred", "scars", "scary", "scathing", "scatman", "scattered", "scenario", "scenarios", "scene", "scenery", "scenes", "scenic", "scent", "sceptical", "schedule", "scheduled", "scheme", "schemes", "scheming", "schindler", "schizophrenic", "schlock", "schlocky", "schmaltz", "schmaltzy", "schneider", "scholar", "scholars", "scholarship", "school", "schooler", "schools", "schrader", "schtick", "schumacher", "schwartzman", "schwarzenegger", "sci", "science", "scientific", "scientist", "scientists", "scifi", "scooby", "scoop", "scope", "score", "scored", "scores", "scoring", "scorpion", "scorsese", "scotland", "scott", "scottish", "scout", "scrap", "scrappy", "scratch", "scratched", "scratches", "scratching", "scrawny", "scream", "screamed", "screaming", "screams", "screeching", "screen", "screened", "screening", "screenings", "screenplay", "screenplays", "screens", "screenwriter", "screenwriters", "screw", "screwball", "screwed", "screwing", "screws", "script", "scripted", "scripting", "scripts", "scripture", "scriptwriter", "scriptwriters", "scrooge", "scrubs", "scrutiny", "sctv", "scully", "sculpture", "scum", "se", "sea", "seagal", "seal", "sealed", "seals", "seaman", "seamless", "seamlessly", "sean", "search", "searched", "searches", "searching", "seas", "seaside", "season", "seasoned", "seasons", "seat", "seated", "seats", "seattle", "sebastian", "secluded", "second", "secondary", "secondly", "seconds", "secret", "secretary", "secretive", "secretly", "secrets", "section", "sections", "secular", "secure", "securing", "security", "seduce", "seduced", "seduces", "seducing", "seduction", "seductive", "see", "seed", "seeds", "seedy", "seeing", "seek", "seeking", "seeks", "seem", "seemed", "seeming", "seemingly", "seems", "seen", "sees", "seething", "segal", "segment", "segments", "segues", "seinfeld", "seldom", "select", "selected", "selection", "selections", "self", "selfish", "selfishness", "selfless", "sell", "seller", "sellers", "selling", "sells", "selma", "selves", "sematary", "semblance", "semester", "semi", "seminal", "sen", "senate", "senator", "send", "sending", "sends", "senior", "sensation", "sensational", "sensationalism", "sensationally", "sense", "senseless", "senses", "sensibilities", "sensibility", "sensible", "sensitive", "sensitively", "sensitivity", "sensual", "sensuality", "sent", "sentence", "sentenced", "sentences", "sentiment", "sentimental", "sentimentality", "sentiments", "sentinel", "separate", "separated", "separately", "separates", "separation", "sepia", "september", "sequel", "sequels", "sequence", "sequences", "serbia", "serbian", "serene", "sergeant", "sergeants", "sergio", "serial", "serials", "series", "serious", "seriously", "seriousness", "sermon", "serpent", "serum", "servant", "servants", "serve", "served", "serves", "service", "serviceable", "services", "serving", "sesame", "session", "sessions", "set", "seth", "sets", "setting", "settings", "settle", "settled", "settles", "settling", "setup", "seuss", "seven", "seventh", "seventies", "seventy", "several", "severe", "severed", "severely", "sewer", "sex", "sexed", "sexes", "sexier", "sexiest", "sexism", "sexist", "sexploitation", "sexual", "sexuality", "sexually", "sexy", "seymour", "sf", "sfx", "sg", "sgt", "sh", "shabby", "shack", "shade", "shades", "shadow", "shadowed", "shadows", "shadowy", "shady", "shaft", "shaggy", "shah", "shahid", "shake", "shaken", "shakes", "shakespeare", "shakespearean", "shaking", "shakti", "shaky", "shall", "shallow", "shambles", "shame", "shameful", "shamefully", "shameless", "shamelessly", "shane", "shanghai", "shannon", "shaolin", "shape", "shaped", "shapes", "shaq", "share", "shared", "shares", "sharif", "sharing", "shark", "sharks", "sharma", "sharon", "sharp", "sharply", "shatner", "shattered", "shattering", "shaun", "shave", "shaved", "shaving", "shaw", "shawn", "shawshank", "she", "shea", "shed", "sheds", "sheedy", "sheen", "sheep", "sheer", "sheesh", "sheet", "sheeta", "sheets", "shefali", "sheffer", "sheila", "shelf", "shell", "shelley", "shelly", "shelter", "sheltered", "shelton", "shelves", "shemp", "shenanigans", "shepard", "shepherd", "sheppard", "sheridan", "sheriff", "sherlock", "sherman", "sheryl", "shes", "shia", "shield", "shields", "shift", "shifting", "shifts", "shifty", "shin", "shine", "shines", "shining", "shintaro", "shiny", "ship", "shipped", "ships", "shirley", "shirt", "shirts", "shitty", "shivers", "sho", "shock", "shocked", "shocker", "shocking", "shockingly", "shocks", "shoddy", "shoe", "shoes", "shoestring", "sholay", "shone", "shook", "shoot", "shooter", "shooting", "shootings", "shootout", "shootouts", "shoots", "shop", "shopping", "shops", "shore", "short", "shortage", "shortcomings", "shortened", "shorter", "shortly", "shorts", "shot", "shotgun", "shots", "should", "shoulder", "shoulders", "shouldn", "shout", "shouted", "shouting", "shouts", "shove", "shoved", "shovel", "shoves", "shoving", "show", "showcase", "showcased", "showcases", "showcasing", "showdown", "showed", "shower", "showers", "showgirls", "showing", "showings", "shown", "shows", "showtime", "showy", "shred", "shreds", "shrek", "shrewd", "shriek", "shrieking", "shrill", "shrink", "shrouded", "shtick", "shudder", "shue", "shuffle", "shunned", "shut", "shutting", "shuttle", "shy", "sibling", "siblings", "sic", "sick", "sickening", "sickly", "sickness", "sid", "side", "sided", "sidekick", "sidekicks", "sides", "sidewalk", "sideways", "sidney", "siege", "siegfried", "sierra", "sigh", "sight", "sights", "sign", "signal", "signals", "signature", "signe", "signed", "significance", "significant", "significantly", "signing", "signs", "sigourney", "silence", "silences", "silent", "silently", "silents", "silhouette", "silk", "sillier", "silliest", "silliness", "silly", "silver", "silverman", "silverstone", "simba", "similar", "similarities", "similarity", "similarly", "simmons", "simon", "simone", "simple", "simpler", "simplest", "simplicity", "simplified", "simplistic", "simply", "simpson", "simpsons", "simulated", "simultaneously", "sin", "sinatra", "since", "sincere", "sincerely", "sincerity", "sinclair", "sinful", "sing", "singer", "singers", "singh", "singin", "singing", "single", "singles", "singleton", "sings", "singular", "singularly", "sinister", "sink", "sinking", "sinks", "sins", "sir", "siren", "sirens", "sirk", "siskel", "sissy", "sister", "sisters", "sit", "sitcom", "sitcoms", "site", "sites", "sith", "sits", "sitting", "situated", "situation", "situations", "siu", "six", "sixteen", "sixth", "sixties", "sixty", "size", "sized", "sizes", "skating", "skeleton", "skeletons", "skeptical", "skepticism", "sketch", "sketches", "sketchy", "skewed", "ski", "skies", "skill", "skilled", "skillful", "skillfully", "skills", "skimpy", "skin", "skinned", "skinner", "skinny", "skip", "skipped", "skipping", "skips", "skirt", "skirts", "skit", "skits", "skull", "skulls", "sky", "skywalker", "slack", "slacker", "slain", "slam", "slammed", "slams", "slang", "slant", "slap", "slapped", "slapping", "slaps", "slapstick", "slash", "slashed", "slasher", "slashers", "slashing", "slated", "slater", "slaughter", "slaughtered", "slaughterhouse", "slaughtering", "slave", "slavery", "slaves", "slavic", "slayer", "sleaze", "sleazy", "sledgehammer", "sleek", "sleep", "sleeper", "sleeping", "sleepless", "sleeps", "sleepwalkers", "sleepwalking", "sleepy", "sleeve", "slept", "sleuth", "slew", "slice", "sliced", "slicing", "slick", "slide", "slides", "sliding", "slight", "slightest", "slightly", "slim", "slime", "slimy", "slip", "slipped", "slipper", "slipping", "slips", "slit", "sloane", "slob", "slop", "sloppy", "slot", "sloth", "slow", "slowed", "slower", "slowing", "slowly", "slows", "sludge", "slug", "sluggish", "slugs", "slum", "slumber", "slumming", "slums", "slut", "slutty", "sly", "smack", "smacks", "small", "smaller", "smallest", "smallville", "smarmy", "smart", "smarter", "smartly", "smash", "smashed", "smashes", "smashing", "smell", "smells", "smile", "smiled", "smiles", "smiling", "smirk", "smith", "smitten", "smoke", "smokes", "smoking", "smooth", "smoothly", "smug", "smuggling", "smut", "snack", "snail", "snake", "snakes", "snap", "snapped", "snapping", "snappy", "snaps", "snapshot", "snare", "snarling", "snatch", "snatched", "snatchers", "sneak", "sneaking", "sneaks", "sneaky", "sneering", "snicker", "sniff", "sniffing", "sniper", "snipers", "snipes", "snippet", "snippets", "snl", "snob", "snobbish", "snobby", "snobs", "snooze", "snore", "snot", "snow", "snowman", "snowy", "snuck", "snuff", "so", "soaked", "soap", "soaps", "sob", "sobbing", "sober", "soccer", "social", "socialist", "socialite", "socially", "societal", "societies", "society", "socio", "sociological", "sociopath", "sock", "socks", "soderbergh", "sofia", "soft", "softcore", "software", "soil", "sol", "solaris", "sold", "soldier", "soldiers", "sole", "solely", "soles", "solicitor", "solid", "solidly", "soliloquy", "solitary", "solitude", "solo", "solomon", "solution", "solutions", "solve", "solved", "solves", "solving", "somber", "sombre", "some", "somebody", "someday", "somehow", "someone", "someones", "someplace", "somerset", "something", "somethings", "sometime", "sometimes", "somewhat", "somewhere", "son", "sondra", "song", "songs", "songwriter", "sonia", "sonny", "sons", "soo", "soon", "sooner", "sooo", "soooo", "sooooo", "sophia", "sophie", "sophisticated", "sophistication", "sophomore", "sophomoric", "soprano", "sopranos", "sorbonne", "sorcerer", "sorcery", "sordid", "sore", "sorely", "sorrow", "sorrows", "sorry", "sort", "sorta", "sorted", "sorts", "sorvino", "sought", "soul", "soulful", "soulless", "souls", "sound", "sounded", "sounding", "sounds", "soundtrack", "soundtracks", "soup", "sour", "source", "sources", "soutendijk", "south", "southern", "southwest", "soviet", "sox", "soylent", "sp", "space", "spacecraft", "spacek", "spaces", "spaceship", "spaceships", "spacey", "spade", "spader", "spades", "spaghetti", "spain", "spall", "span", "spanish", "spanning", "spans", "spare", "spared", "spark", "sparkle", "sparkling", "sparks", "sparring", "sparse", "spat", "spawn", "spawned", "speak", "speakeasy", "speaker", "speakers", "speaking", "speaks", "spear", "spears", "special", "specialist", "specialized", "specially", "specials", "specialty", "species", "specific", "specifically", "specifics", "spectacle", "spectacular", "spectacularly", "spectator", "spectators", "spectre", "spectrum", "speculate", "speculation", "speech", "speeches", "speechless", "speed", "speeding", "speeds", "spell", "spellbound", "spelled", "spelling", "spells", "spencer", "spend", "spending", "spends", "spent", "sperm", "spew", "spewing", "sphere", "sphinx", "spice", "spiced", "spider", "spiderman", "spiders", "spielberg", "spies", "spike", "spill", "spilled", "spilling", "spin", "spinal", "spine", "spinning", "spins", "spinster", "spiral", "spirals", "spirit", "spirited", "spirits", "spiritual", "spirituality", "spiritually", "spit", "spite", "spits", "spitting", "splash", "splashes", "splatter", "splattered", "splendid", "splendidly", "splendor", "spliced", "split", "splitting", "spock", "spoil", "spoiled", "spoiler", "spoilers", "spoiling", "spoils", "spoilt", "spoke", "spoken", "sponsored", "spontaneity", "spontaneous", "spontaneously", "spoof", "spoofing", "spoofs", "spook", "spooky", "spoon", "spoons", "sporadic", "sporadically", "sport", "sporting", "sports", "spot", "spotlight", "spots", "spotted", "spotting", "spouse", "spout", "spouting", "spouts", "sprawling", "spray", "sprayed", "spraying", "spread", "spreading", "spreads", "spree", "spring", "springer", "springs", "sprinkled", "spun", "spunky", "spur", "spy", "spying", "squad", "squalor", "squandered", "square", "squarely", "squares", "squeaky", "squeamish", "squeeze", "squirm", "sr", "ss", "st", "stab", "stabbed", "stabbing", "stability", "stable", "stabs", "stacey", "stack", "stacy", "staden", "stadium", "staff", "stage", "stagecoach", "staged", "stages", "staggering", "staging", "stagnant", "stagy", "stahl", "stained", "staircase", "stairs", "stairway", "stake", "stakes", "stale", "stalin", "stalk", "stalked", "stalker", "stalking", "stalks", "stallion", "stallone", "stalwart", "stamos", "stamp", "stamped", "stan", "stance", "stand", "standard", "standards", "standing", "standout", "standpoint", "stands", "standup", "stanley", "stanwyck", "staple", "stapleton", "star", "stardom", "stardust", "stare", "stared", "stares", "stargate", "staring", "stark", "starlet", "starr", "starred", "starring", "stars", "starship", "start", "started", "starters", "starting", "startled", "startling", "starts", "starvation", "starved", "starving", "starz", "stash", "state", "stated", "statement", "statements", "states", "statham", "static", "stating", "station", "stationed", "stations", "statistics", "statue", "statues", "stature", "status", "stay", "stayed", "staying", "stays", "steadily", "steady", "steal", "stealing", "steals", "stealth", "steam", "steaming", "steamy", "steel", "steele", "steep", "steer", "steiner", "stella", "stellar", "stem", "stems", "step", "stepfather", "stephanie", "stephen", "stephens", "stepmother", "stepped", "stepping", "steps", "stereo", "stereotype", "stereotyped", "stereotypes", "stereotypical", "stereotyping", "sterile", "sterling", "stern", "steve", "steven", "stevens", "stevenson", "stevie", "stew", "stewart", "stick", "sticking", "sticks", "sticky", "stiff", "stifler", "stifling", "stiles", "still", "stiller", "stills", "stilted", "stimulate", "stimulating", "sting", "stink", "stinker", "stinkers", "stinking", "stinks", "stint", "stir", "stirred", "stirring", "stitches", "stock", "stocks", "stockwell", "stoic", "stole", "stolen", "stoltz", "stomach", "stomping", "stone", "stoned", "stoner", "stones", "stood", "stooge", "stooges", "stoop", "stop", "stopped", "stopping", "stops", "storage", "store", "stores", "stories", "storm", "storms", "stormy", "story", "storyline", "storylines", "storyteller", "storytelling", "stowe", "straight", "straightforward", "strain", "strained", "strains", "strait", "strand", "stranded", "strands", "strange", "strangelove", "strangely", "strangeness", "stranger", "strangers", "strangest", "strangle", "strangled", "strangler", "strapped", "strategy", "strathairn", "stratten", "stratton", "strauss", "straw", "stray", "strays", "streak", "stream", "streep", "street", "streetcar", "streets", "streisand", "strength", "strengths", "stress", "stressed", "stressful", "stretch", "stretched", "stretches", "stretching", "stricken", "strict", "strictly", "stride", "strides", "strife", "strike", "strikes", "striking", "strikingly", "strindberg", "string", "strings", "strip", "stripes", "stripped", "stripper", "strippers", "stripping", "strips", "striptease", "strive", "strives", "striving", "strode", "stroke", "strokes", "stroll", "strong", "stronger", "strongest", "strongly", "struck", "structurally", "structure", "structured", "struggle", "struggled", "struggles", "struggling", "strung", "strut", "strutting", "stuart", "stubborn", "stubby", "stuck", "stud", "studded", "student", "students", "studied", "studies", "studio", "studios", "study", "studying", "stuff", "stuffed", "stuffy", "stumble", "stumbled", "stumbles", "stumbling", "stunk", "stunned", "stunning", "stunningly", "stunt", "stuntman", "stunts", "stupendous", "stupid", "stupider", "stupidest", "stupidity", "stupidly", "sturdy", "stuttering", "style", "styled", "styles", "stylised", "stylish", "stylistic", "stylistically", "stylized", "suave", "sub", "subconscious", "subdued", "subgenre", "subject", "subjected", "subjective", "subjects", "sublime", "subliminal", "submarine", "submission", "submit", "submitted", "subplot", "subplots", "subs", "subscribe", "subsequent", "subsequently", "substance", "substandard", "substantial", "substantive", "substitute", "substituting", "subtext", "subtitle", "subtitled", "subtitles", "subtle", "subtleties", "subtlety", "subtly", "suburb", "suburban", "suburbia", "suburbs", "subversive", "subway", "succeed", "succeeded", "succeeding", "succeeds", "success", "successes", "successful", "successfully", "succession", "successor", "succinctly", "succumb", "succumbs", "such", "suck", "sucked", "sucker", "suckered", "suckers", "sucking", "sucks", "sudden", "suddenly", "sue", "suffer", "suffered", "suffering", "suffers", "suffice", "sufficient", "sufficiently", "sugar", "sugary", "suggest", "suggested", "suggesting", "suggestion", "suggestive", "suggests", "suicidal", "suicide", "suicides", "suit", "suitable", "suitably", "suite", "suited", "suitor", "suits", "sullavan", "sullen", "sullivan", "sultry", "sum", "summarize", "summarized", "summary", "summation", "summed", "summer", "summers", "summing", "summon", "summoned", "sumptuous", "sums", "sun", "sundance", "sunday", "sung", "sunglasses", "sunk", "sunlight", "sunny", "sunrise", "sunset", "sunshine", "super", "superb", "superbly", "superficial", "superficiality", "superficially", "superfluous", "superhero", "superheroes", "superhuman", "superimposed", "superior", "superiority", "superiors", "superlative", "superman", "supermarket", "supernatural", "superpowers", "superstar", "superstars", "supervisor", "supplied", "supplies", "supply", "support", "supported", "supporter", "supporters", "supporting", "supportive", "supports", "suppose", "supposed", "supposedly", "suppress", "suppressed", "supremacy", "supreme", "supremely", "sure", "surely", "surf", "surface", "surfer", "surfers", "surfing", "surgeon", "surgery", "surly", "surpass", "surpassed", "surpasses", "surprise", "surprised", "surprises", "surprising", "surprisingly", "surreal", "surrealism", "surrealistic", "surrender", "surrogate", "surround", "surrounded", "surrounding", "surroundings", "surrounds", "surveillance", "survival", "survive", "survived", "survives", "surviving", "survivor", "survivors", "susan", "susannah", "suspect", "suspected", "suspects", "suspend", "suspended", "suspense", "suspenseful", "suspension", "suspicion", "suspicions", "suspicious", "suspiciously", "sustain", "sustained", "sutherland", "suv", "suzanne", "swallow", "swallowed", "swamp", "swanson", "swashbuckling", "swat", "sway", "swayed", "swayze", "swear", "swearing", "swears", "sweat", "sweater", "sweating", "sweaty", "sweden", "swedish", "sweeney", "sweep", "sweeping", "sweeps", "sweet", "sweetheart", "sweetly", "sweetness", "sweets", "swell", "swelling", "swept", "swift", "swim", "swimming", "swimsuit", "swine", "swing", "swinging", "swings", "swiss", "switch", "switched", "switches", "switching", "switzerland", "sword", "swordplay", "swords", "swordsman", "sworn", "sybil", "sydney", "sydow", "sykes", "sylvester", "sylvia", "symbol", "symbolic", "symbolism", "symbols", "sympathetic", "sympathies", "sympathise", "sympathize", "sympathy", "symphony", "symptoms", "sync", "synchronized", "syndrome", "synonymous", "synopsis", "synthesizer", "syrupy", "system", "systems", "table", "tables", "tabloid", "taboo", "taboos", "taciturn", "tack", "tacked", "tackle", "tackled", "tackles", "tackling", "tacky", "tactic", "tactics", "tad", "tadanobu", "tag", "tagged", "tagline", "tail", "tailor", "tailored", "tails", "tainted", "taiwanese", "takashi", "take", "taken", "takes", "taking", "tale", "talent", "talented", "talentless", "talents", "tales", "talk", "talkative", "talked", "talkie", "talkies", "talking", "talks", "talky", "tall", "taller", "tamblyn", "tame", "tamed", "tamer", "tan", "tang", "tangible", "tangled", "tango", "tank", "tanks", "tap", "tape", "taped", "tapes", "tapestry", "taping", "tapping", "taps", "tara", "tarantino", "target", "targeted", "targets", "tarkovsky", "tarnished", "tarot", "tarzan", "tashan", "task", "tasks", "taste", "tasteful", "tastefully", "tasteless", "tastes", "tasty", "tate", "tattoo", "tattooed", "taught", "taunting", "taut", "tautou", "tawdry", "tax", "taxes", "taxi", "taylor", "tcm", "tea", "teach", "teacher", "teachers", "teaches", "teaching", "teachings", "team", "teamed", "teaming", "teams", "teamwork", "tear", "tearful", "tearing", "tearjerker", "tears", "tease", "teased", "teases", "teasing", "tech", "technical", "technically", "technicolor", "technique", "techniques", "techno", "technological", "technology", "ted", "teddy", "tedious", "tediously", "tedium", "tee", "teen", "teenage", "teenaged", "teenager", "teenagers", "teens", "teeny", "teeth", "tel", "telegraphed", "telephone", "telescope", "televised", "television", "tell", "teller", "telling", "tells", "telly", "temper", "temperament", "temperature", "tempered", "tempest", "template", "temple", "tempo", "temporal", "temporarily", "temporary", "temptation", "tempted", "tempting", "ten", "tenant", "tenants", "tend", "tended", "tendencies", "tendency", "tender", "tenderness", "tending", "tends", "tennessee", "tennis", "tenor", "tens", "tense", "tension", "tensions", "tent", "tentative", "tenth", "tents", "tenuous", "tepid", "teri", "term", "termed", "terminal", "terminally", "terminator", "terms", "terrain", "terri", "terrible", "terribly", "terrific", "terrifically", "terrified", "terrifying", "terrifyingly", "territories", "territory", "terror", "terrorism", "terrorist", "terrorists", "terrorize", "terrorized", "terrorizing", "terry", "tess", "test", "testament", "tested", "testimony", "testing", "testosterone", "tests", "texan", "texas", "text", "textbook", "texts", "texture", "th", "thai", "thailand", "than", "thank", "thankful", "thankfully", "thankless", "thanks", "thanksgiving", "that", "thats", "thaw", "the", "theater", "theaters", "theatre", "theatres", "theatrical", "theatrically", "thee", "theft", "their", "theirs", "thelma", "them", "thematic", "thematically", "theme", "themed", "themes", "themselves", "then", "theo", "theodore", "theology", "theoretically", "theories", "theory", "therapist", "therapy", "there", "thereafter", "thereby", "therefore", "therein", "thereof", "theresa", "theron", "these", "thesis", "thespian", "they", "thick", "thief", "thieves", "thin", "thing", "things", "think", "thinking", "thinks", "thinly", "thinner", "third", "thirdly", "thirds", "thirst", "thirsty", "thirteen", "thirties", "thirty", "this", "tho", "thom", "thomas", "thompson", "thomson", "thorn", "thornton", "thorough", "thoroughly", "those", "thou", "though", "thought", "thoughtful", "thoughtfully", "thoughts", "thousand", "thousands", "thread", "threadbare", "threads", "threat", "threaten", "threatened", "threatening", "threatens", "threats", "three", "threesome", "threshold", "threw", "thrill", "thrilled", "thriller", "thrillers", "thrilling", "thrills", "throat", "throats", "throbbing", "throne", "through", "throughly", "throughout", "throw", "throwaway", "throwback", "throwing", "thrown", "throws", "thru", "thrust", "thug", "thugs", "thumb", "thumbs", "thunder", "thunderbirds", "thurman", "thus", "thwart", "thwarted", "tibet", "tibetan", "tick", "ticked", "ticket", "tickets", "ticking", "tide", "tides", "tidy", "tie", "tied", "tier", "tierney", "ties", "tiffany", "tiger", "tigerland", "tight", "tighter", "tightly", "til", "till", "tilly", "tim", "timberlake", "time", "timed", "timeless", "timely", "timer", "timers", "times", "timid", "timing", "timmy", "timon", "timothy", "tin", "tina", "tiny", "tip", "tips", "tire", "tired", "tiresome", "tiring", "tissue", "tissues", "titanic", "titans", "titillation", "title", "titled", "titles", "tits", "titular", "tng", "to", "toad", "toast", "tobe", "toby", "today", "todays", "todd", "toddler", "toe", "toes", "together", "toilet", "toilets", "token", "tokyo", "told", "tolerable", "tolerance", "tolerant", "tolerate", "tolerated", "tolkien", "toll", "tom", "tomato", "tomatoes", "tomb", "tomboy", "tomei", "tomlinson", "tommy", "tomorrow", "ton", "tone", "toned", "tones", "tongue", "toni", "tonight", "tons", "tony", "too", "took", "tool", "toolbox", "toole", "tools", "tooth", "top", "topic", "topical", "topics", "topless", "topped", "topping", "tops", "torch", "torches", "tore", "torment", "tormented", "tormentors", "torments", "torn", "tornado", "toro", "toronto", "torso", "torture", "tortured", "tortures", "torturing", "torturous", "tos", "toss", "tossed", "tosses", "tossing", "total", "totally", "toting", "toto", "touch", "touched", "touches", "touching", "touchy", "tough", "tougher", "toughest", "toughness", "tour", "touring", "tourist", "tourists", "tournament", "tourneur", "touted", "tow", "toward", "towards", "towel", "tower", "towering", "towers", "town", "towns", "townsend", "townsfolk", "townspeople", "toxic", "toy", "toys", "trace", "traced", "traces", "tracey", "track", "tracked", "tracking", "tracks", "tract", "tracy", "trade", "trademark", "trademarks", "trader", "traders", "trades", "trading", "tradition", "traditional", "traditionally", "traditions", "traffic", "trafficking", "tragedies", "tragedy", "tragic", "tragically", "trail", "trailer", "trailers", "trails", "train", "trained", "trainer", "training", "trains", "trait", "traitor", "traits", "tramp", "trance", "transcend", "transcends", "transfer", "transfered", "transferred", "transfixed", "transform", "transformation", "transformations", "transformed", "transformers", "transforming", "transforms", "transition", "transitions", "translate", "translated", "translates", "translation", "translator", "transmission", "transmitted", "transparent", "transpires", "transplant", "transport", "transported", "transsexual", "transvestite", "transylvania", "trap", "trapped", "trappings", "traps", "trash", "trashed", "trashy", "trauma", "traumas", "traumatic", "traumatized", "travel", "traveled", "traveler", "travelers", "traveling", "travelled", "travelling", "travelogue", "travels", "travesty", "travis", "travolta", "treacherous", "tread", "treason", "treasure", "treasured", "treasury", "treat", "treated", "treating", "treatment", "treats", "treaty", "tree", "trees", "trek", "trelkovsky", "tremendous", "tremendously", "trench", "trend", "trends", "trendy", "trent", "trevor", "trey", "triad", "triads", "trial", "trials", "triangle", "tribal", "tribe", "tribeca", "tribes", "tribulations", "tribute", "trick", "tricked", "tricks", "tricky", "tried", "trier", "tries", "trifle", "trigger", "trilogy", "trim", "trinity", "trio", "trip", "tripe", "triple", "tripping", "trippy", "trips", "tristan", "trite", "triumph", "triumphant", "triumphs", "trivia", "trivial", "trojan", "troll", "troma", "troop", "troopers", "troops", "trophy", "tropical", "trot", "trouble", "troubled", "troubles", "troublesome", "troubling", "troupe", "trousers", "troy", "truck", "trucks", "true", "truer", "truffaut", "truly", "truman", "trump", "trumpet", "trunk", "trust", "trusted", "trusting", "trusty", "truth", "truthful", "truthfully", "truths", "try", "trying", "tsui", "tub", "tube", "tubes", "tucci", "tucker", "tuesday", "tug", "tully", "tumbling", "tumultuous", "tune", "tuned", "tunes", "tung", "tuning", "tunnel", "tunnels", "turbulent", "turd", "turf", "turgid", "turkey", "turkeys", "turkish", "turmoil", "turn", "turned", "turner", "turning", "turns", "turtle", "turturro", "tv", "twain", "twelve", "twenties", "twentieth", "twenty", "twice", "twilight", "twin", "twinkle", "twins", "twist", "twisted", "twisting", "twists", "twisty", "twit", "two", "tycoon", "tying", "tyler", "tyne", "type", "typecast", "typed", "types", "typical", "typically", "typing", "tyranny", "tyrone", "tyson", "uber", "ubiquitous", "ufo", "ugh", "ugliest", "ugliness", "ugly", "uh", "uk", "ulli", "ulrich", "ultimate", "ultimately", "ultimatum", "ultra", "um", "uma", "umm", "un", "una", "unabashed", "unable", "unacceptable", "unanswered", "unappealing", "unarmed", "unattractive", "unavailable", "unavoidable", "unaware", "unbalanced", "unbearable", "unbearably", "unbeatable", "unbeknownst", "unbelievable", "unbelievably", "unbiased", "unborn", "uncanny", "uncaring", "uncensored", "uncertain", "uncertainty", "uncle", "unclear", "uncomfortable", "uncomfortably", "uncommon", "uncompromising", "unconnected", "unconscious", "unconsciously", "uncontrollable", "unconventional", "unconvincing", "uncover", "uncovered", "uncovering", "uncovers", "uncredited", "uncut", "undead", "undemanding", "undeniable", "undeniably", "under", "underage", "underbelly", "undercover", "undercurrent", "undercut", "underdeveloped", "underdog", "underestimated", "undergo", "undergoes", "underground", "underlines", "underlings", "underlying", "undermine", "undermined", "undermines", "undermining", "underneath", "underpinnings", "underrated", "underscores", "understand", "understandable", "understandably", "understanding", "understands", "understated", "understatement", "understood", "undertone", "undertones", "underused", "underwater", "underwear", "underwhelming", "underwood", "underworld", "underwritten", "undeserved", "undeveloped", "undisputed", "undistinguished", "undone", "undoubtedly", "undressed", "undying", "unease", "uneasy", "unedited", "uneducated", "unemotional", "unemployed", "unemployment", "unengaging", "uneven", "uneventful", "unexciting", "unexpected", "unexpectedly", "unexplained", "unfair", "unfairly", "unfaithful", "unfamiliar", "unfathomable", "unfeeling", "unfilmable", "unfinished", "unflinching", "unfocused", "unfold", "unfolded", "unfolding", "unfolds", "unforgettable", "unforgivable", "unforgiving", "unfortunate", "unfortunately", "unfriendly", "unfulfilled", "unfunny", "unger", "unhappily", "unhappy", "unharmed", "unhealthy", "unheard", "unhinged", "uniform", "uniformly", "uniforms", "unimaginative", "unimportant", "unimpressed", "unimpressive", "uninhibited", "uninitiated", "uninspired", "uninspiring", "unintelligent", "unintelligible", "unintended", "unintentional", "unintentionally", "uninterested", "uninteresting", "uninvolving", "union", "unique", "uniquely", "uniqueness", "unit", "unite", "united", "units", "unity", "universal", "universally", "universe", "university", "unjustly", "unknowingly", "unknown", "unknowns", "unleash", "unleashed", "unleashes", "unless", "unlikable", "unlike", "unlikeable", "unlikely", "unlimited", "unlock", "unlucky", "unmemorable", "unmistakable", "unmotivated", "unnamed", "unnatural", "unnecessarily", "unnecessary", "unnerving", "unnoticed", "unobtrusive", "unofficial", "unoriginal", "unorthodox", "unpleasant", "unpopular", "unprecedented", "unpredictability", "unpredictable", "unpretentious", "unprofessional", "unquestionably", "unrated", "unravel", "unraveling", "unravels", "unreal", "unrealistic", "unreasonable", "unrecognizable", "unrelated", "unrelenting", "unremarkable", "unresolved", "unrest", "unsatisfied", "unsatisfying", "unsavory", "unscathed", "unscrupulous", "unseen", "unsettling", "unsolved", "unsophisticated", "unspeakable", "unspoken", "unstable", "unstoppable", "unsubtle", "unsuccessful", "unsuccessfully", "unsung", "unsure", "unsurprisingly", "unsuspecting", "unsympathetic", "untalented", "unthinkable", "until", "untimely", "unto", "untouched", "untrue", "unusual", "unusually", "unwanted", "unwatchable", "unwavering", "unwilling", "unwillingness", "unwittingly", "unworthy", "up", "upbeat", "upbringing", "upcoming", "update", "updated", "upgrade", "upheaval", "uplifting", "upon", "upper", "upright", "uproar", "ups", "upscale", "upset", "upsets", "upsetting", "upside", "upstairs", "uptight", "upward", "upwards", "urban", "urbane", "urge", "urgency", "urgent", "urges", "urging", "ursula", "us", "usa", "usage", "use", "used", "useful", "useless", "user", "users", "uses", "usher", "using", "ussr", "ustinov", "usual", "usually", "utah", "utility", "utilize", "utilized", "utilizes", "utilizing", "utmost", "utopia", "utter", "uttered", "uttering", "utterly", "utters", "uwe", "vacant", "vacation", "vacuous", "vacuum", "vader", "vagina", "vague", "vaguely", "vain", "val", "valentine", "valerie", "valiant", "valid", "validity", "valley", "valuable", "value", "values", "vamp", "vampire", "vampires", "van", "vance", "vancouver", "vanessa", "vanilla", "vanish", "vanished", "vanishes", "vanishing", "vanities", "vanity", "vapid", "vargas", "variable", "variant", "variation", "variations", "varied", "varies", "variety", "various", "vartan", "vary", "varying", "vast", "vastly", "vaudeville", "vaughn", "vault", "vaults", "vcr", "ve", "veers", "vega", "vegas", "vegetables", "vehicle", "vehicles", "veidt", "veil", "veiled", "vein", "veins", "velvet", "vendetta", "veneer", "venezuela", "venezuelan", "vengeance", "vengeful", "venice", "venom", "venomous", "venoms", "vent", "ventura", "venture", "ventures", "venturing", "venue", "venus", "vera", "verbal", "verbally", "verdict", "verge", "verhoeven", "verify", "verisimilitude", "veritable", "verite", "vermin", "verne", "vernon", "veronica", "versa", "versatile", "versatility", "verse", "version", "versions", "versus", "vertigo", "verve", "very", "vessel", "vet", "veteran", "veterans", "vets", "vh1", "vhs", "via", "viable", "vibe", "vibes", "vibrant", "vic", "vice", "vicious", "vicki", "victim", "victimized", "victims", "victor", "victoria", "victorian", "victory", "vidal", "video", "videos", "videotape", "vidor", "vienna", "vietnam", "vietnamese", "view", "viewed", "viewer", "viewers", "viewing", "viewings", "viewpoint", "viewpoints", "views", "viggo", "vigilante", "vignettes", "vijay", "viking", "vikings", "vile", "villa", "village", "villagers", "villages", "villain", "villainess", "villainous", "villains", "vince", "vincent", "vincente", "vincenzo", "vinnie", "vinny", "vintage", "vinyl", "violated", "violation", "violence", "violent", "violently", "violin", "vipul", "virgin", "virginal", "virginia", "virginity", "virgins", "virtual", "virtually", "virtue", "virtues", "virtuous", "virulent", "virus", "visage", "visceral", "visconti", "visible", "visibly", "vision", "visionary", "visions", "visit", "visited", "visiting", "visitor", "visitors", "visits", "vistas", "visual", "visually", "visuals", "vital", "vitality", "viva", "vivacious", "vivian", "vivid", "vividly", "vixen", "vocabulary", "vocal", "vocals", "vogue", "voice", "voiced", "voices", "void", "voight", "volatile", "volcano", "volume", "volumes", "volunteer", "volunteers", "vomit", "vomiting", "von", "vonnegut", "voodoo", "vortex", "vote", "voted", "voters", "votes", "voting", "vows", "voyage", "voyager", "voyeur", "voyeurism", "vs", "vu", "vulcan", "vulgar", "vulgarity", "vulnerability", "vulnerable", "wackiness", "wacko", "wacky", "waco", "wafer", "wage", "wager", "wages", "wagner", "wagon", "wahlberg", "waif", "wailing", "waist", "wait", "waited", "waiter", "waiting", "waitress", "waits", "wake", "wakes", "waking", "wal", "wales", "walk", "walked", "walken", "walker", "walking", "walks", "wall", "wallace", "wallach", "wallet", "wallop", "wallow", "walls", "wally", "walmart", "walrus", "walsh", "walt", "walter", "walters", "wan", "wanda", "wander", "wandered", "wandering", "wanders", "wang", "wanna", "wannabe", "wannabes", "want", "wanted", "wanting", "wants", "war", "ward", "warden", "wardrobe", "wards", "warehouse", "warfare", "warhol", "warhols", "warlord", "warm", "warming", "warmly", "warms", "warmth", "warn", "warned", "warner", "warners", "warning", "warnings", "warns", "warp", "warped", "warrant", "warranted", "warrants", "warren", "warring", "warrior", "warriors", "wars", "wartime", "warts", "wary", "was", "wash", "washed", "washing", "washington", "wasn", "wasnt", "waste", "wasted", "wasteland", "waster", "wastes", "wasting", "watch", "watchable", "watched", "watcher", "watchers", "watches", "watching", "water", "watered", "waterfall", "waterfront", "waterman", "waters", "watson", "watts", "wave", "waves", "waving", "wax", "way", "wayans", "wayne", "ways", "wayward", "wb", "we", "weak", "weaker", "weakest", "weakness", "weaknesses", "wealth", "wealthy", "weapon", "weaponry", "weapons", "wear", "wearing", "wears", "weary", "weather", "weave", "weaver", "weaves", "weaving", "web", "weber", "website", "websites", "webster", "wed", "wedding", "weddings", "wee", "weed", "week", "weekend", "weekly", "weeks", "weep", "weeping", "weepy", "weigh", "weight", "weir", "weird", "weirder", "weirdest", "weirdly", "weirdness", "weirdo", "weissmuller", "weisz", "welch", "welcome", "welcomed", "welfare", "well", "weller", "welles", "wellington", "wells", "welsh", "wendigo", "wendt", "wendy", "went", "were", "weren", "werewolf", "werewolves", "werner", "wes", "wesley", "west", "western", "westerners", "westerns", "wet", "whack", "whacked", "whale", "wham", "what", "whatever", "whatnot", "whats", "whatsoever", "wheel", "wheelchair", "wheels", "when", "whenever", "where", "whereabouts", "whereas", "whereby", "wherein", "wherever", "whether", "whew", "which", "whichever", "while", "whilst", "whim", "whimsical", "whine", "whining", "whiny", "whip", "whipped", "whips", "whirlwind", "whiskey", "whisper", "whistling", "whit", "white", "whites", "whiz", "who", "whoa", "whodunit", "whodunnit", "whoever", "whole", "wholeheartedly", "wholesome", "wholly", "whom", "whomever", "whoopi", "whore", "whores", "whose", "why", "wicked", "wickedly", "wicker", "wide", "widely", "wider", "widescreen", "widmark", "widow", "widowed", "widower", "wielding", "wife", "wig", "wigs", "wikipedia", "wilcox", "wild", "wilde", "wilder", "wilderness", "wildest", "wildlife", "wildly", "will", "willard", "willed", "willem", "william", "williams", "williamson", "willie", "willing", "willingly", "willingness", "willis", "wills", "willy", "wilson", "wily", "wimp", "wimpy", "win", "wince", "winchester", "wincing", "wind", "winded", "winding", "window", "windows", "winds", "windshield", "wine", "winfrey", "wing", "winger", "wings", "wink", "winkler", "winner", "winners", "winning", "wins", "winslet", "winston", "winter", "winters", "wipe", "wiped", "wipes", "wiping", "wire", "wires", "wisconsin", "wisdom", "wise", "wisecracking", "wisecracks", "wisely", "wiser", "wish", "wished", "wishes", "wishful", "wishing", "wistful", "wit", "witch", "witchcraft", "witches", "with", "withdrawn", "witherspoon", "within", "without", "withstand", "witless", "witness", "witnessed", "witnesses", "witnessing", "wits", "witted", "witty", "wives", "wizard", "wizards", "wobbly", "woeful", "woefully", "woke", "woken", "wolf", "wolfe", "wolfman", "wolves", "woman", "womanizer", "womanizing", "women", "won", "wonder", "wondered", "wonderful", "wonderfully", "wondering", "wonderland", "wonders", "wondrous", "wong", "wont", "woo", "wood", "woodard", "wooden", "woodhouse", "woodland", "woods", "woodward", "woody", "wool", "word", "wordless", "words", "wore", "work", "worked", "worker", "workers", "working", "workings", "works", "world", "worldly", "worlds", "worldwide", "worm", "worms", "worn", "woronov", "worried", "worries", "worry", "worrying", "worse", "worship", "worships", "worst", "worth", "worthless", "worthwhile", "worthy", "would", "wouldn", "wound", "wounded", "wounds", "woven", "wow", "wrap", "wrapped", "wrapping", "wraps", "wrath", "wray", "wreak", "wreck", "wrecked", "wrecking", "wrecks", "wrenching", "wrestler", "wrestling", "wretched", "wright", "wrinkle", "wrist", "wrists", "write", "writer", "writers", "writes", "writhing", "writing", "writings", "written", "wrong", "wronged", "wrongly", "wrote", "wrought", "wry", "wtc", "wtf", "wu", "wuhrer", "wuss", "ww", "ww2", "wwe", "wwf", "wwi", "wwii", "www", "wyatt", "wyoming", "ya", "yacht", "yadav", "yahoo", "yakuza", "yanked", "yankee", "yankees", "yaphet", "yard", "yards", "yarn", "yawn", "yawning", "yay", "ye", "yea", "yeah", "year", "yearn", "yearning", "yearns", "years", "yell", "yelled", "yelling", "yellow", "yells", "yep", "yes", "yesterday", "yet", "yeti", "yikes", "yo", "yoda", "yokai", "york", "yorker", "yorkers", "you", "young", "younger", "youngest", "youngster", "youngsters", "your", "yours", "yourself", "yourselves", "youssef", "youth", "youthful", "youths", "youtube", "yr", "yrs", "yu", "yuck", "yuen", "yugoslavia", "yuk", "yukon", "yul", "yummy", "yup", "yuppie", "yuzna", "yvonne", "zabriskie", "zach", "zack", "zadora", "zane", "zany", "zatoichi", "zealand", "zelah", "zelda", "zemeckis", "zen", "zenith", "zentropa", "zero", "zest", "zeta", "zhang", "zimmer", "zip", "zizek", "zodiac", "zoe", "zombi", "zombie", "zombies", "zone", "zoo", "zoom", "zooms", "zorro", "zu", "zucker"], "features": {"360": {"effect": 0.00017574006637452238, "value": 0.0}, "657": {"effect": -0.01865873428475954, "value": 0.0}, "683": {"effect": -0.008970009940513083, "value": 0.0}, "748": {"effect": -0.11622933897092207, "value": 0.06340541684462561}, "842": {"effect": 0.02269103972389111, "value": 0.0}, "1022": {"effect": 0.018152540375272704, "value": 0.05886797640380335}, "1239": {"effect": 0.03962784635343933, "value": 0.0}, "1283": {"effect": 0.1874684852602638, "value": 0.0}, "1425": {"effect": -0.003654735684910456, "value": 0.06433573742622442}, "1451": {"effect": -0.0034339135886043196, "value": 0.0}, "1470": {"effect": 0.0014222571140528144, "value": 0.0}, "1575": {"effect": -0.05786452812687114, "value": 0.0}, "1843": {"effect": 0.03365740337501302, "value": 0.0}, "1897": {"effect": -0.024684609126542637, "value": 0.12558736877761875}, "3430": {"effect": 0.012408101286046622, "value": 0.0}, "3502": {"effect": 0.00014777057896362325, "value": 0.0}, "4687": {"effect": 0.002800879419139044, "value": 0.0}, "5049": {"effect": -0.0037936018815791775, "value": 0.0}, "5214": {"effect": -0.09222719062843447, "value": 0.042734706956445566}, "5270": {"effect": -0.035263020676497815, "value": 0.0}, "5579": {"effect": -0.005030033285478375, "value": 0.0}, "6119": {"effect": -0.007192527939479485, "value": 0.0}, "6530": {"effect": -0.13502282962344417, "value": 0.0}, "6715": {"effect": 0.000808035602365702, "value": 0.0}, "6851": {"effect": 0.009952560171064093, "value": 0.0}, "7059": {"effect": -0.020920402712431146, "value": 0.0}, "7182": {"effect": 0.00819776806901015, "value": 0.0}, "7480": {"effect": -0.004862562005708819, "value": 0.0}, "7712": {"effect": 0.005417103164550662, "value": 0.0}, "7899": {"effect": 0.027016247725052595, "value": 0.09051404214173085}, "7921": {"effect": 0.08196285386640298, "value": 0.11426346590633626}, "8131": {"effect": 0.06428067445535225, "value": 0.0}, "8359": {"effect": 0.00011033052619057948, "value": 0.0}, "8585": {"effect": -0.018309122280652068, "value": 0.0}, "8807": {"effect": -0.04413905933687989, "value": 0.0}, "8809": {"effect": -0.007449708636395567, "value": 0.0}, "8964": {"effect": 0.0081469829634153, "value": 0.0}, "9431": {"effect": 0.02205012442014671, "value": 0.0}, "9547": {"effect": 0.0018152915717760127, "value": 0.0}, "9662": {"effect": 0.025870891868095585, "value": 0.0}, "9976": {"effect": -0.39704858468824406, "value": 0.08627491936070525}, "10035": {"effect": 0.02003375404145263, "value": 0.0}, "10043": {"effect": 0.03944609248311738, "value": 0.0}, "10168": {"effect": 0.009122713981068986, "value": 0.0}, "10236": {"effect": 0.023159234057400953, "value": 0.0}, "10284": {"effect": -0.017676968996985988, "value": 0.03842028778202126}, "10700": {"effect": -0.012227232101763385, "value": 0.0}, "10957": {"effect": 0.035777612560606416, "value": 0.0}, "11036": {"effect": 0.021536036699581533, "value": 0.0}, "11039": {"effect": 0.005021800753502497, "value": 0.0}, "12798": {"effect": 0.02034089138581319, "value": 0.0}, "12950": {"effect": -0.001308279168397706, "value": 0.0}, "13969": {"effect": -0.009201024390642137, "value": 0.0}, "14136": {"effect": 0.015329863538830178, "value": 0.0}, "14302": {"effect": 0.004952638272004777, "value": 0.0}, "14638": {"effect": 0.020427412295524076, "value": 0.0}, "14701": {"effect": -0.024977770508539478, "value": 0.05070641830476615}, "14710": {"effect": 0.025614204979540183, "value": 0.0}, "14721": {"effect": -0.07615481594554946, "value": 0.07494319832153455}, "14726": {"effect": 0.007365622051324772, "value": 0.0}, "14741": {"effect": 0.029353971035771247, "value": 0.022454077186273024}, "14862": {"effect": -0.014891125504059334, "value": 0.08689173218885857}, "15380": {"effect": 0.000779169941313584, "value": 0.0}, "15676": {"effect": -0.038911433928033534, "value": 0.0}, "15917": {"effect": 0.06584033872904814, "value": 0.0}, "15924": {"effect": 0.04238153795822657, "value": 0.0}, "16007": {"effect": -0.036982888379616566, "value": 0.0}, "16086": {"effect": -0.2618211553833012, "value": 0.11707263291482403}, "16111": {"effect": -0.02402235517431978, "value": 0.0}, "16211": {"effect": -0.021099160122405296, "value": 0.0}, "16240": {"effect": -0.002792889509547814, "value": 0.0}, "16252": {"effect": 0.010196280193499423, "value": 0.0}, "16255": {"effect": 0.10315596019591007, "value": 0.0}, "16260": {"effect": -0.022318019108538794, "value": 0.0433936667562145}}, "plot_cmap": "RdBu", "labelMargin": 20}),
|
||
document.getElementById('iFA6ZQAI0YO66OPOXJGUN')
|
||
);
|
||
</script>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [9]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="nb">print</span><span class="p">(</span><span class="s2">"Positive"</span> <span class="k">if</span> <span class="n">y_test</span><span class="p">[</span><span class="n">ind</span><span class="p">]</span> <span class="k">else</span> <span class="s2">"Negative"</span><span class="p">,</span> <span class="s2">"Review:"</span><span class="p">)</span>
|
||
<span class="nb">print</span><span class="p">(</span><span class="n">corpus_test</span><span class="p">[</span><span class="n">ind</span><span class="p">])</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="output_wrapper">
|
||
<div class="output">
|
||
|
||
|
||
<div class="output_area">
|
||
|
||
<div class="prompt"></div>
|
||
|
||
|
||
<div class="output_subarea output_stream output_stdout output_text">
|
||
<pre>Negative Review:
|
||
I don't understand the positive comments made about this film. It is cheap and nasty on all levels and I cannot understand how it ever got made.<br /><br />Cartoon characters abound - Sue's foul-mouthed, alcoholic, layabout, Irish father being a prime example. None of the characters are remotely sympathetic - except, briefly, for Sue's Asian boyfriend but even he then turns out to be capable of domestic violence! As desperately unattractive as they both are, I've no idea why either Rita and/or Sue would throw themselves at a consummate creep like Bob - but given that they do, why should I be expected to care what happens to them? So many reviews keep carping on about how "realistic" it is. If that is true, it is a sad reflection on society but no reason to put it on film.<br /><br />I didn't like the film at all.
|
||
|
||
</pre>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
|
||
</div>
|
||
<div class="inner_cell">
|
||
<div class="text_cell_render border-box-sizing rendered_html">
|
||
<h3 id="Explain-the-third-review's-sentiment-prediction">Explain the third review's sentiment prediction<a class="anchor-link" href="#Explain-the-third-review's-sentiment-prediction">¶</a></h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [10]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">ind</span> <span class="o">=</span> <span class="mi">2</span>
|
||
<span class="n">shap</span><span class="o">.</span><span class="n">force_plot</span><span class="p">(</span>
|
||
<span class="n">explainer</span><span class="o">.</span><span class="n">expected_value</span><span class="p">,</span> <span class="n">shap_values</span><span class="p">[</span><span class="n">ind</span><span class="p">,:],</span> <span class="n">X_test_array</span><span class="p">[</span><span class="n">ind</span><span class="p">,:],</span>
|
||
<span class="n">feature_names</span><span class="o">=</span><span class="n">vectorizer</span><span class="o">.</span><span class="n">get_feature_names</span><span class="p">()</span>
|
||
<span class="p">)</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="output_wrapper">
|
||
<div class="output">
|
||
|
||
|
||
<div class="output_area">
|
||
|
||
<div class="prompt output_prompt">Out[10]:</div>
|
||
|
||
|
||
|
||
<div class="output_html rendered_html output_subarea output_execute_result">
|
||
|
||
<div id='iCZC4P3IAEU08DKAYV2Z9'>
|
||
<div style='color: #900; text-align: center;'>
|
||
<b>Visualization omitted, Javascript library not loaded!</b><br>
|
||
Have you run `initjs()` in this notebook? If this notebook was from another
|
||
user you must also trust this notebook (File -> Trust notebook). If you are viewing
|
||
this notebook on github the Javascript has been stripped for security. If you are using
|
||
JupyterLab this error is because a JupyterLab extension has not yet been written.
|
||
</div></div>
|
||
<script>
|
||
if (window.SHAP) SHAP.ReactDom.render(
|
||
SHAP.React.createElement(SHAP.AdditiveForceVisualizer, {"outNames": ["output value"], "baseValue": -0.09826881834578277, "outValue": 0.6319576902821158, "link": "identity", "featureNames": ["00", "000", "007", "01", "02", "05", "06", "10", "100", "1000", "101", "102", "10th", "11", "110", "11th", "12", "120", "12th", "13", "13th", "14", "140", "14th", "15", "150", "16", "16mm", "17", "17th", "18", "180", "1800", "18th", "19", "1912", "1914", "1920", "1920s", "1922", "1924", "1927", "1928", "1929", "1930", "1930s", "1931", "1932", "1933", "1934", "1935", "1936", "1937", "1938", "1939", "1940", "1940s", "1941", "1942", "1943", "1944", "1945", "1946", "1947", "1948", "1949", "1950", "1950s", "1951", "1952", "1953", "1954", "1955", "1956", "1957", "1958", "1959", "1960", "1960s", "1961", "1962", "1963", "1964", "1965", "1966", "1967", "1968", "1969", "1970", "1970s", "1971", "1972", "1973", "1974", "1975", "1976", "1977", "1978", "1979", "1980", "1980s", "1981", "1982", "1983", "1984", "1985", "1986", "1987", "1988", "1989", "1990", "1990s", "1991", "1992", "1993", "1994", "1995", "1996", "1997", "1998", "1999", "19th", "1st", "20", "200", "2000", "2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "20s", "20th", "21", "21st", "22", "23", "24", "25", "250", "26", "27", "28", "29", "2d", "2nd", "30", "300", "3000", "30s", "31", "32", "33", "34", "35", "36", "360", "37", "39", "3d", "3rd", "40", "400", "40s", "42", "42nd", "43", "44", "45", "47", "48", "49", "4th", "50", "500", "50s", "51", "52", "54", "55", "56", "58", "5th", "60", "600", "60s", "64", "65", "66", "68", "6th", "70", "700", "70s", "71", "73", "74", "747", "75", "76", "77", "78", "79", "7th", "80", "80s", "81", "82", "83", "84", "85", "86", "87", "88", "89", "8mm", "8th", "90", "90210", "90s", "91", "911", "93", "94", "95", "96", "97", "98", "99", "9th", "aag", "aames", "aaron", "abandon", "abandoned", "abandoning", "abandonment", "abandons", "abbot", "abbott", "abc", "abducted", "abduction", "abe", "abhay", "abhorrent", "abiding", "abilities", "ability", "able", "ably", "aboard", "abominable", "abomination", "aboriginal", "aborted", "abortion", "abound", "abounds", "about", "above", "abraham", "abroad", "abrupt", "abruptly", "absence", "absent", "absolute", "absolutely", "absorb", "absorbed", "absorbing", "abstract", "absurd", "absurdist", "absurdity", "absurdly", "abu", "abundance", "abundant", "abuse", "abused", "abusing", "abusive", "abysmal", "abysmally", "abyss", "academic", "academy", "accent", "accented", "accents", "accept", "acceptable", "acceptance", "accepted", "accepting", "accepts", "access", "accessible", "accident", "accidental", "accidentally", "accidents", "acclaim", "acclaimed", "accolades", "accompanied", "accompanies", "accompaniment", "accompany", "accompanying", "accomplice", "accomplish", "accomplished", "accomplishes", "accomplishment", "accomplishments", "according", "accordingly", "account", "accountant", "accounts", "accuracy", "accurate", "accurately", "accusations", "accuse", "accused", "accuses", "accustomed", "ace", "achieve", "achieved", "achievement", "achievements", "achieves", "achieving", "achilles", "aching", "achingly", "acid", "ackland", "acknowledge", "acknowledged", "acquaintance", "acquaintances", "acquainted", "acquire", "acquired", "acres", "acrobatics", "across", "act", "acted", "acting", "action", "actioner", "actions", "active", "actively", "activist", "activists", "activities", "activity", "actor", "actors", "actress", "actresses", "acts", "actual", "actuality", "actually", "ad", "ada", "adam", "adama", "adams", "adapt", "adaptation", "adaptations", "adapted", "adapting", "adaption", "add", "added", "addict", "addicted", "addiction", "addictive", "addicts", "adding", "addition", "additional", "additionally", "additions", "addled", "address", "addressed", "addresses", "addressing", "adds", "adelaide", "adele", "adept", "adequate", "adequately", "adjective", "adjust", "adjusted", "administration", "admirable", "admirably", "admiration", "admire", "admired", "admirer", "admirers", "admires", "admiring", "admission", "admit", "admits", "admitted", "admittedly", "admitting", "ado", "adolescence", "adolescent", "adolescents", "adolf", "adopt", "adopted", "adoption", "adopts", "adorable", "adoration", "adore", "adored", "adoring", "adrenaline", "adrian", "adrienne", "ads", "adult", "adulterous", "adultery", "adulthood", "adults", "advance", "advanced", "advancement", "advances", "advancing", "advantage", "advantages", "adventure", "adventures", "adventurous", "adversaries", "adversary", "adversity", "advert", "advertised", "advertisement", "advertisements", "advertising", "advice", "advise", "advised", "adviser", "advises", "advocate", "aerial", "aesthetic", "aesthetically", "aesthetics", "afar", "affable", "affair", "affairs", "affect", "affected", "affecting", "affection", "affectionate", "affections", "affects", "affinity", "affleck", "afflicted", "affluent", "afford", "afforded", "afghanistan", "afi", "afloat", "afore", "aforementioned", "afraid", "africa", "african", "africans", "afro", "after", "afterlife", "aftermath", "afternoon", "aftertaste", "afterthought", "afterward", "afterwards", "afterwords", "again", "against", "agatha", "age", "aged", "agency", "agenda", "agent", "agents", "ages", "aggravating", "aggression", "aggressive", "aggressively", "aghast", "aging", "agnes", "ago", "agonizing", "agony", "agree", "agreed", "agreeing", "agreement", "agrees", "ah", "ahead", "ahem", "ahh", "ai", "aid", "aide", "aided", "aids", "aiello", "ailing", "aim", "aime", "aimed", "aiming", "aimless", "aimlessly", "aims", "ain", "air", "aircraft", "aired", "airhead", "airing", "airline", "airplane", "airplanes", "airport", "airs", "aisle", "ajay", "aka", "akin", "akira", "akshay", "akshaye", "al", "ala", "alain", "alan", "alarm", "alarming", "alas", "alaska", "alastair", "alba", "albeit", "albert", "alberto", "album", "albums", "alcohol", "alcoholic", "alcoholism", "alec", "alejandro", "alert", "alex", "alexander", "alexandra", "alexandre", "alexis", "alfre", "alfred", "ali", "alias", "alibi", "alice", "alicia", "alien", "alienate", "alienated", "alienating", "alienation", "aliens", "alike", "alison", "alive", "all", "allan", "alleged", "allegedly", "allegorical", "allegory", "allen", "allende", "allergic", "alley", "alleys", "alliance", "allied", "allies", "alligator", "allison", "allow", "allowed", "allowing", "allows", "alluded", "allure", "alluring", "allusions", "ally", "almighty", "almost", "alone", "along", "alongside", "aloof", "alot", "aloud", "alpha", "already", "alright", "also", "altar", "alter", "altered", "altering", "alternate", "alternately", "alternates", "alternating", "alternative", "although", "altman", "altogether", "alumni", "alvin", "always", "am", "amanda", "amateur", "amateurish", "amateurs", "amato", "amaze", "amazed", "amazement", "amazes", "amazing", "amazingly", "amazon", "ambassador", "amber", "ambiance", "ambient", "ambiguity", "ambiguous", "ambition", "ambitions", "ambitious", "ambulance", "amc", "amelie", "america", "american", "americana", "americanized", "americans", "amiable", "amicus", "amid", "amidst", "amitabh", "amityville", "ammunition", "amnesia", "amok", "among", "amongst", "amoral", "amos", "amount", "amounts", "ample", "amrita", "amuse", "amused", "amusement", "amuses", "amusing", "amusingly", "amy", "an", "ana", "anachronistic", "anaconda", "anakin", "anal", "analogy", "analysis", "analyze", "analyzed", "analyzing", "anamorphic", "anastasia", "anatomy", "ancestor", "ancestors", "ancestry", "anchor", "anchorman", "anchors", "ancient", "and", "anders", "anderson", "andie", "andre", "andrea", "andrei", "andrew", "andrews", "andy", "ang", "angel", "angela", "angeles", "angelic", "angelina", "angelo", "angels", "anger", "angered", "angers", "angie", "angle", "angles", "anglo", "angry", "angst", "anguish", "anil", "animal", "animals", "animate", "animated", "animation", "animations", "animator", "animators", "anime", "aniston", "anita", "ankle", "ann", "anna", "annals", "anne", "annie", "anniversary", "announce", "announced", "announcement", "announcer", "announces", "annoy", "annoyance", "annoyed", "annoying", "annoyingly", "annoys", "annual", "anonymous", "anorexic", "another", "answer", "answered", "answering", "answers", "ant", "antagonist", "antagonists", "anthem", "anthology", "anthony", "anthropologist", "anti", "antichrist", "anticipate", "anticipated", "anticipating", "anticipation", "anticlimactic", "antics", "antidote", "antihero", "antiquated", "antithesis", "anton", "antonio", "antonioni", "ants", "antwerp", "antwone", "anxiety", "anxious", "anxiously", "any", "anybody", "anyhow", "anymore", "anyone", "anything", "anytime", "anyway", "anyways", "anywhere", "apart", "apartheid", "apartment", "apartments", "apathetic", "ape", "apes", "aplenty", "aplomb", "apocalypse", "apocalyptic", "apollo", "apologies", "apologise", "apologize", "apology", "appalled", "appalling", "appallingly", "apparent", "apparently", "appeal", "appealed", "appealing", "appeals", "appear", "appearance", "appearances", "appeared", "appearing", "appears", "appease", "appetite", "applaud", "applauded", "applause", "apple", "applegate", "applied", "applies", "apply", "applying", "appointed", "appreciate", "appreciated", "appreciates", "appreciating", "appreciation", "appreciative", "apprentice", "approach", "approached", "approaches", "approaching", "appropriate", "appropriately", "approval", "approve", "approved", "approximately", "april", "apt", "aptly", "aquarium", "arab", "arabia", "arabian", "arabic", "arabs", "aragorn", "arbitrary", "arc", "arcane", "arch", "archaeological", "archaeologist", "archaic", "archer", "archetypal", "archetype", "archibald", "archie", "architect", "architecture", "archive", "archives", "arcs", "arctic", "arden", "ardent", "arduous", "are", "area", "areas", "aren", "arena", "argentina", "argento", "arguably", "argue", "argued", "argues", "arguing", "argument", "arguments", "ariel", "arise", "arises", "arising", "aristocracy", "aristocrat", "aristocratic", "aristocrats", "arizona", "ark", "arkin", "arm", "armageddon", "armand", "armed", "armies", "armor", "arms", "armstrong", "army", "arnie", "arnold", "around", "aroused", "arquette", "arrange", "arranged", "arrangement", "arrangements", "arranges", "array", "arrest", "arrested", "arresting", "arrival", "arrive", "arrived", "arrives", "arriving", "arrogance", "arrogant", "arrow", "arrows", "art", "artemisia", "artful", "artfully", "arthouse", "arthur", "article", "articles", "articulate", "artifacts", "artificial", "artificially", "artist", "artistic", "artistically", "artistry", "artists", "arts", "artsy", "artwork", "arty", "aryan", "as", "asano", "ascertain", "ash", "ashamed", "ashes", "ashley", "ashton", "asia", "asian", "asians", "aside", "asides", "asin", "asinine", "ask", "asked", "askey", "asking", "asks", "asleep", "aspect", "aspects", "aspirations", "aspire", "aspires", "aspiring", "ass", "assassin", "assassinate", "assassinated", "assassination", "assassins", "assault", "assaulted", "assaults", "assembled", "assembly", "assert", "assertion", "asserts", "assessment", "asset", "assets", "assigned", "assignment", "assignments", "assist", "assistance", "assistant", "assistants", "assisted", "associate", "associated", "associates", "association", "assorted", "assortment", "assume", "assumed", "assumes", "assuming", "assumption", "assumptions", "assurance", "assure", "assured", "astaire", "astonished", "astonishing", "astonishingly", "astor", "astounding", "astoundingly", "astray", "astronaut", "astronauts", "astute", "asylum", "at", "ate", "atheist", "athlete", "athletes", "athletic", "atkins", "atlantic", "atlantis", "atmosphere", "atmospheric", "atomic", "atop", "atrocious", "atrocities", "atrocity", "attached", "attachment", "attack", "attacked", "attacker", "attackers", "attacking", "attacks", "attain", "attempt", "attempted", "attempting", "attempts", "attenborough", "attend", "attendance", "attendant", "attended", "attending", "attends", "attention", "attentions", "attic", "attire", "attitude", "attitudes", "attorney", "attract", "attracted", "attracting", "attraction", "attractions", "attractive", "attracts", "attribute", "attributed", "attributes", "atwill", "atypical", "aubrey", "auction", "audacious", "audacity", "audiard", "audible", "audience", "audiences", "audio", "audition", "auditioning", "audrey", "august", "aunt", "auntie", "aunts", "aura", "aural", "aussie", "austen", "austere", "austin", "australia", "australian", "australians", "austria", "austrian", "auteur", "authentic", "authenticity", "author", "authorities", "authority", "authors", "autistic", "auto", "autobiographical", "autobiography", "autograph", "automatic", "automatically", "automobile", "automobiles", "autopsy", "autumn", "ava", "avail", "available", "avalanche", "avant", "avenge", "avenger", "avengers", "avenging", "avenue", "average", "avid", "aviv", "avoid", "avoided", "avoiding", "avoids", "aw", "await", "awaited", "awaiting", "awaits", "awake", "awaken", "awakened", "awakening", "awakens", "award", "awarded", "awards", "aware", "awareness", "away", "awe", "awed", "aweigh", "awesome", "awesomely", "awful", "awfully", "awfulness", "awhile", "awkward", "awkwardly", "awkwardness", "awry", "ax", "axe", "axis", "azaria", "aztec", "babble", "babbling", "babe", "babes", "babies", "baby", "babylon", "babysitter", "bacall", "bach", "bachchan", "bachelor", "back", "backbone", "backdrop", "backdrops", "backed", "background", "backgrounds", "backing", "backlash", "backs", "backseat", "backstage", "backstory", "backup", "backward", "backwards", "backwoods", "backyard", "bacon", "bad", "badass", "baddie", "baddies", "badge", "badly", "badness", "baffled", "baffles", "baffling", "bag", "bagdad", "baggage", "baghdad", "bags", "bahrain", "bailey", "baio", "bait", "baked", "baker", "bakshi", "bakula", "balance", "balanced", "balances", "balancing", "balcony", "bald", "baldwin", "ball", "ballad", "ballads", "ballet", "balloon", "ballroom", "balls", "balsam", "baltimore", "bam", "bambi", "banal", "banality", "banana", "band", "banderas", "bandit", "bands", "bandwagon", "bane", "bang", "banging", "bangs", "banjo", "bank", "banker", "bankrupt", "bankruptcy", "banks", "banned", "banner", "banquet", "banter", "baptist", "bar", "barbara", "barbarian", "barbaric", "barbed", "barbie", "barbra", "bard", "bare", "barely", "barf", "bargain", "barker", "barkin", "barking", "barman", "barn", "barnes", "barney", "baron", "barr", "barrage", "barred", "barrel", "barrels", "barren", "barrier", "barriers", "barry", "barrymore", "bars", "bart", "bartender", "barton", "base", "baseball", "based", "baseketball", "basement", "bases", "bash", "bashed", "bashing", "basic", "basically", "basics", "basil", "basing", "basinger", "basis", "basket", "basketball", "bass", "bassinger", "bastard", "bastards", "bat", "bates", "bath", "bathing", "bathroom", "bathtub", "batman", "bats", "battered", "battle", "battlefield", "battles", "battlestar", "battling", "bauer", "bava", "bawdy", "baxter", "bay", "baywatch", "bbc", "bc", "be", "beach", "beaches", "beads", "beam", "beams", "bean", "beans", "bear", "bearable", "beard", "bearded", "bearing", "bears", "beast", "beasts", "beat", "beaten", "beating", "beatings", "beatles", "beatrice", "beats", "beatty", "beau", "beauties", "beautiful", "beautifully", "beauty", "beaver", "became", "because", "beck", "beckham", "beckinsale", "becky", "become", "becomes", "becoming", "bed", "bedknobs", "bedroom", "beds", "bee", "beef", "been", "beer", "beers", "beery", "bees", "beetle", "before", "beforehand", "befriend", "befriended", "befriends", "beg", "began", "beggars", "begged", "begging", "begin", "beginning", "beginnings", "begins", "begs", "begun", "behalf", "behave", "behaved", "behaves", "behaving", "behavior", "behaviors", "behaviour", "beheading", "behind", "behold", "being", "beings", "bel", "bela", "beleaguered", "belgian", "belgium", "belief", "beliefs", "believability", "believable", "believably", "believe", "believed", "believer", "believers", "believes", "believing", "bell", "belle", "bells", "belly", "belong", "belonged", "belonging", "belongs", "beloved", "below", "belt", "belts", "belushi", "bemused", "ben", "bench", "benchmark", "bend", "bender", "bending", "beneath", "benefit", "benefited", "benefits", "benet", "benevolent", "benicio", "benign", "benjamin", "bennett", "benny", "benson", "bent", "bentley", "beowulf", "bereft", "berenger", "bergman", "berkeley", "berkley", "berkowitz", "berlin", "bernadette", "bernard", "bernie", "bernsen", "bernstein", "berry", "berserk", "bert", "beset", "beside", "besides", "besieged", "best", "bestiality", "bet", "beta", "beth", "bethany", "betray", "betrayal", "betrayed", "betrays", "bets", "betsy", "bette", "better", "bettie", "betting", "betty", "between", "beverly", "bevy", "beware", "bewildered", "bewitched", "beyond", "bi", "bias", "biased", "bible", "biblical", "bickering", "bicycle", "bid", "bidding", "big", "bigelow", "bigfoot", "bigger", "biggest", "biggs", "bigoted", "bigotry", "bike", "biker", "bikers", "bikini", "biko", "bill", "billboards", "billed", "billie", "billing", "billion", "bills", "billy", "bimbo", "bin", "binder", "binding", "bing", "binks", "binoche", "bio", "biographical", "biographies", "biography", "biological", "biopic", "bird", "birds", "birth", "birthday", "bisexual", "bishop", "bit", "bitch", "bitching", "bitchy", "bite", "bites", "biting", "bits", "bitten", "bitter", "bitterly", "bitterness", "bittersweet", "biz", "bizarre", "bizarrely", "black", "blackadder", "blackboard", "blackie", "blackmail", "blacks", "blackwood", "blade", "blades", "blah", "blaine", "blair", "blaise", "blake", "blame", "blamed", "blames", "blaming", "blanc", "bland", "blank", "blanket", "blanks", "blaring", "blasphemous", "blast", "blasted", "blasting", "blasts", "blatant", "blatantly", "blaxploitation", "blazing", "bleached", "bleak", "bleed", "bleeding", "blend", "blended", "blending", "blends", "bless", "blessed", "blessing", "blethyn", "blew", "blind", "blinded", "blindly", "blindness", "blink", "blinking", "bliss", "bloated", "blob", "block", "blockbuster", "blockbusters", "blocked", "blocking", "blocks", "bloke", "blond", "blonde", "blondell", "blondes", "blood", "bloodbath", "blooded", "bloodless", "bloodshed", "bloodthirsty", "bloody", "bloom", "blossom", "blossomed", "blossoms", "blouse", "blow", "blowing", "blown", "blows", "blue", "blues", "blunders", "blunt", "bluntly", "blur", "blurb", "blurred", "blurry", "blush", "bluth", "bo", "board", "boarding", "boards", "boast", "boasting", "boasts", "boat", "boats", "bob", "bobby", "bodies", "bodily", "body", "bodyguard", "bog", "bogart", "bogdanovich", "bogged", "boggles", "boggling", "bogie", "bogs", "bogus", "bohemian", "boil", "boiled", "boiling", "boils", "bold", "bolivia", "boll", "bollywood", "bolt", "bolts", "boman", "bomb", "bombastic", "bombed", "bomber", "bombers", "bombing", "bombings", "bombs", "bon", "bona", "bonanza", "bond", "bondage", "bonding", "bonds", "bone", "bones", "bonham", "bonkers", "bonnie", "bont", "bonus", "boo", "boob", "boobs", "booby", "boogeyman", "boogie", "book", "books", "boom", "boomers", "boone", "boorish", "boorman", "boost", "boot", "booth", "boothe", "boots", "booty", "booze", "border", "bordering", "borderline", "borders", "bore", "bored", "boredom", "bores", "boring", "boris", "born", "borne", "borrow", "borrowed", "borrowing", "borrows", "bosnia", "boss", "bosses", "boston", "bosworth", "botched", "both", "bother", "bothered", "bothering", "bothers", "bots", "bottle", "bottles", "bottom", "bought", "bounce", "bouncing", "bouncy", "bound", "boundaries", "bounds", "bounty", "bourgeois", "bourne", "bout", "bow", "bowels", "bowie", "bowl", "bowling", "bows", "box", "boxed", "boxer", "boxes", "boxing", "boy", "boyd", "boyer", "boyfriend", "boyfriends", "boyhood", "boyish", "boyle", "boys", "br", "bra", "brad", "bradford", "bradley", "brady", "brag", "braga", "brain", "braindead", "brained", "brainer", "brainless", "brains", "brainwashed", "brainy", "brakes", "branagh", "branch", "branches", "brand", "brando", "brandon", "brash", "brashear", "brass", "brat", "bratty", "braun", "bravado", "brave", "braveheart", "bravely", "bravery", "bravo", "bravura", "brawl", "brazil", "brazilian", "bread", "break", "breakdown", "breaker", "breakfast", "breaking", "breakout", "breaks", "breakthrough", "breakup", "breast", "breasted", "breasts", "breath", "breathe", "breathes", "breathing", "breathless", "breathtaking", "breathtakingly", "breckinridge", "bred", "breed", "breeding", "breeze", "breezy", "brenda", "brendan", "brennan", "brent", "bret", "brett", "brewster", "brian", "brick", "bricks", "bride", "brides", "bridge", "bridges", "bridget", "brief", "briefcase", "briefly", "brien", "brigade", "briggs", "bright", "brighter", "brightest", "brightly", "brigitte", "brilliance", "brilliant", "brilliantly", "brimming", "bring", "bringing", "brings", "brink", "brisk", "brisson", "brit", "britain", "british", "britney", "brits", "brittany", "broad", "broadcast", "broadcasting", "broader", "broadly", "broadway", "brock", "broderick", "brody", "broke", "broken", "bronson", "bronte", "bronx", "brooding", "brooke", "brooklyn", "brooks", "broomsticks", "bros", "brosnan", "brothel", "brother", "brotherhood", "brothers", "brought", "brow", "brown", "browning", "browsing", "bruce", "bruckheimer", "brunette", "bruno", "brush", "brushes", "brutal", "brutality", "brutally", "brute", "brutish", "bryan", "bryant", "brynner", "bs", "bsg", "btk", "btw", "bubble", "bubblegum", "bubbles", "bubbly", "buck", "bucket", "buckets", "bucks", "bud", "budapest", "buddhist", "buddies", "budding", "buddy", "budget", "budgetary", "budgeted", "budgets", "buff", "buffalo", "buffoon", "buffs", "buffy", "bug", "buggy", "bugs", "build", "building", "buildings", "builds", "buildup", "built", "bulb", "bulging", "bulk", "bull", "bulldog", "bullet", "bullets", "bullied", "bullies", "bullock", "bulls", "bullshit", "bully", "bullying", "bum", "bumbling", "bump", "bumped", "bumping", "bumps", "bums", "bunch", "bunker", "bunny", "bunuel", "burden", "burdened", "bureau", "bureaucracy", "burgeoning", "burgess", "burial", "buried", "buries", "burke", "burlesque", "burn", "burned", "burnett", "burning", "burns", "burnt", "burroughs", "burrows", "burst", "bursting", "bursts", "burstyn", "burt", "burton", "bury", "burying", "bus", "busby", "buscemi", "buses", "busey", "bush", "bushes", "business", "businesses", "businessman", "businessmen", "bust", "busted", "buster", "busting", "busy", "but", "butch", "butcher", "butchered", "butchering", "butler", "butt", "butter", "butterfly", "button", "buttons", "butts", "buy", "buying", "buys", "buzz", "by", "bye", "bygone", "byrne", "byron", "ca", "caan", "cab", "cabaret", "cabin", "cabinet", "cable", "cad", "caesar", "cafe", "cafeteria", "caf\u00e9", "cage", "caged", "cages", "cagney", "cain", "caine", "cake", "cal", "calamity", "calculated", "calculating", "calendar", "caliber", "calibre", "california", "call", "callahan", "called", "calling", "callous", "calls", "calm", "calmly", "calvin", "cam", "camaraderie", "cambodia", "cambodian", "camcorder", "came", "camel", "cameo", "cameos", "camera", "cameraman", "cameras", "camerawork", "cameron", "camp", "campaign", "campbell", "camper", "campers", "campfire", "campiness", "camping", "camps", "campus", "campy", "can", "canada", "canadian", "canadians", "canal", "cancel", "canceled", "cancelled", "cancels", "cancer", "candid", "candidate", "candidates", "candle", "candles", "candy", "cane", "canine", "canned", "cannes", "cannibal", "cannibalism", "cannibalistic", "cannibals", "cannon", "cannons", "cannot", "canoe", "canon", "cans", "cant", "canvas", "canyon", "cap", "capabilities", "capability", "capable", "capably", "capacity", "cape", "caper", "capital", "capitalism", "capitalist", "capitalize", "capote", "capra", "caprica", "caprice", "capshaw", "capsule", "capt", "captain", "captivate", "captivated", "captivating", "captive", "captors", "capture", "captured", "captures", "capturing", "car", "carbon", "card", "cardboard", "cardinal", "cards", "care", "cared", "career", "careers", "carefree", "careful", "carefully", "careless", "carelessly", "carell", "cares", "caretaker", "carey", "carface", "cargo", "caribbean", "caricature", "caricatures", "caring", "carl", "carla", "carlisle", "carlito", "carlo", "carlos", "carlton", "carlyle", "carmen", "carnage", "carnal", "carnival", "carnosaur", "carol", "carole", "carolina", "caroline", "caron", "carpenter", "carpet", "carradine", "carrey", "carriage", "carrie", "carried", "carrier", "carries", "carroll", "carrot", "carry", "carrying", "cars", "carson", "cart", "carter", "cartoon", "cartoonish", "cartoons", "cartoony", "carved", "carving", "cary", "casablanca", "case", "cases", "casey", "cash", "cashier", "cashing", "casino", "casper", "cassandra", "cassavetes", "cassel", "cassidy", "cassie", "cast", "casted", "casting", "castle", "castles", "castro", "casts", "casual", "casually", "casualty", "cat", "catalog", "catalogue", "catalyst", "catastrophe", "catastrophic", "catch", "catches", "catching", "catchphrase", "catchy", "cate", "categories", "categorized", "category", "cater", "catering", "catharsis", "cathartic", "catherine", "catholic", "cathy", "caton", "cats", "cattle", "catwoman", "caucasian", "caught", "cause", "caused", "causes", "causing", "caution", "cautionary", "cavalry", "cave", "caveman", "cavemen", "caves", "cavorting", "cbc", "cbs", "cd", "cease", "ceases", "cecil", "cedric", "ceiling", "celebrate", "celebrated", "celebrates", "celebrating", "celebration", "celebrities", "celebrity", "celeste", "celestial", "celie", "celine", "cell", "cellar", "cells", "celluloid", "celtic", "cement", "cemetery", "censor", "censored", "censors", "censorship", "cent", "center", "centered", "centerpiece", "centers", "central", "centre", "centred", "centres", "cents", "centuries", "century", "ceo", "cerebral", "ceremonies", "ceremony", "certain", "certainly", "certainty", "certificate", "cesar", "cetera", "cg", "cgi", "chad", "chagrin", "chahine", "chain", "chained", "chains", "chainsaw", "chair", "chairman", "chairs", "chalk", "challenge", "challenged", "challenger", "challenges", "challenging", "chamber", "chamberlain", "champagne", "champion", "champions", "championship", "chan", "chance", "chances", "chandler", "chaney", "chang", "change", "changed", "changes", "changing", "channel", "channeling", "channels", "chant", "chanting", "chaos", "chaotic", "chap", "chaplin", "chapter", "chapters", "character", "characterisation", "characterisations", "characterised", "characteristic", "characteristics", "characterization", "characterizations", "characterized", "characters", "charade", "charge", "charged", "charges", "charging", "charisma", "charismatic", "charitable", "charity", "charles", "charley", "charlie", "charlize", "charlotte", "charlton", "charm", "charmed", "charmer", "charming", "charmingly", "charms", "charts", "chase", "chased", "chases", "chasing", "chat", "chatter", "chatting", "chauffeur", "chavez", "che", "cheadle", "cheap", "cheaper", "cheapest", "cheaply", "cheat", "cheated", "cheating", "cheats", "check", "checked", "checking", "checkout", "checks", "cheech", "cheek", "cheeky", "cheer", "cheered", "cheerful", "cheerfully", "cheering", "cheerleader", "cheers", "cheery", "cheese", "cheesiest", "cheesiness", "cheesy", "cheezy", "chef", "chemical", "chemicals", "chemistry", "chen", "cher", "cherie", "cherish", "cherished", "cherry", "cheryl", "chess", "chest", "chester", "cheung", "chevy", "chew", "chewbacca", "chewing", "chews", "chi", "chiba", "chic", "chicago", "chick", "chicken", "chickens", "chicks", "chico", "chief", "child", "childhood", "childish", "childishly", "childlike", "children", "chile", "chill", "chiller", "chilling", "chillingly", "chills", "chilly", "chimney", "chimp", "chimps", "chin", "china", "chinatown", "chinese", "ching", "chip", "chips", "chloe", "chock", "chocolate", "choice", "choices", "choir", "choke", "choked", "chong", "choose", "chooses", "choosing", "chop", "chopped", "chopper", "chopping", "choppy", "chopra", "chops", "chord", "chore", "choreographed", "choreographer", "choreography", "chores", "chorus", "chose", "chosen", "chow", "chris", "chrissy", "christ", "christensen", "christian", "christianity", "christians", "christie", "christina", "christine", "christmas", "christopher", "christy", "chronic", "chronicle", "chronicles", "chronological", "chronologically", "chronology", "chubby", "chuck", "chuckle", "chuckled", "chuckles", "chuckling", "chucky", "chunk", "chunks", "chunky", "church", "churches", "churchill", "churn", "churned", "churning", "cia", "cigar", "cigarette", "cigarettes", "cigars", "cillian", "cinderella", "cindy", "cinema", "cinemas", "cinematic", "cinematically", "cinematographer", "cinematographic", "cinematography", "cinemax", "circa", "circle", "circles", "circuit", "circular", "circumstance", "circumstances", "circus", "cited", "cities", "citizen", "citizens", "city", "civil", "civilian", "civilians", "civilisation", "civilization", "civilized", "ck", "clad", "claim", "claimed", "claiming", "claims", "clair", "claire", "clan", "claptrap", "clara", "clare", "clarence", "clarify", "clarity", "clark", "clarke", "clash", "clashes", "class", "classes", "classic", "classical", "classics", "classified", "classify", "classmates", "classroom", "classy", "claude", "claudia", "claus", "clause", "claustrophobia", "claustrophobic", "claw", "claws", "clay", "claymation", "clayton", "clean", "cleaned", "cleaner", "cleaning", "cleans", "clear", "cleared", "clearer", "clearly", "cleavage", "cleese", "clerk", "clerks", "cleveland", "clever", "cleverly", "cleverness", "cliche", "cliched", "cliches", "clich\u00e9", "clich\u00e9d", "clich\u00e9s", "click", "clicked", "client", "clients", "cliff", "cliffhanger", "clifford", "cliffs", "climactic", "climate", "climatic", "climax", "climaxes", "climb", "climbed", "climber", "climbing", "climbs", "clinic", "clinical", "clint", "clinton", "clip", "clipped", "clips", "clique", "clive", "cloak", "clock", "clocking", "clockwork", "clone", "clones", "clooney", "cloris", "close", "closed", "closely", "closer", "closes", "closest", "closet", "closeup", "closeups", "closing", "closure", "cloth", "clothed", "clothes", "clothing", "cloud", "clouds", "clown", "clowns", "club", "clubs", "clue", "clueless", "clues", "clumsily", "clumsy", "clunker", "clunky", "clutches", "clutching", "clutter", "clyde", "cnn", "co", "coach", "coal", "coarse", "coast", "coastal", "coaster", "coat", "coated", "coats", "cobb", "cobra", "coburn", "cocaine", "cock", "cockney", "cocktail", "cocktails", "cocky", "code", "codes", "cody", "coen", "coffee", "coffin", "cohen", "coherence", "coherency", "coherent", "cohesion", "cohesive", "cohorts", "coin", "coincidence", "coincidences", "coincidentally", "coke", "col", "colbert", "cold", "cole", "coleman", "colin", "collaborated", "collaboration", "collaborations", "collaborator", "collage", "collapse", "collapsed", "collapses", "collapsing", "collar", "colleague", "colleagues", "collect", "collected", "collecting", "collection", "collections", "collective", "collectively", "collector", "collectors", "colleen", "college", "collette", "collide", "collins", "collision", "colman", "colonel", "colonial", "colonies", "colony", "color", "colorado", "colored", "colorful", "colors", "colossal", "colour", "coloured", "colourful", "colours", "coltrane", "columbia", "columbine", "columbo", "column", "com", "coma", "comatose", "combat", "combination", "combine", "combined", "combines", "combining", "combo", "combs", "come", "comeback", "comedian", "comedians", "comedic", "comedienne", "comedies", "comedy", "comers", "comes", "comet", "comeuppance", "comfort", "comfortable", "comfortably", "comforting", "comforts", "comic", "comical", "comically", "comics", "coming", "command", "commander", "commanding", "commandments", "commando", "commandos", "commands", "commend", "commendable", "commended", "comment", "commentaries", "commentary", "commentator", "commentators", "commented", "commenter", "commenters", "commenting", "comments", "commercial", "commercially", "commercials", "commie", "commit", "commitment", "commitments", "commits", "committed", "committee", "committing", "common", "commonly", "commonplace", "communicate", "communicated", "communicating", "communication", "communications", "communism", "communist", "communists", "communities", "community", "companies", "companion", "companions", "companionship", "company", "comparable", "comparatively", "compare", "compared", "compares", "comparing", "comparison", "comparisons", "compassion", "compassionate", "compelled", "compelling", "compellingly", "compensate", "compensated", "compete", "competence", "competent", "competently", "competing", "competition", "competitive", "competitors", "compilation", "complain", "complained", "complaining", "complains", "complaint", "complaints", "complement", "complements", "complete", "completed", "completely", "completing", "completist", "completists", "complex", "complexities", "complexity", "complicate", "complicated", "complications", "compliment", "compliments", "component", "components", "compose", "composed", "composer", "composers", "composition", "compositions", "compound", "comprehend", "comprehension", "comprehensive", "compressed", "comprised", "comprises", "compromise", "compromised", "compromising", "compulsion", "compulsive", "computer", "computers", "comrades", "con", "conan", "conceal", "concealed", "concede", "conceit", "conceited", "conceivable", "conceive", "conceived", "concentrate", "concentrated", "concentrates", "concentrating", "concentration", "concept", "conception", "concepts", "conceptual", "concern", "concerned", "concerning", "concerns", "concert", "concerts", "concise", "conclude", "concluded", "concludes", "concluding", "conclusion", "conclusions", "concoction", "concrete", "concur", "condemn", "condemned", "condemning", "condensed", "condescending", "condition", "conditioned", "conditions", "conduct", "conducted", "conducting", "conductor", "conducts", "confederate", "conference", "confess", "confessed", "confesses", "confession", "confessions", "confidant", "confidence", "confident", "confidential", "confined", "confines", "confirm", "confirmed", "confirms", "conflict", "conflicted", "conflicting", "conflicts", "confront", "confrontation", "confronted", "confronting", "confronts", "confuse", "confused", "confusing", "confusion", "congratulate", "congratulations", "congregation", "congress", "conjure", "connect", "connected", "connecticut", "connecting", "connection", "connections", "connects", "connell", "connelly", "connery", "connie", "conniving", "connoisseur", "connolly", "connor", "connors", "conquer", "conquered", "conquers", "conquest", "conrad", "conroy", "cons", "conscience", "conscious", "consciously", "consciousness", "consecutive", "consent", "consequence", "consequences", "consequently", "conservative", "consider", "considerable", "considerably", "consideration", "considerations", "considered", "considering", "considers", "consist", "consisted", "consistency", "consistent", "consistently", "consisting", "consists", "consolation", "conspicuous", "conspiracies", "conspiracy", "constance", "constant", "constantly", "constitute", "constitutes", "constitution", "constraints", "construct", "constructed", "construction", "constructive", "consultant", "consumed", "consumer", "consumers", "consuming", "consummate", "consumption", "contact", "contacts", "contain", "contained", "containing", "contains", "contaminated", "contemplate", "contemplating", "contemporaries", "contemporary", "contempt", "contend", "contender", "content", "contention", "contents", "contest", "contestant", "contestants", "contests", "context", "continent", "continual", "continually", "continuation", "continue", "continued", "continues", "continuing", "continuity", "continuous", "continuously", "contract", "contradict", "contradiction", "contradictions", "contradictory", "contrary", "contrast", "contrasted", "contrasting", "contrasts", "contribute", "contributed", "contributes", "contributing", "contribution", "contributions", "contrivance", "contrivances", "contrived", "control", "controlled", "controlling", "controls", "controversial", "controversy", "convenience", "convenient", "conveniently", "convent", "convention", "conventional", "conventions", "conversation", "conversations", "conversion", "convert", "converted", "convey", "conveyed", "conveying", "conveys", "convict", "convicted", "conviction", "convictions", "convicts", "convince", "convinced", "convinces", "convincing", "convincingly", "convoluted", "cook", "cooked", "cookie", "cookies", "cooking", "cooks", "cool", "cooler", "coolest", "coolness", "coop", "cooper", "cooperate", "cooperation", "cop", "cope", "copied", "copies", "coping", "copious", "copper", "coppola", "cops", "copy", "copying", "copyright", "corbett", "corbin", "cord", "core", "corey", "corinne", "corky", "corleone", "corman", "corn", "cornball", "corner", "cornered", "corners", "corny", "coronation", "coroner", "corporate", "corporation", "corporations", "corpse", "corpses", "correct", "corrected", "correction", "correctly", "correctness", "corridor", "corridors", "corrupt", "corrupted", "corruption", "cortez", "cos", "cosmic", "cost", "costar", "costello", "costner", "costs", "costume", "costumed", "costumes", "costuming", "cottage", "cotton", "couch", "could", "couldn", "council", "counseling", "counselor", "count", "countdown", "counted", "counter", "counterpart", "counterparts", "counterpoint", "countess", "counting", "countless", "countries", "country", "countryside", "counts", "county", "coup", "couple", "coupled", "couples", "coupling", "courage", "courageous", "course", "court", "courtesy", "courtney", "courtroom", "courtyard", "cousin", "cousins", "coven", "cover", "coverage", "covered", "covering", "covers", "cow", "coward", "cowardly", "cowboy", "cowboys", "cowgirls", "cows", "cox", "coy", "coyote", "cozy", "crack", "cracked", "cracker", "cracking", "cracks", "cradle", "craft", "crafted", "crafting", "crafts", "craftsmanship", "crafty", "craig", "cram", "crammed", "cramped", "crane", "crank", "cranked", "cranky", "crap", "crapfest", "crappy", "crash", "crashed", "crashers", "crashes", "crashing", "crass", "cratchit", "crater", "craven", "craving", "crawford", "crawl", "crawled", "crawling", "craze", "crazed", "crazier", "crazies", "craziness", "crazy", "creaky", "cream", "create", "created", "creates", "creating", "creation", "creations", "creative", "creatively", "creativity", "creator", "creators", "creature", "creatures", "credentials", "credibility", "credible", "credit", "credited", "credits", "credulity", "creed", "creek", "creep", "creeped", "creepier", "creepiest", "creepily", "creepiness", "creeping", "creeps", "creepshow", "creepy", "crenna", "crew", "crews", "cricket", "cried", "cries", "crime", "crimes", "criminal", "criminally", "criminals", "crimson", "cringe", "cringed", "cringing", "cripple", "crippled", "crisis", "crisp", "crispin", "cristina", "criteria", "criterion", "critic", "critical", "critically", "criticise", "criticised", "criticism", "criticisms", "criticize", "criticized", "criticizing", "critics", "critique", "critter", "critters", "croc", "crocodile", "crocodiles", "croft", "cromwell", "cronenberg", "cronies", "crook", "crooked", "crooks", "crop", "crosby", "cross", "crossbow", "crossed", "crosses", "crossing", "crotch", "crothers", "crouching", "crouse", "crow", "crowd", "crowded", "crowds", "crowe", "crown", "crowning", "crucial", "crucified", "crucifix", "crud", "crude", "cruel", "cruella", "cruelty", "cruise", "crumbling", "crummy", "crusade", "crush", "crushed", "crushes", "crushing", "crust", "crusty", "cruz", "cry", "crying", "crypt", "cryptic", "crystal", "csi", "cuba", "cuban", "cube", "cuckoo", "cuddly", "cue", "cues", "cukor", "culkin", "culminates", "culminating", "culmination", "culp", "culprit", "cult", "cults", "cultural", "culture", "cultured", "cultures", "cum", "cumming", "cummings", "cunning", "cunningham", "cup", "curator", "curb", "cure", "cured", "curio", "curiosity", "curious", "curiously", "curly", "curr", "current", "currently", "currie", "curry", "curse", "cursed", "curses", "cursing", "curtain", "curtains", "curtis", "curtiz", "curve", "curves", "cusack", "cushing", "custer", "custody", "custom", "customary", "customers", "customs", "cut", "cute", "cuteness", "cutest", "cutesy", "cutouts", "cuts", "cutter", "cutting", "cuz", "cv", "cybill", "cyborg", "cyborgs", "cycle", "cylon", "cylons", "cynic", "cynical", "cynicism", "cynics", "cynthia", "cypher", "czech", "da", "dabney", "dad", "daddy", "dads", "daffy", "dafoe", "daft", "dagger", "dahl", "dahmer", "daily", "daisies", "daisy", "dakota", "dale", "dallas", "dalmatians", "dalton", "daly", "dam", "damage", "damaged", "damaging", "dame", "damian", "damien", "damme", "damn", "damned", "damning", "damon", "damsel", "dan", "dana", "dance", "danced", "dancer", "dancers", "dances", "dancing", "dancy", "dandy", "dane", "danes", "danger", "dangerfield", "dangerous", "dangerously", "dangers", "dangling", "dani", "daniel", "danielle", "daniels", "danish", "danning", "danny", "dante", "danza", "daphne", "darcy", "dare", "dared", "dares", "daria", "daring", "dario", "dark", "darkened", "darker", "darkest", "darkly", "darkness", "darkwolf", "darlene", "darling", "darn", "darren", "darryl", "darth", "daryl", "das", "dash", "dashed", "dashing", "dastardly", "data", "date", "dated", "dates", "dating", "daughter", "daughters", "dave", "davenport", "david", "davidson", "davies", "davis", "dawn", "dawson", "day", "daylight", "days", "daytime", "dazed", "dazzled", "dazzling", "dc", "de", "dead", "deadbeat", "deadly", "deadpan", "deaf", "deal", "dealer", "dealers", "dealing", "dealings", "deals", "dealt", "dean", "deanna", "dear", "dearly", "death", "deathbed", "deaths", "deathtrap", "debacle", "debatable", "debate", "debating", "debbie", "deborah", "debra", "debris", "debt", "debts", "debut", "debuted", "decade", "decadence", "decadent", "decades", "decapitated", "decapitation", "decay", "decaying", "deceased", "deceit", "deceive", "deceived", "december", "decency", "decent", "decently", "deception", "deceptive", "decide", "decided", "decidedly", "decides", "deciding", "decipher", "decision", "decisions", "deck", "declaration", "declare", "declared", "declares", "decline", "declined", "declining", "deco", "decomposing", "deconstruct", "decor", "decorated", "decoration", "decrepit", "dedicated", "dedication", "dee", "deed", "deeds", "deem", "deemed", "deep", "deeper", "deepest", "deeply", "deer", "def", "default", "defeat", "defeated", "defeating", "defeats", "defence", "defend", "defended", "defending", "defends", "defense", "defiance", "defiant", "deficiencies", "defies", "definately", "define", "defined", "defines", "defining", "definite", "definitely", "definition", "definitive", "deformed", "deft", "deftly", "defy", "defying", "degenerate", "degenerates", "degradation", "degrades", "degrading", "degree", "degrees", "deja", "del", "delay", "delayed", "delectable", "deleted", "deliberate", "deliberately", "delicate", "delicately", "delicious", "deliciously", "delight", "delighted", "delightful", "delightfully", "delights", "delirious", "deliver", "deliverance", "delivered", "delivering", "delivers", "delivery", "dell", "della", "delon", "delpy", "delta", "deluded", "deluise", "delusion", "delusional", "delusions", "delve", "delves", "demand", "demanded", "demanding", "demands", "demeaning", "demeanor", "demented", "demi", "demille", "demise", "demme", "democracy", "democratic", "demographic", "demolition", "demon", "demonic", "demonicus", "demons", "demonstrate", "demonstrated", "demonstrates", "demonstrating", "demonstration", "demunn", "den", "dench", "denholm", "denial", "denied", "denies", "deniro", "denis", "denise", "denmark", "dennis", "denny", "denominator", "denouement", "dense", "dental", "dentist", "dentists", "denver", "deny", "denying", "denzel", "deol", "depalma", "depardieu", "departed", "department", "departments", "departs", "departure", "depend", "dependable", "depended", "dependent", "depending", "depends", "depict", "depicted", "depicting", "depiction", "depictions", "depicts", "deplorable", "deposit", "depp", "depraved", "depravity", "depressed", "depressing", "depression", "depressive", "deprived", "depth", "depths", "deputy", "der", "deranged", "derek", "derivative", "derive", "derived", "derives", "dermot", "dern", "des", "descendant", "descendants", "descended", "descending", "descends", "descent", "describe", "described", "describes", "describing", "description", "descriptions", "desert", "deserted", "deserts", "deserve", "deserved", "deservedly", "deserves", "deserving", "design", "designed", "designer", "designs", "desirable", "desire", "desired", "desires", "desk", "desolate", "despair", "desperate", "desperately", "desperation", "despicable", "despise", "despised", "despite", "destination", "destined", "destiny", "destroy", "destroyed", "destroying", "destroys", "destruction", "destructive", "det", "detached", "detail", "detailed", "detailing", "details", "detective", "detectives", "detention", "deter", "deteriorated", "deterioration", "determination", "determine", "determined", "detour", "detract", "detracted", "detractors", "detracts", "detriment", "detroit", "deus", "deux", "devastated", "devastating", "develop", "developed", "developing", "development", "developments", "develops", "devgan", "device", "devices", "devil", "devilish", "devils", "devious", "devise", "devised", "devito", "devoid", "devon", "devos", "devoted", "devotion", "devoured", "devout", "dewey", "dexter", "dey", "di", "diabolical", "diagnosed", "diagnosis", "dial", "dialect", "dialog", "dialogs", "dialogue", "dialogues", "diamond", "diamonds", "diana", "diane", "diaper", "diaries", "diary", "diaz", "dicaprio", "dice", "dick", "dickens", "dickinson", "dictates", "dictator", "dictatorship", "diction", "dictionary", "did", "didactic", "didn", "didnt", "die", "died", "diego", "dien", "dies", "diet", "dietrich", "differ", "difference", "differences", "different", "differentiate", "differently", "differs", "difficult", "difficulties", "difficulty", "dig", "digest", "digger", "diggers", "digging", "digital", "digitally", "dignified", "dignity", "digress", "digs", "dil", "dilapidated", "dilemma", "dilemmas", "dillon", "diluted", "dim", "dime", "dimension", "dimensional", "dimensions", "diminish", "diminished", "diminishes", "diminishing", "diminutive", "dimitri", "dimly", "din", "diner", "dingo", "dining", "dinner", "dino", "dinosaur", "dinosaurs", "dip", "dipping", "dir", "dire", "direct", "directed", "directer", "directing", "direction", "directions", "directly", "director", "directorial", "directors", "directs", "dirk", "dirt", "dirty", "dis", "disability", "disabled", "disagree", "disappear", "disappearance", "disappeared", "disappearing", "disappears", "disappoint", "disappointed", "disappointing", "disappointingly", "disappointment", "disappointments", "disappoints", "disaster", "disasters", "disastrous", "disbelief", "disc", "discarded", "discern", "discernible", "discerning", "discipline", "disclaimer", "disco", "discomfort", "disconcerting", "disconnected", "discount", "discourse", "discover", "discovered", "discoveries", "discovering", "discovers", "discovery", "discredit", "discrimination", "discuss", "discussed", "discusses", "discussing", "discussion", "discussions", "disdain", "disease", "diseases", "disfigured", "disgrace", "disgraceful", "disgruntled", "disguise", "disguised", "disguises", "disgust", "disgusted", "disgusting", "disgustingly", "dish", "dishes", "disheveled", "dishonest", "disillusioned", "disinterested", "disjointed", "disk", "dislike", "disliked", "dismal", "dismay", "dismayed", "dismiss", "dismissed", "dismisses", "disney", "disneyland", "disorder", "disorders", "disowned", "disparate", "dispatch", "dispatched", "displaced", "display", "displayed", "displaying", "displays", "displeasure", "disposable", "disposal", "disposed", "disposing", "disposition", "dispute", "disregard", "disrespect", "disrespectful", "dissatisfied", "dissect", "disservice", "dissolves", "distance", "distant", "distaste", "distasteful", "distinct", "distinction", "distinctive", "distinctly", "distinguish", "distinguished", "distinguishes", "distorted", "distortion", "distract", "distracted", "distracting", "distraction", "distractions", "distracts", "distraught", "distress", "distressed", "distressing", "distribute", "distributed", "distribution", "distributor", "distributors", "district", "disturb", "disturbed", "disturbing", "disturbingly", "ditch", "ditto", "ditzy", "diva", "dive", "diver", "diverse", "diversion", "diversity", "dives", "divide", "divided", "divine", "diving", "division", "divorce", "divorced", "dixon", "dizzy", "dizzying", "dj", "dna", "do", "doc", "dock", "docks", "doctor", "doctors", "docu", "docudrama", "document", "documentaries", "documentary", "documented", "documents", "dodge", "dodger", "dodging", "dodgy", "doe", "does", "doesn", "doesnt", "dog", "dogma", "dogs", "doing", "dolby", "doll", "dollar", "dollars", "dolls", "dolly", "dolph", "dom", "domain", "domestic", "dominant", "dominate", "dominated", "dominates", "dominating", "domination", "domineering", "dominic", "dominique", "domino", "don", "donald", "donate", "done", "dong", "donkey", "donna", "donnell", "donner", "donnie", "donovan", "dont", "doo", "dooley", "doom", "doomed", "door", "doors", "doorstep", "doorway", "dope", "dopey", "doppelganger", "dorff", "doris", "dorky", "dorm", "dorothy", "dose", "doses", "dot", "dots", "double", "doubles", "doubt", "doubtful", "doubtless", "doubts", "doug", "dough", "douglas", "dour", "dove", "dowdy", "down", "downbeat", "downer", "downey", "downfall", "downhill", "download", "downright", "downs", "downside", "downstairs", "downtown", "downtrodden", "downward", "doyle", "dozen", "dozens", "dp", "dr", "drab", "dracula", "draft", "drafted", "drag", "dragged", "dragging", "dragon", "dragons", "drags", "drain", "drained", "draining", "drake", "drama", "dramas", "dramatic", "dramatically", "dramatics", "dramatization", "dramatized", "drastically", "draw", "drawback", "drawbacks", "drawer", "drawing", "drawings", "drawl", "drawn", "draws", "dread", "dreaded", "dreadful", "dreadfully", "dream", "dreamed", "dreamer", "dreaming", "dreamlike", "dreams", "dreamworks", "dreamy", "dreary", "dreck", "drenched", "dress", "dressed", "dresses", "dressing", "drew", "dreyfus", "dreyfuss", "dribble", "dried", "drift", "drifter", "drifting", "drifts", "drill", "drilling", "drink", "drinking", "drinks", "drip", "dripped", "dripping", "drive", "drivel", "driven", "driver", "drivers", "drives", "driving", "droll", "drone", "drones", "droning", "drool", "drooling", "drop", "dropped", "dropping", "drops", "dross", "drove", "drown", "drowned", "drowning", "drowns", "drug", "drugged", "drugs", "drum", "drummer", "drums", "drunk", "drunken", "drunks", "dry", "drying", "dtv", "du", "dual", "dub", "dubbed", "dubbing", "dubious", "dublin", "duchovny", "duck", "ducks", "dud", "dude", "dudes", "dudley", "duds", "due", "duel", "dueling", "duet", "duff", "dug", "duh", "dukakis", "duke", "dukes", "dull", "dullness", "duly", "dumb", "dumbed", "dumber", "dumbest", "dumbing", "dummy", "dump", "dumped", "dumps", "dumpster", "dunaway", "duncan", "dundee", "dune", "dung", "dungeon", "dungeons", "dunk", "dunne", "dunno", "dunst", "duo", "duped", "duration", "during", "duryea", "dusk", "dust", "dustin", "dusty", "dutch", "duties", "duty", "duval", "duvall", "dv", "dvd", "dvds", "dvr", "dwarf", "dwarfs", "dwell", "dwelling", "dwells", "dwight", "dyan", "dye", "dyer", "dying", "dyke", "dylan", "dynamic", "dynamics", "dynamite", "dynasty", "dysfunctional", "dystopian", "each", "eager", "eagerly", "eagle", "ealing", "ear", "earl", "earlier", "earliest", "early", "earn", "earned", "earnest", "earning", "earns", "earp", "ears", "earth", "earthly", "earthquake", "ease", "easier", "easiest", "easily", "east", "easter", "eastern", "eastwood", "easy", "eat", "eaten", "eater", "eaters", "eating", "eats", "ebay", "ebenezer", "ebert", "eccentric", "echo", "echoed", "echoes", "echoing", "eclectic", "eclipsed", "economic", "economical", "economy", "ecstasy", "ecstatic", "ed", "eddie", "eddy", "eden", "edgar", "edge", "edged", "edges", "edgy", "edie", "edinburgh", "edison", "edit", "edited", "edith", "editing", "edition", "editions", "editor", "editors", "edits", "edmond", "edmund", "educate", "educated", "education", "educational", "edward", "edwards", "eerie", "eerily", "effect", "effected", "effective", "effectively", "effectiveness", "effects", "effeminate", "efficiency", "efficient", "efficiently", "effort", "effortless", "effortlessly", "efforts", "eg", "egan", "egg", "eggs", "ego", "egos", "egotistical", "egregious", "egypt", "egyptian", "eh", "eight", "eighteen", "eighth", "eighties", "eighty", "eileen", "einstein", "either", "el", "elaborate", "elaborated", "elaine", "elder", "elderly", "elders", "eldest", "eleanor", "elected", "election", "electric", "electrical", "electricity", "electrifying", "electrocuted", "electronic", "electronics", "elegance", "elegant", "elegantly", "element", "elementary", "elements", "elephant", "elephants", "elevate", "elevated", "elevates", "elevator", "elevators", "eleven", "elf", "eli", "elia", "elicit", "eligible", "elijah", "eliminate", "eliminated", "eliminating", "elisabeth", "elisha", "elite", "elitist", "eliza", "elizabeth", "ella", "ellen", "elliot", "elliott", "ellis", "elm", "elmer", "eloquent", "elsa", "else", "elsewhere", "elton", "eludes", "elusive", "elvira", "elvis", "ely", "em", "email", "embark", "embarks", "embarrass", "embarrassed", "embarrassing", "embarrassingly", "embarrassment", "embedded", "embittered", "embodied", "embodies", "embodiment", "embrace", "embraced", "embraces", "embracing", "emerge", "emerged", "emergence", "emergency", "emerges", "emerging", "emil", "emilio", "emily", "eminently", "emma", "emmanuelle", "emmy", "emoting", "emotion", "emotional", "emotionally", "emotionless", "emotions", "emotive", "empathetic", "empathize", "empathy", "emperor", "emphasis", "emphasize", "emphasized", "emphasizes", "empire", "employ", "employed", "employee", "employees", "employer", "employment", "employs", "emptiness", "empty", "emulate", "en", "enable", "enabled", "enables", "enabling", "enacted", "enamored", "enchanted", "enchanting", "encompassing", "encounter", "encountered", "encountering", "encounters", "encourage", "encouraged", "encourages", "encouraging", "end", "endear", "endearing", "endeavor", "ended", "ending", "endings", "endless", "endlessly", "endor", "endorse", "endorsement", "endowed", "ends", "endurance", "endure", "endured", "endures", "enduring", "enemies", "enemy", "energetic", "energy", "enforcement", "enforcer", "engage", "engaged", "engagement", "engages", "engaging", "engine", "engineer", "engineered", "engineering", "engines", "england", "english", "englishman", "englund", "engrossed", "engrossing", "enhance", "enhanced", "enhances", "enigma", "enigmatic", "enjoy", "enjoyable", "enjoyably", "enjoyed", "enjoying", "enjoyment", "enjoys", "enlighten", "enlightened", "enlightening", "enlightenment", "enlist", "enlisted", "enlists", "ennio", "enormous", "enormously", "enough", "enraged", "enrico", "ensemble", "ensue", "ensues", "ensuing", "ensure", "ensures", "ensuring", "entangled", "enter", "entered", "entering", "enterprise", "enters", "entertain", "entertained", "entertainer", "entertainers", "entertaining", "entertainment", "entertains", "enthralled", "enthralling", "enthusiasm", "enthusiast", "enthusiastic", "enthusiastically", "enthusiasts", "entice", "enticing", "entire", "entirely", "entirety", "entitled", "entity", "entourage", "entrance", "entranced", "entrepreneur", "entries", "entry", "envelope", "environment", "environmental", "environments", "envisioned", "envy", "ephemeral", "epic", "epics", "epidemic", "epilogue", "episode", "episodes", "episodic", "epitome", "eponymous", "epps", "equal", "equality", "equally", "equals", "equation", "equipment", "equipped", "equivalent", "er", "era", "eras", "erase", "erased", "eraserhead", "eric", "erica", "erik", "erika", "erm", "ernest", "ernie", "ernst", "erotic", "erotica", "eroticism", "err", "erratic", "errol", "error", "errors", "erupts", "es", "escalating", "escapades", "escape", "escaped", "escapes", "escaping", "escapism", "escapist", "escort", "esoteric", "esp", "especially", "espionage", "esposito", "esque", "esquire", "essay", "essence", "essential", "essentially", "establish", "established", "establishes", "establishing", "establishment", "estate", "esteem", "esteemed", "esther", "estimation", "estranged", "et", "etc", "etched", "eternal", "eternally", "eternity", "ethan", "ethel", "ethereal", "ethical", "ethics", "ethnic", "ethnicity", "eugene", "euro", "europa", "europe", "european", "europeans", "eva", "evacuated", "evaluate", "evaluation", "evan", "evangelical", "evans", "eve", "evelyn", "even", "evening", "event", "events", "eventual", "eventually", "ever", "everett", "evergreen", "everlasting", "every", "everybody", "everyday", "everyman", "everyone", "everything", "everytime", "everywhere", "evidence", "evidenced", "evident", "evidently", "evil", "evils", "evocative", "evoke", "evoked", "evokes", "evoking", "evolution", "evolve", "evolved", "evolves", "evolving", "ewan", "ewoks", "ex", "exact", "exactly", "exaggerated", "exaggerating", "exaggeration", "exaggerations", "examination", "examine", "examined", "examines", "examining", "example", "examples", "exceed", "exceeded", "exceedingly", "exceeds", "excel", "excellence", "excellent", "excellently", "excels", "except", "exception", "exceptional", "exceptionally", "exceptions", "excerpts", "excess", "excesses", "excessive", "excessively", "exchange", "exchanges", "exchanging", "excited", "excitement", "exciting", "exclaims", "exclamation", "excluding", "exclusive", "exclusively", "excrement", "excruciating", "excruciatingly", "excursion", "excuse", "excused", "excuses", "exec", "execrable", "execs", "execute", "executed", "executing", "execution", "executions", "executive", "executives", "exemplary", "exemplifies", "exercise", "exhausted", "exhausting", "exhibit", "exhibited", "exhibition", "exhibits", "exhilarating", "exile", "exiled", "exist", "existed", "existence", "existent", "existential", "existing", "exists", "exit", "exiting", "exits", "exorcist", "exotic", "expand", "expanded", "expansive", "expect", "expectation", "expectations", "expected", "expecting", "expects", "expedition", "expelled", "expendable", "expense", "expenses", "expensive", "experience", "experienced", "experiences", "experiencing", "experiment", "experimental", "experimentation", "experimenting", "experiments", "expert", "expertise", "expertly", "experts", "explain", "explained", "explaining", "explains", "explanation", "explanations", "explicit", "explicitly", "explode", "exploded", "explodes", "exploding", "exploit", "exploitation", "exploitative", "exploited", "exploiting", "exploitive", "exploits", "exploration", "explore", "explored", "explores", "exploring", "explosion", "explosions", "explosive", "explosives", "expose", "exposed", "exposes", "exposing", "exposition", "exposure", "express", "expressed", "expresses", "expressing", "expression", "expressionism", "expressionist", "expressionless", "expressions", "expressive", "exquisite", "exquisitely", "extend", "extended", "extends", "extension", "extensive", "extensively", "extent", "exterior", "external", "extinct", "extinction", "extra", "extract", "extraneous", "extraordinarily", "extraordinary", "extras", "extravagant", "extravaganza", "extreme", "extremely", "extremes", "extremities", "exuberance", "exuberant", "exudes", "eye", "eyeball", "eyeballs", "eyebrow", "eyebrows", "eyed", "eyes", "eyre", "fable", "fabric", "fabricated", "fabulous", "facade", "face", "faced", "faceless", "faces", "facet", "facets", "facial", "facile", "facilities", "facility", "facing", "fact", "factions", "factor", "factors", "factory", "facts", "factual", "fade", "faded", "fades", "fading", "fagin", "fail", "failed", "failing", "failings", "fails", "failure", "failures", "faint", "faints", "fair", "fairbanks", "fairly", "fairness", "fairy", "fairytale", "faith", "faithful", "faithfully", "faithfulness", "fake", "faked", "faking", "falco", "falcon", "falk", "fall", "fallen", "falling", "fallon", "falls", "false", "falsely", "falters", "fame", "famed", "familial", "familiar", "familiarity", "families", "family", "famine", "famous", "famously", "fan", "fanatic", "fanatical", "fanatics", "fancy", "fanning", "fanny", "fans", "fantasies", "fantastic", "fantastical", "fantastically", "fantasy", "far", "farce", "farcical", "fare", "fared", "fares", "farewell", "faris", "farm", "farmer", "farmers", "farnsworth", "farrah", "farrell", "farrelly", "fart", "farther", "farting", "fascinated", "fascinating", "fascination", "fascism", "fascist", "fashion", "fashionable", "fashioned", "fashions", "fassbinder", "fast", "faster", "fastest", "fat", "fatal", "fatale", "fatally", "fate", "fated", "fateful", "fates", "father", "fathers", "fathom", "fault", "faultless", "faults", "faulty", "faux", "fav", "fave", "favor", "favorable", "favored", "favorite", "favorites", "favors", "favour", "favourite", "favourites", "favours", "fawcett", "fay", "faye", "fbi", "fear", "feared", "fearful", "fearing", "fearless", "fears", "feast", "feat", "feather", "feathers", "feature", "featured", "features", "featurette", "featuring", "february", "fed", "federal", "fee", "feeble", "feed", "feeding", "feeds", "feel", "feelgood", "feeling", "feelings", "feels", "feet", "feinstone", "feisty", "feline", "felix", "fell", "fellini", "fellow", "fellows", "fellowship", "felt", "female", "females", "feminine", "femininity", "feminism", "feminist", "feminists", "femme", "fence", "fencing", "fend", "fenton", "fernando", "ferocious", "ferrell", "ferrer", "ferris", "ferry", "fest", "festival", "festivals", "fetched", "fetching", "fetish", "feud", "feudal", "fever", "few", "fewer", "fey", "fez", "fi", "fiance", "fianc\u00e9", "fianc\u00e9e", "fiasco", "fiction", "fictional", "fictionalized", "fictitious", "fiddle", "fide", "fidel", "fidelity", "fido", "field", "fields", "fiend", "fiennes", "fierce", "fiercely", "fiery", "fifteen", "fifth", "fifties", "fifty", "fight", "fighter", "fighters", "fighting", "fights", "figure", "figured", "figures", "figuring", "file", "files", "filipino", "fill", "filled", "filler", "filling", "fills", "film", "filmed", "filmic", "filming", "filmmaker", "filmmakers", "filmmaking", "filmography", "films", "filter", "filters", "filth", "filthy", "final", "finale", "finally", "finance", "financed", "finances", "financial", "financially", "financing", "finch", "find", "finding", "findings", "finds", "fine", "finely", "fineman", "finer", "finesse", "finest", "finger", "fingernails", "fingers", "finish", "finished", "finishes", "finishing", "finney", "finnish", "fiona", "fire", "fired", "firefighters", "firefly", "fireplace", "fires", "fireworks", "firing", "firm", "firmly", "first", "firstly", "fischer", "fish", "fishburne", "fisher", "fisherman", "fishing", "fist", "fisted", "fists", "fit", "fits", "fitted", "fitting", "fitzgerald", "five", "fix", "fixation", "fixed", "fixing", "flag", "flags", "flaherty", "flair", "flamboyant", "flame", "flamenco", "flames", "flaming", "flapping", "flare", "flash", "flashback", "flashbacks", "flashed", "flashes", "flashing", "flashlight", "flashy", "flat", "flats", "flattering", "flavor", "flavour", "flaw", "flawed", "flawless", "flawlessly", "flaws", "flea", "fled", "fledged", "flee", "fleeing", "flees", "fleet", "fleeting", "fleischer", "fleming", "flesh", "fleshed", "flew", "flic", "flick", "flicker", "flickering", "flicks", "flies", "flight", "flights", "flimsy", "fling", "flip", "flippant", "flipped", "flipping", "flips", "flirt", "flirting", "flirts", "float", "floating", "floats", "flock", "flood", "flooding", "floor", "floors", "flop", "flopped", "flops", "florence", "florida", "flounder", "flourish", "flourishes", "flow", "flower", "flowers", "flowing", "flown", "flows", "floyd", "flu", "fluent", "fluff", "fluffy", "fluid", "fluke", "flung", "flushed", "flute", "fly", "flying", "flynn", "foch", "focus", "focused", "focuses", "focusing", "fodder", "foe", "foes", "fog", "foggy", "foil", "fold", "foley", "folk", "folklore", "folks", "follow", "followed", "followers", "following", "follows", "folly", "fond", "fonda", "fondly", "fondness", "fontaine", "food", "fool", "fooled", "fooling", "foolish", "foolishly", "foolishness", "fools", "foot", "footage", "football", "footed", "footlight", "footsteps", "for", "foray", "forbes", "forbid", "forbidden", "force", "forced", "forces", "forcing", "ford", "fore", "foreboding", "foree", "foreground", "forehead", "foreign", "foreigner", "foreigners", "foremost", "forensic", "foreshadowing", "forest", "forests", "forever", "forewarned", "forget", "forgets", "forgettable", "forgetting", "forgivable", "forgive", "forgiven", "forgiveness", "forgives", "forgiving", "forgot", "forgotten", "fork", "forlani", "form", "formal", "format", "formation", "formed", "former", "formerly", "formidable", "forming", "forms", "formula", "formulaic", "formulas", "forrest", "forsaken", "forsythe", "fort", "forth", "forthcoming", "forties", "fortress", "fortunate", "fortunately", "fortune", "fortunes", "forty", "forum", "forward", "forwarded", "forwarding", "forwards", "foster", "fought", "foul", "found", "foundation", "founded", "founder", "founding", "fountain", "four", "fourteen", "fourth", "fox", "foxes", "foxx", "foxy", "fraction", "fractured", "fragile", "fragility", "fragmented", "fragments", "frail", "frailty", "frame", "framed", "frames", "framework", "framing", "france", "frances", "franchise", "franchot", "francis", "francisco", "franco", "francois", "frank", "frankenstein", "frankie", "franklin", "frankly", "franks", "frantic", "frantically", "franz", "frat", "fraternity", "fraud", "fraught", "freak", "freaked", "freakin", "freaking", "freakish", "freaks", "freaky", "fred", "freddie", "freddy", "frederic", "free", "freed", "freedom", "freely", "freeman", "freeway", "freeze", "freezing", "french", "frenchman", "frenetic", "frenzied", "frenzy", "frequency", "frequent", "frequently", "fresh", "freshly", "freshman", "freshness", "freud", "freudian", "fricker", "friction", "friday", "fridge", "fried", "friend", "friendly", "friends", "friendship", "friendships", "friggin", "fright", "frighten", "frightened", "frightening", "frighteningly", "fringe", "fritz", "frodo", "frog", "frogs", "frolic", "from", "front", "frontal", "frontier", "fronts", "frost", "frozen", "fruit", "fruition", "frustrated", "frustrating", "frustratingly", "frustration", "frustrations", "fry", "frye", "frying", "ft", "fu", "fuel", "fuels", "fugitive", "fulci", "fulfill", "fulfilled", "fulfilling", "fulfillment", "fulfills", "full", "fuller", "fullest", "fully", "fun", "function", "functional", "functioning", "functions", "fund", "fundamental", "fundamentalist", "fundamentally", "funded", "funding", "funds", "funeral", "funky", "funnier", "funniest", "funnily", "funny", "fur", "furious", "furlong", "furniture", "furry", "further", "furthermore", "fury", "fuse", "fuss", "futile", "futility", "future", "futuristic", "fuzzy", "fx", "gable", "gabriel", "gabriella", "gackt", "gadget", "gadgets", "gag", "gage", "gags", "gail", "gain", "gained", "gaining", "gains", "gal", "galactica", "galaxy", "gale", "gall", "gallagher", "gallery", "galore", "gals", "gamble", "gambler", "gambling", "game", "gameplay", "games", "gaming", "gamut", "gandalf", "gandhi", "gandolfini", "gang", "gangs", "gangsta", "gangster", "gangsters", "gap", "gaping", "gaps", "garage", "garam", "garb", "garbage", "garbo", "garcia", "garde", "garden", "gardener", "gardens", "gardner", "garfield", "gargantuan", "garish", "garland", "garner", "garnered", "garrett", "garry", "gary", "gas", "gasoline", "gasp", "gasping", "gate", "gates", "gather", "gathered", "gathering", "gathers", "gaudy", "gauge", "gave", "gavin", "gawd", "gawky", "gay", "gays", "gaze", "gazing", "gazzara", "gear", "geared", "gears", "geddes", "gee", "geek", "geeks", "geeky", "geer", "geez", "geezer", "geisha", "gellar", "gem", "gems", "gen", "gena", "gender", "gene", "general", "generally", "generals", "generate", "generated", "generates", "generating", "generation", "generations", "generic", "generous", "genesis", "genetic", "genetically", "genie", "genitals", "genius", "geniuses", "genre", "genres", "gentle", "gentleman", "gentlemen", "gently", "genuine", "genuinely", "geoffrey", "geographic", "geography", "george", "georges", "georgia", "gerald", "geraldine", "gerard", "gere", "german", "germans", "germany", "gershwin", "gertrude", "gesture", "gestures", "get", "getaway", "gets", "getting", "ghastly", "ghetto", "ghost", "ghostly", "ghosts", "gi", "giallo", "giamatti", "giancarlo", "giant", "giants", "gibberish", "gibson", "giddy", "gielgud", "gift", "gifted", "gifts", "gig", "gigantic", "giggle", "giggles", "giggling", "gigi", "gigli", "gigolo", "gigs", "gil", "gilbert", "gilliam", "gillian", "gilligan", "gimmick", "gimmicks", "gimmicky", "gina", "ginger", "giovanna", "giovanni", "girl", "girlfight", "girlfriend", "girlfriends", "girls", "gist", "give", "given", "gives", "giving", "glad", "gladiator", "gladly", "gladys", "glamor", "glamorous", "glamour", "glance", "glances", "glaring", "glass", "glasses", "gleason", "glee", "gleeful", "gleefully", "glen", "glenda", "glenn", "glib", "glimmer", "glimpse", "glimpsed", "glimpses", "glitter", "glitz", "global", "globe", "gloom", "gloomy", "gloria", "glorified", "glorifies", "glorify", "glorious", "gloriously", "glory", "gloss", "glossed", "glossy", "glove", "glover", "gloves", "glow", "glowing", "glue", "glued", "go", "goal", "goals", "goat", "god", "godard", "goddess", "godfather", "godmother", "gods", "godzilla", "goebbels", "goer", "goers", "goes", "going", "goings", "gold", "goldberg", "goldblum", "golden", "goldie", "goldsmith", "goldsworthy", "golf", "gomez", "gone", "gong", "gonna", "gonzalez", "gonzo", "goo", "good", "goodbye", "goodfellas", "goodies", "gooding", "goodman", "goodness", "goodnight", "goods", "goody", "goof", "goofs", "goofy", "google", "goon", "goons", "goose", "gopal", "gordon", "gore", "gorgeous", "gorgeously", "gorilla", "gory", "gosh", "gospel", "gossip", "got", "goth", "gothic", "gotta", "gotten", "governess", "government", "governments", "governor", "govinda", "gown", "gowns", "grab", "grabbed", "grabbing", "grabs", "grace", "graced", "graceful", "gracefully", "graces", "grade", "grader", "gradual", "gradually", "graduate", "graduated", "graduates", "graduation", "grady", "graffiti", "graham", "grail", "grain", "grainy", "grammar", "grand", "grandchildren", "granddaughter", "grandeur", "grandfather", "grandiose", "grandma", "grandmother", "grandpa", "grandparents", "grandson", "granger", "granny", "grant", "granted", "grants", "graphic", "graphically", "graphics", "gras", "grasp", "grass", "grateful", "gratification", "gratifying", "grating", "gratitude", "gratuitous", "grave", "graves", "graveyard", "gravitas", "gravity", "gray", "grayson", "grease", "greasy", "great", "greater", "greatest", "greatly", "greatness", "greats", "greece", "greed", "greedy", "greek", "green", "greenaway", "greene", "greenlight", "greet", "greeted", "greetings", "greg", "gregory", "gremlins", "grenade", "grenades", "grendel", "greta", "gretchen", "grew", "grey", "grieco", "grief", "grier", "grieving", "griffin", "griffith", "griffiths", "grifters", "grim", "grimy", "grin", "grinch", "grind", "grindhouse", "grinding", "grinning", "grip", "gripe", "gripped", "gripping", "grips", "grisham", "grisly", "grit", "gritty", "grizzled", "groan", "groaning", "groans", "grocery", "groin", "groom", "groomed", "groove", "groovy", "gross", "grosse", "grossed", "grossing", "grossly", "grotesque", "ground", "groundbreaking", "grounded", "grounds", "group", "groups", "grow", "growing", "growling", "grown", "grows", "growth", "grudge", "grudgingly", "grueling", "gruesome", "gruesomely", "gruff", "grumpy", "grungy", "grunts", "guarantee", "guaranteed", "guard", "guarded", "guardian", "guards", "guerrilla", "guess", "guessed", "guessing", "guest", "guests", "guetary", "guevara", "guidance", "guide", "guided", "guidelines", "guides", "guiding", "guilt", "guilty", "guinea", "guinness", "guise", "guitar", "guitarist", "gulf", "gullible", "gum", "gummer", "gump", "gun", "gundam", "gunfight", "gunfighter", "gunfire", "gung", "gunga", "gunman", "gunned", "gunpoint", "guns", "gunshot", "gunshots", "gunslinger", "guru", "gus", "gushing", "gusto", "gut", "guts", "gutsy", "gutted", "gutter", "guy", "guys", "guzman", "gwyneth", "gwynne", "gyllenhaal", "gym", "gypsies", "gypsy", "ha", "haas", "habit", "habits", "hack", "hacked", "hacking", "hackman", "hackneyed", "hacks", "had", "hadley", "hadn", "hag", "haggard", "haha", "hai", "hail", "hailed", "haines", "hair", "haircut", "haircuts", "hairdo", "haired", "hairs", "hairstyle", "hairstyles", "hairy", "hal", "hale", "haley", "half", "halfway", "hall", "halle", "hallmark", "halloween", "hallucination", "hallucinations", "hallway", "hallways", "halt", "ham", "hamill", "hamilton", "hamlet", "hammer", "hammered", "hammerhead", "hamming", "hammy", "hampered", "hampton", "hams", "han", "hand", "handed", "handedly", "handful", "handicapped", "handing", "handle", "handled", "handles", "handling", "hands", "handsome", "handy", "hang", "hanged", "hanger", "hanging", "hangover", "hangs", "hank", "hanks", "hanna", "hannah", "hannibal", "hans", "hansen", "hanson", "hanzo", "haphazard", "haphazardly", "hapless", "happen", "happened", "happening", "happenings", "happens", "happenstance", "happier", "happily", "happiness", "happy", "hara", "harass", "harassed", "harassment", "harbor", "hard", "hardcore", "hardened", "harder", "hardest", "hardly", "hardship", "hardships", "hardware", "hardwicke", "hardy", "hare", "harilal", "hark", "harlem", "harlin", "harlow", "harm", "harmed", "harmless", "harmon", "harmony", "harold", "harp", "harper", "harrelson", "harried", "harriet", "harris", "harrison", "harron", "harrowing", "harry", "harsh", "harshly", "harshness", "hart", "hartley", "hartman", "harvard", "harvest", "harvey", "has", "hasn", "hasselhoff", "hasso", "hastily", "hasty", "hat", "hatcher", "hatchet", "hate", "hated", "hateful", "hater", "haters", "hates", "hating", "hatred", "hats", "haunt", "haunted", "haunting", "hauntingly", "haunts", "havana", "have", "haven", "having", "havoc", "hawaii", "hawaiian", "hawk", "hawke", "hawks", "hawn", "hay", "hayden", "hayes", "hays", "hayward", "hayworth", "hazy", "hazzard", "hbo", "he", "head", "headache", "headed", "heading", "headlights", "headlines", "headquarters", "heads", "headstrong", "heal", "healed", "healing", "health", "healthy", "heap", "hear", "heard", "hearing", "hears", "hearst", "heart", "heartbeat", "heartbreak", "heartbreaking", "heartbroken", "hearted", "heartfelt", "heartily", "heartland", "heartless", "hearts", "heartwarming", "hearty", "heat", "heated", "heath", "heather", "heaven", "heavenly", "heavens", "heavily", "heavy", "heavyweight", "hebrew", "hecht", "heck", "hectic", "hector", "hedy", "heed", "heel", "heels", "hefty", "heh", "height", "heightened", "heightens", "heights", "heinous", "heir", "heiress", "heist", "held", "helen", "helena", "helga", "helicopter", "helicopters", "hell", "hellman", "hello", "hellraiser", "helm", "helmed", "helmer", "helmet", "help", "helped", "helper", "helpful", "helping", "helpless", "helplessness", "helps", "hemingway", "hence", "henchman", "henchmen", "henderson", "hendrix", "henner", "henri", "henry", "henson", "henstridge", "hepburn", "her", "herbert", "hercules", "herd", "here", "herein", "heres", "heritage", "herman", "hernandez", "hero", "heroes", "heroic", "heroics", "heroin", "heroine", "heroines", "heroism", "herring", "herrings", "hers", "herself", "herzog", "hes", "hesitant", "hesitate", "hesitation", "heston", "heterosexual", "hewitt", "hey", "heyday", "hi", "hick", "hickock", "hicks", "hid", "hidden", "hide", "hideous", "hideously", "hideout", "hides", "hiding", "high", "higher", "highest", "highlight", "highlighted", "highlighting", "highlights", "highly", "highs", "highway", "hijacked", "hijacking", "hijinks", "hiking", "hilarious", "hilariously", "hilarity", "hilary", "hill", "hillary", "hillbillies", "hillbilly", "hilliard", "hills", "hillyer", "hilt", "hilton", "him", "himself", "hindered", "hindi", "hinds", "hindsight", "hindu", "hines", "hinges", "hint", "hinted", "hinting", "hints", "hip", "hippie", "hippies", "hippy", "hire", "hired", "hires", "hiring", "his", "hispanic", "historian", "historians", "historic", "historical", "historically", "history", "histrionic", "histrionics", "hit", "hitch", "hitchcock", "hitchcockian", "hitchhiker", "hitler", "hits", "hitting", "hiv", "hk", "hmm", "hmmm", "hmmmm", "ho", "hobby", "hobgoblins", "hockey", "hodge", "hoffman", "hog", "hogan", "hogg", "hogwash", "hokey", "hokum", "hold", "holden", "holding", "holds", "hole", "holes", "holiday", "holidays", "holland", "hollow", "holloway", "holly", "hollywood", "holm", "holmes", "holocaust", "holt", "holy", "homage", "homages", "home", "homeland", "homeless", "homely", "homemade", "homer", "homes", "hometown", "homeward", "homework", "homicidal", "homicide", "homo", "homoerotic", "homophobic", "homosexual", "homosexuality", "homosexuals", "honed", "honest", "honestly", "honesty", "honey", "honeymoon", "hong", "honor", "honorable", "honored", "honors", "honour", "honourable", "hoo", "hood", "hoodlum", "hoodlums", "hoods", "hook", "hooked", "hooker", "hookers", "hooks", "hooligans", "hooper", "hooray", "hoot", "hoover", "hop", "hope", "hoped", "hopeful", "hopefully", "hopeless", "hopelessly", "hopelessness", "hopes", "hoping", "hopkins", "hopper", "hopping", "horde", "hordes", "horizon", "horizons", "horn", "horns", "horny", "horrendous", "horrendously", "horrible", "horribly", "horrid", "horrific", "horrified", "horrifying", "horror", "horrors", "horse", "horseback", "horses", "horton", "hose", "hospital", "host", "hostage", "hostages", "hosted", "hostel", "hostess", "hostile", "hostility", "hosts", "hot", "hotel", "hotels", "hotter", "hottest", "hottie", "hound", "hounds", "hour", "hours", "house", "household", "housekeeper", "houses", "housewife", "housewives", "housing", "houston", "how", "howard", "however", "howl", "howling", "hrs", "html", "http", "hubby", "hudson", "hug", "huge", "hugely", "hugging", "hugh", "hughes", "hugo", "huh", "hulk", "hulking", "hum", "human", "humane", "humanity", "humanoid", "humans", "humble", "humdrum", "humiliate", "humiliated", "humiliating", "humiliation", "humility", "humming", "humor", "humorless", "humorous", "humour", "humourless", "humphrey", "hunchback", "hundred", "hundreds", "hundstage", "hung", "hungarian", "hunger", "hungry", "hunk", "hunky", "hunt", "hunted", "hunter", "hunters", "hunting", "hurricane", "hurry", "hurt", "hurting", "hurts", "husband", "husbands", "hustle", "hustler", "huston", "hut", "hutton", "hybrid", "hyde", "hype", "hyped", "hyper", "hyperactive", "hyperbole", "hypnotic", "hypnotized", "hypocrisy", "hypocrite", "hypocritical", "hysteria", "hysterical", "hysterically", "hysterics", "iago", "ian", "ice", "iceberg", "ichi", "icing", "icky", "icon", "iconic", "icons", "icy", "id", "ida", "idea", "ideal", "idealism", "idealistic", "idealized", "ideally", "ideals", "ideas", "identical", "identification", "identified", "identify", "identifying", "identities", "identity", "ideological", "ideologies", "ideology", "idiocy", "idiosyncrasies", "idiosyncratic", "idiot", "idiotic", "idiotically", "idiots", "idle", "idol", "idyllic", "ie", "if", "ignorance", "ignorant", "ignore", "ignored", "ignores", "ignoring", "igor", "ii", "iii", "il", "ilk", "ill", "illegal", "illicit", "illinois", "illiterate", "illness", "illogical", "illuminate", "illusion", "illusions", "illustrate", "illustrated", "illustrates", "illustration", "illustrations", "illustrious", "ilona", "im", "image", "imagery", "images", "imaginable", "imaginary", "imagination", "imaginations", "imaginative", "imaginatively", "imagine", "imagined", "imagines", "imagining", "imax", "imbecilic", "imdb", "imho", "imitate", "imitated", "imitating", "imitation", "imitations", "immaculate", "immature", "immediate", "immediately", "immense", "immensely", "immerse", "immersed", "immigrant", "immigrants", "immigration", "imminent", "immoral", "immorality", "immortal", "immortality", "immune", "imo", "impact", "impaled", "impatient", "impeccable", "impeccably", "impending", "impenetrable", "imperfect", "imperial", "impersonate", "impersonating", "impersonation", "impersonator", "implanted", "implausibility", "implausible", "implements", "implication", "implications", "implicit", "implied", "implies", "implore", "imply", "implying", "import", "importance", "important", "importantly", "impose", "imposed", "imposing", "impossibility", "impossible", "impossibly", "impostor", "impotent", "impoverished", "impress", "impressed", "impresses", "impressing", "impression", "impressionable", "impressions", "impressive", "impressively", "imprisoned", "improbable", "impromptu", "improv", "improve", "improved", "improvement", "improvements", "improves", "improving", "improvisation", "improvise", "improvised", "impulse", "impulses", "in", "inability", "inaccuracies", "inaccurate", "inadequate", "inadvertently", "inane", "inanimate", "inappropriate", "inappropriately", "inbred", "inc", "incapable", "incarnation", "incarnations", "incessant", "incessantly", "incest", "incestuous", "inch", "inches", "incident", "incidental", "incidentally", "incidents", "inclined", "include", "included", "includes", "including", "inclusion", "incoherent", "income", "incomparable", "incompetence", "incompetent", "incomplete", "incomprehensible", "incongruous", "inconsequential", "inconsistencies", "inconsistent", "incorporate", "incorporated", "incorporates", "incorrect", "increase", "increased", "increases", "increasing", "increasingly", "incredible", "incredibly", "incriminating", "indeed", "indelible", "independence", "independent", "indescribable", "india", "indian", "indiana", "indians", "indicate", "indicated", "indicates", "indicating", "indication", "indicative", "indicator", "indictment", "indie", "indies", "indifference", "indifferent", "indigenous", "indirectly", "indistinguishable", "individual", "individuality", "individually", "individuals", "indoor", "indoors", "induce", "induced", "inducing", "indulge", "indulgence", "indulgent", "indulges", "industrial", "industry", "indy", "ineffective", "inept", "ineptitude", "ineptly", "ineptness", "inescapable", "inevitable", "inevitably", "inexcusable", "inexperience", "inexperienced", "inexplicable", "inexplicably", "infamous", "infant", "infantile", "infatuated", "infected", "infectious", "inferior", "infernal", "inferno", "infested", "infidelity", "infinite", "infinitely", "infinity", "inflict", "inflicted", "inflicting", "influence", "influenced", "influences", "influential", "info", "infomercial", "inform", "information", "informative", "informed", "informer", "informs", "infuriating", "infused", "ing", "ingenious", "ingenuity", "ingmar", "ingram", "ingredient", "ingredients", "ingrid", "inhabit", "inhabitants", "inhabited", "inhabiting", "inhabits", "inherent", "inherently", "inherit", "inheritance", "inherited", "inherits", "inhuman", "inhumanity", "inimitable", "initial", "initially", "initiative", "inject", "injected", "injection", "injects", "injured", "injuries", "injury", "injustice", "ink", "inkling", "inmates", "inn", "innate", "inner", "innocence", "innocent", "innocently", "innocuous", "innovation", "innovative", "innuendo", "innuendos", "innumerable", "inoffensive", "input", "ins", "insane", "insanely", "insanity", "insatiable", "insect", "insects", "insecure", "insecurities", "insensitive", "insert", "inserted", "inserting", "inserts", "inside", "insight", "insightful", "insights", "insignificance", "insignificant", "insipid", "insist", "insisted", "insistence", "insistent", "insisting", "insists", "insomnia", "insomniac", "inspector", "inspiration", "inspirational", "inspire", "inspired", "inspires", "inspiring", "installed", "installment", "installments", "instalment", "instance", "instances", "instant", "instantly", "instead", "instinct", "instincts", "institute", "institution", "instructed", "instructions", "instructor", "instrument", "instrumental", "instruments", "insufferable", "insufficient", "insult", "insulted", "insulting", "insultingly", "insults", "insurance", "intact", "integral", "integrate", "integrated", "integration", "integrity", "intellect", "intellectual", "intellectually", "intellectuals", "intelligence", "intelligent", "intelligently", "intend", "intended", "intending", "intends", "intense", "intensely", "intensity", "intent", "intention", "intentional", "intentionally", "intentioned", "intentions", "intents", "inter", "interact", "interacting", "interaction", "interactions", "intercourse", "intercut", "interest", "interested", "interesting", "interestingly", "interests", "interfere", "interference", "interior", "interiors", "interlude", "interludes", "interminable", "internal", "international", "internet", "interplay", "interpret", "interpretation", "interpretations", "interpreted", "interrogation", "interrupt", "interrupted", "interspersed", "intertwined", "intervals", "intervenes", "intervention", "interview", "interviewed", "interviewing", "interviews", "interwoven", "intestines", "intimacy", "intimate", "intimidating", "into", "intolerable", "intolerance", "intoxicated", "intricacies", "intricate", "intricately", "intrigue", "intrigued", "intrigues", "intriguing", "intrinsic", "intro", "introduce", "introduced", "introduces", "introducing", "introduction", "introductory", "introspection", "introspective", "introverted", "intruder", "intrusion", "intrusive", "invade", "invaded", "invaders", "invading", "invaluable", "invariably", "invasion", "invent", "invented", "inventing", "invention", "inventions", "inventive", "inventiveness", "inventor", "invest", "invested", "investigate", "investigated", "investigates", "investigating", "investigation", "investigations", "investigative", "investigator", "investment", "invincible", "invisibility", "invisible", "invitation", "invite", "invited", "invites", "inviting", "involve", "involved", "involvement", "involves", "involving", "iowa", "iq", "ira", "iran", "irani", "iranian", "iraq", "ireland", "irene", "irish", "irishman", "iron", "ironic", "ironically", "ironies", "irons", "ironside", "irony", "irrational", "irrelevant", "irresistible", "irresponsible", "irreverent", "irreversible", "irritate", "irritated", "irritates", "irritating", "irritatingly", "irritation", "irs", "irving", "irwin", "is", "isaac", "isabel", "isabelle", "ish", "ishq", "ishtar", "islam", "island", "islanders", "islands", "isle", "ism", "isn", "isnt", "isolated", "isolation", "israel", "israeli", "issue", "issued", "issues", "it", "italian", "italians", "italy", "itch", "itchy", "item", "items", "its", "itself", "iturbi", "iv", "ivan", "ivory", "ivy", "izzard", "jab", "jabba", "jack", "jackass", "jacket", "jackets", "jackie", "jackman", "jackson", "jacob", "jacobi", "jacqueline", "jacques", "jada", "jaded", "jafar", "jaffar", "jaffe", "jagger", "jai", "jail", "jake", "jam", "james", "jameson", "jamie", "jammed", "jan", "jane", "janeane", "janet", "janice", "janine", "janitor", "janos", "january", "japan", "japanese", "jar", "jared", "jarring", "jason", "jaw", "jawed", "jaws", "jay", "jazz", "jazzy", "je", "jealous", "jealousy", "jean", "jeanette", "jeans", "jed", "jedi", "jeep", "jeez", "jeff", "jefferson", "jeffery", "jeffrey", "jekyll", "jelly", "jenkins", "jenna", "jennifer", "jenny", "jeopardy", "jeremy", "jerk", "jerker", "jerking", "jerks", "jerky", "jeroen", "jerome", "jerry", "jersey", "jerusalem", "jess", "jesse", "jessica", "jessie", "jester", "jesus", "jet", "jew", "jewel", "jewelry", "jewels", "jewish", "jews", "jfk", "jigsaw", "jill", "jim", "jimmy", "jj", "jo", "joan", "joanna", "job", "jobs", "jock", "jocks", "jodie", "joe", "joel", "joey", "johansson", "john", "johnnie", "johnny", "johnson", "johnston", "join", "joined", "joining", "joins", "joint", "joke", "joker", "jokes", "joking", "jolie", "jolly", "jolt", "jon", "jonathan", "jones", "jonestown", "jordan", "jose", "joseph", "josh", "joshua", "josie", "joss", "jos\u00e9", "journal", "journalism", "journalist", "journalists", "journey", "journeys", "jovi", "jox", "joy", "joyce", "joyless", "joyous", "joys", "jr", "ju", "juan", "judd", "jude", "judge", "judged", "judgement", "judges", "judging", "judgment", "judgmental", "judi", "judith", "judy", "juice", "juicy", "jules", "julia", "julian", "julie", "juliet", "juliette", "july", "jumbled", "jumbo", "jump", "jumped", "jumping", "jumps", "jumpy", "june", "jungle", "jungles", "junior", "junk", "junkie", "junkies", "junkyard", "jurassic", "jury", "just", "justice", "justifiably", "justification", "justified", "justifies", "justify", "justifying", "justin", "justly", "juvenile", "juxtaposition", "ka", "kahn", "kalifornia", "kamal", "kane", "kansas", "kapoor", "kar", "karate", "kareena", "karen", "kari", "karisma", "karl", "karloff", "karma", "kasdan", "kate", "katherine", "kathleen", "kathryn", "kathy", "katie", "katsu", "kattan", "kaufman", "kavner", "kay", "kaye", "kazan", "keanu", "keaton", "keeler", "keen", "keep", "keeper", "keeping", "keeps", "kei", "keira", "keitel", "keith", "keller", "kellerman", "kelly", "ken", "kennedy", "kennel", "kenneth", "kenny", "kent", "kentucky", "kept", "kermit", "kerr", "kerry", "ketchup", "kevin", "key", "keyboard", "keys", "keystone", "khan", "khanna", "kick", "kicked", "kicker", "kicking", "kicks", "kid", "kiddie", "kiddies", "kidding", "kidman", "kidnap", "kidnapped", "kidnappers", "kidnapping", "kidnaps", "kids", "kiefer", "kill", "killed", "killer", "killers", "killing", "killings", "kills", "kilmer", "kilter", "kim", "kimberly", "kin", "kind", "kinda", "kindergarten", "kindly", "kindness", "kinds", "kinetic", "king", "kingdom", "kings", "kingsley", "kinky", "kinnear", "kino", "kinski", "kipling", "kirk", "kirsten", "kiss", "kissed", "kisses", "kissing", "kit", "kitamura", "kitchen", "kitsch", "kitschy", "kitten", "kittens", "kitty", "klaus", "klein", "kline", "knack", "knee", "knees", "knew", "knife", "knight", "knightley", "knightly", "knights", "knit", "knives", "knock", "knocked", "knocking", "knockoff", "knocks", "know", "knowing", "knowingly", "knowledge", "knowledgeable", "known", "knows", "knox", "knuckle", "kolchak", "kong", "koo", "kooky", "korda", "korea", "korean", "kothari", "kotto", "kovacs", "kramer", "krause", "krell", "krige", "kris", "krishna", "kristen", "kristin", "kristofferson", "krueger", "kruger", "kubrick", "kudos", "kudrow", "kumar", "kung", "kurosawa", "kurt", "kyle", "kylie", "la", "lab", "label", "labeled", "labels", "labeouf", "labor", "laboratory", "labored", "labour", "labyrinth", "laced", "lack", "lacked", "lacking", "lackluster", "lacklustre", "lacks", "laconic", "lad", "ladder", "laden", "ladies", "lads", "lady", "laid", "lair", "laird", "lake", "lam", "lamarr", "lamas", "lamb", "lambert", "lambs", "lame", "lamer", "lamest", "lamp", "lampoon", "lan", "lana", "lancaster", "lance", "lanchester", "land", "landed", "landing", "landis", "landlady", "landlord", "landmark", "landmarks", "lando", "landon", "lands", "landscape", "landscapes", "lane", "lang", "lange", "language", "languages", "lansbury", "lap", "lapd", "lapse", "lapses", "laputa", "lara", "large", "largely", "larger", "largest", "larry", "lars", "las", "lascivious", "laser", "lassie", "last", "lasted", "lasting", "lastly", "lasts", "late", "lately", "later", "latest", "latin", "latino", "latter", "lau", "lauded", "laugh", "laughable", "laughably", "laughed", "laughing", "laughs", "laughter", "launch", "launched", "launching", "laundry", "laura", "laurel", "lauren", "laurence", "laurie", "lava", "lavish", "law", "lawman", "lawn", "lawrence", "laws", "lawyer", "lawyers", "lay", "layer", "layered", "layers", "laying", "layout", "lays", "laziness", "lazy", "lbs", "lds", "le", "lea", "leachman", "lead", "leaden", "leader", "leaders", "leadership", "leading", "leads", "leaf", "league", "leagues", "leak", "lean", "leaning", "leanings", "leans", "leap", "leaping", "leaps", "learn", "learned", "learning", "learns", "learnt", "leary", "lease", "least", "leather", "leave", "leaves", "leaving", "lecherous", "lecture", "lectures", "led", "ledger", "lee", "leering", "left", "leftist", "leftover", "leg", "legacy", "legal", "legally", "legend", "legendary", "legends", "legged", "legion", "legions", "legitimate", "legs", "leguizamo", "leia", "leigh", "leisurely", "lemmon", "lemon", "lena", "lend", "lends", "length", "lengths", "lengthy", "lennon", "leno", "lens", "lenses", "lent", "leo", "leon", "leonard", "leonardo", "leone", "leopold", "lerner", "les", "lesbian", "lesbianism", "lesbians", "leslie", "less", "lesser", "lesson", "lessons", "lest", "lester", "let", "letdown", "lethal", "lethargic", "lets", "letter", "letters", "letting", "leung", "levant", "level", "levels", "levin", "levinson", "levy", "lewis", "lex", "li", "liaison", "liam", "liang", "liar", "liberal", "liberally", "liberals", "liberated", "liberating", "liberation", "liberties", "liberty", "libido", "librarian", "library", "license", "lick", "lie", "lied", "lies", "lieu", "lieutenant", "liev", "life", "lifeless", "lifelong", "lifes", "lifestyle", "lifestyles", "lifetime", "lift", "lifted", "lifting", "lifts", "light", "lighted", "lighten", "lighter", "lighthearted", "lighting", "lightly", "lightness", "lightning", "lights", "lightweight", "likability", "likable", "like", "likeable", "liked", "likelihood", "likely", "likes", "likewise", "liking", "lil", "lila", "lili", "lilith", "lillian", "lilly", "lily", "limb", "limbo", "limbs", "limelight", "limit", "limitations", "limited", "limits", "limp", "lin", "lincoln", "linda", "linden", "lindsay", "lindsey", "lindy", "line", "linear", "lined", "liner", "liners", "lines", "lineup", "linger", "lingering", "lingers", "lining", "link", "linked", "linking", "linklater", "links", "lion", "lionel", "lions", "liotta", "lip", "lips", "lipstick", "liquid", "liquor", "lisa", "list", "listed", "listen", "listened", "listener", "listening", "listens", "listing", "listings", "listless", "lists", "lit", "lite", "literal", "literally", "literary", "literate", "literature", "lithgow", "litter", "little", "liu", "liv", "live", "lived", "lively", "liven", "liver", "lives", "living", "livingston", "liz", "liza", "lizard", "lizards", "ll", "lloyd", "lo", "loach", "load", "loaded", "loads", "loan", "loathe", "loathing", "loathsome", "lobby", "local", "locale", "locales", "locals", "locate", "located", "location", "locations", "lock", "locke", "locked", "locker", "locking", "locks", "log", "logan", "loggia", "logic", "logical", "logically", "logo", "lohan", "lois", "lol", "lola", "lolita", "lombard", "lommel", "lon", "london", "lone", "loneliness", "lonely", "loner", "long", "longed", "longer", "longest", "longing", "longoria", "longs", "longtime", "loni", "look", "lookalike", "looked", "looking", "lookout", "looks", "looming", "loomis", "looney", "loony", "loop", "loopy", "loose", "loosely", "looser", "looses", "loosing", "loot", "lopez", "lord", "lords", "lore", "loren", "lorenzo", "loretta", "lorne", "lorre", "los", "lose", "loser", "losers", "loses", "losing", "loss", "losses", "lost", "lot", "lotr", "lots", "lottery", "lou", "loud", "louder", "loudly", "louie", "louis", "louise", "louisiana", "lounge", "lousy", "lovable", "love", "loveable", "loved", "lovely", "lovemaking", "lover", "lovers", "loves", "loving", "lovingly", "low", "lowbrow", "lowe", "lower", "lowered", "lowest", "lowly", "lows", "loy", "loyal", "loyalty", "lsd", "lt", "lubitsch", "luc", "lucas", "lucid", "lucifer", "lucile", "lucille", "lucio", "luck", "luckily", "lucky", "lucy", "ludicrous", "ludicrously", "lugosi", "luigi", "luis", "luise", "lukas", "luke", "lukewarm", "lulu", "lumbering", "lumet", "luminous", "lump", "luna", "lunacy", "lunatic", "lunch", "lundgren", "lung", "lungs", "lurches", "lure", "lured", "lures", "lurid", "lurking", "lurks", "luscious", "lush", "lust", "luster", "lustful", "lusting", "lusty", "luther", "luthor", "luxurious", "luxury", "luzhin", "lying", "lyle", "lyman", "lynch", "lynchian", "lynn", "lynne", "lyric", "lyrical", "lyrics", "ma", "mabel", "mac", "macabre", "macarthur", "macaulay", "macbeth", "macdonald", "macgregor", "machete", "machina", "machinations", "machine", "machinery", "machines", "macho", "mack", "macmurray", "macy", "mad", "maddening", "made", "madeleine", "madeline", "madhur", "madison", "madly", "madman", "madness", "madonna", "madrid", "madsen", "mae", "maestro", "mafia", "magazine", "magazines", "maggie", "maggots", "magic", "magical", "magically", "magician", "magnetic", "magnetism", "magnificence", "magnificent", "magnificently", "magnitude", "magnolia", "magnum", "maguire", "mahatma", "maher", "mahoney", "maid", "maiden", "mail", "main", "maine", "mainland", "mainly", "mainstream", "maintain", "maintained", "maintaining", "maintains", "majestic", "majesty", "major", "majority", "majors", "make", "makeover", "maker", "makers", "makes", "makeup", "making", "makings", "malcolm", "malden", "male", "males", "malevolent", "malice", "malicious", "malik", "mall", "malone", "malta", "maltese", "maltin", "mama", "mamet", "mamie", "mammoth", "man", "manage", "managed", "management", "manager", "manages", "managing", "manchester", "manchu", "manchurian", "mandatory", "mandy", "manga", "mangled", "manhattan", "manhood", "mania", "maniac", "maniacal", "maniacs", "manic", "manifest", "manipulate", "manipulated", "manipulates", "manipulating", "manipulation", "manipulative", "mankind", "manly", "mann", "manner", "mannered", "mannerisms", "manners", "manny", "manor", "manos", "mans", "mansfield", "mansion", "manson", "mantegna", "manual", "manufactured", "manure", "manuscript", "many", "map", "mar", "marathon", "marbles", "marc", "marcel", "march", "marches", "marching", "marco", "marcus", "mardi", "mare", "margaret", "marginal", "marginally", "margret", "maria", "marie", "marijuana", "marilyn", "marin", "marina", "marine", "marines", "mario", "marion", "marisa", "marital", "marjorie", "mark", "marked", "market", "marketed", "marketing", "marking", "marks", "marlene", "marley", "marlon", "marquee", "marquis", "marred", "marriage", "marriages", "married", "marries", "marry", "marrying", "mars", "marsh", "marsha", "marshal", "marshall", "mart", "martha", "martial", "martian", "martians", "martin", "martinez", "martino", "marty", "marvel", "marvellous", "marvelous", "marvelously", "marvin", "marx", "marxist", "mary", "masala", "masculine", "masculinity", "mash", "mask", "masked", "masks", "masochist", "masochistic", "mason", "masquerading", "mass", "massachusetts", "massacre", "massacred", "masses", "massey", "massive", "massively", "master", "mastered", "masterful", "masterfully", "mastermind", "masterpiece", "masterpieces", "masters", "masterson", "masterwork", "mastery", "mastroianni", "masturbation", "match", "matched", "matches", "matching", "mate", "material", "materials", "mates", "math", "matheson", "mathieu", "mating", "matin\u00e9e", "matrix", "matt", "matte", "mattei", "matter", "mattered", "matters", "matthau", "matthew", "mature", "matured", "maturity", "maudlin", "maugham", "maureen", "maurice", "maverick", "mawkish", "max", "maximum", "maxwell", "may", "maya", "maybe", "mayer", "mayhem", "mayor", "maze", "mazes", "mc", "mcadams", "mcbain", "mccarthy", "mcclure", "mcconaughey", "mccoy", "mcdermott", "mcdonald", "mcdonalds", "mcdowell", "mcgavin", "mcgregor", "mchugh", "mcintire", "mcintyre", "mckee", "mclaglen", "mcmahon", "mcnally", "mcqueen", "mcshane", "me", "meadows", "meager", "meal", "mean", "meandering", "meanders", "meaning", "meaningful", "meaningless", "meanings", "means", "meant", "meantime", "meanwhile", "measure", "measured", "measures", "meat", "meatball", "meaty", "mecha", "mechanic", "mechanical", "mechanics", "mechanism", "medal", "media", "medical", "medication", "medicine", "medieval", "mediocre", "mediocrity", "meditation", "mediterranean", "medium", "mediums", "meek", "meet", "meeting", "meetings", "meets", "meg", "mega", "megan", "mel", "melancholic", "melancholy", "melanie", "melbourne", "meld", "melinda", "melissa", "melodies", "melodrama", "melodramas", "melodramatic", "melody", "melt", "melting", "melts", "melville", "melvyn", "member", "members", "memoir", "memoirs", "memorable", "memorably", "memorial", "memories", "memorized", "memory", "men", "menace", "menacing", "mendes", "mendez", "mental", "mentality", "mentally", "mention", "mentioned", "mentioning", "mentions", "mentor", "menu", "mercenary", "merchandise", "merchant", "mercifully", "merciless", "mercilessly", "mercury", "mercy", "mere", "meredith", "merely", "merge", "merit", "merits", "merk", "merlin", "mermaid", "merrill", "merry", "meryl", "mesh", "mesmerized", "mesmerizing", "mess", "message", "messages", "messed", "messenger", "messes", "messiah", "messing", "messy", "met", "metal", "metamorphosis", "metaphor", "metaphorical", "metaphors", "metaphysical", "meteor", "meteorite", "meter", "meth", "method", "methodical", "methods", "meticulous", "metro", "metropolis", "metropolitan", "mexican", "mexico", "meyer", "meyers", "mgm", "mia", "miami", "mic", "mice", "michael", "michaels", "micheal", "michel", "michell", "michelle", "michigan", "mick", "mickey", "microphone", "mid", "middle", "midget", "midgets", "midler", "midnight", "midst", "midway", "midwest", "might", "mightily", "mighty", "miike", "mike", "miklos", "milan", "mild", "mildly", "mildred", "mile", "miles", "milestone", "milieu", "militant", "military", "milk", "milked", "mill", "milland", "millard", "millennium", "miller", "million", "millionaire", "millions", "mills", "milo", "milton", "mime", "mimic", "mimicking", "min", "mind", "minded", "mindless", "mindlessly", "minds", "mindset", "mine", "minelli", "miner", "miners", "mines", "mini", "miniature", "minimal", "minimalist", "minimalistic", "minimum", "mining", "minions", "miniseries", "minister", "minnelli", "minor", "minorities", "minority", "mins", "minus", "minute", "minutes", "mira", "miracle", "miracles", "miraculous", "miraculously", "miranda", "miriam", "mirror", "mirrors", "mis", "misadventures", "miscarriage", "miscast", "miscasting", "mischievous", "mise", "miserable", "miserably", "misery", "misfire", "misfit", "misfits", "misfortune", "misguided", "mish", "mishaps", "mishmash", "mislead", "misleading", "misled", "mismatched", "misogynistic", "misogyny", "misplaced", "miss", "missed", "misses", "missile", "missiles", "missing", "mission", "missionary", "missions", "missouri", "mist", "mistake", "mistaken", "mistakenly", "mistakes", "mister", "mistreated", "mistress", "misty", "misunderstand", "misunderstanding", "misunderstandings", "misunderstood", "misused", "mitch", "mitchell", "mitchum", "mix", "mixed", "mixes", "mixing", "mixture", "miyazaki", "mm", "mo", "moan", "moaning", "moans", "mob", "mobile", "mobster", "mobsters", "mock", "mocked", "mockery", "mocking", "mockumentary", "mode", "model", "modeled", "modeling", "models", "moderate", "moderately", "modern", "modest", "modesty", "modicum", "modine", "moe", "mol", "mold", "mole", "molested", "molina", "moll", "molly", "mom", "moment", "momentarily", "moments", "momentum", "mommy", "moms", "mon", "mona", "monaghan", "monarch", "monastery", "monday", "monetary", "money", "monica", "monitor", "monitors", "monk", "monkey", "monkeys", "monks", "mono", "monologue", "monologues", "mononoke", "monotone", "monotonous", "monotony", "monroe", "monster", "monsters", "monstrosity", "monstrous", "montage", "montages", "montana", "monte", "montgomery", "month", "months", "monty", "monument", "monumental", "mood", "moodiness", "moods", "moody", "moon", "moonlight", "moonstruck", "moonwalker", "moore", "moorehead", "moral", "morale", "moralistic", "morality", "morally", "morals", "moran", "morbid", "morbius", "more", "moreau", "moreover", "mores", "morgan", "morgana", "morgue", "moriarty", "morita", "mormon", "mormons", "morning", "moron", "moronic", "morons", "morose", "morphed", "morphs", "morricone", "morris", "morrow", "morse", "mortal", "mortality", "mortally", "mortensen", "mortimer", "morton", "moscow", "moses", "moss", "most", "mostel", "mostly", "motel", "mother", "mothers", "motif", "motifs", "motion", "motions", "motivated", "motivation", "motivations", "motive", "motives", "motley", "motor", "motorcycle", "moulin", "mount", "mountain", "mountains", "mounted", "mounting", "mourning", "mouse", "moustache", "mouth", "mouthed", "mouths", "move", "moved", "movement", "movements", "moves", "movie", "moviegoer", "moviegoers", "movies", "moving", "mower", "mpaa", "mph", "mr", "mrs", "ms", "mst", "mst3k", "mtv", "much", "muck", "mud", "muddled", "muddy", "mug", "mugging", "mulder", "mulholland", "muller", "mullet", "mulligan", "multi", "multiple", "multiplex", "multiply", "multitude", "mum", "mumbai", "mumbling", "mumbo", "mummy", "munchies", "munching", "mundane", "muni", "munro", "muppet", "muppets", "murder", "murdered", "murderer", "murderers", "murdering", "murderous", "murders", "muriel", "murky", "murphy", "murray", "muscle", "muscles", "muscular", "muse", "museum", "mush", "music", "musical", "musically", "musicals", "musician", "musicians", "muslim", "muslims", "mussolini", "must", "mustache", "muster", "mutant", "mutants", "mutated", "mute", "muted", "mutilated", "mutilation", "mutiny", "mutual", "my", "myers", "myles", "myra", "myriad", "myrna", "myrtle", "myself", "mysteries", "mysterious", "mysteriously", "mystery", "mystic", "mystical", "mysticism", "mystique", "myth", "mythic", "mythical", "mythological", "mythology", "myths", "nada", "nadir", "nagging", "nah", "nail", "nailed", "nails", "nair", "naive", "naivety", "naivet\u00e9", "naked", "nam", "name", "named", "nameless", "namely", "names", "naming", "nana", "nancy", "nanny", "naomi", "nap", "napier", "napoleon", "narcissism", "narcissistic", "narrated", "narrates", "narrating", "narration", "narrative", "narratives", "narrator", "narrow", "narrowly", "nary", "nasa", "naschy", "nash", "nasties", "nasty", "nat", "natali", "natalie", "natasha", "nathan", "nation", "national", "nationalist", "nations", "native", "natives", "natural", "naturalism", "naturalistic", "naturally", "nature", "natured", "naughty", "nausea", "nauseating", "nauseous", "nauseum", "naval", "navigate", "navy", "nay", "nazi", "nazis", "na\u00efve", "nbc", "nc", "ne", "neal", "near", "nearby", "nearest", "nearing", "nearly", "neat", "neatly", "necessarily", "necessary", "necessity", "neck", "necklace", "necks", "ned", "need", "needed", "needing", "needle", "needless", "needlessly", "needn", "needs", "needy", "neeson", "nefarious", "negative", "negatively", "negatives", "neglect", "neglected", "negligible", "negotiate", "negotiation", "neighbor", "neighborhood", "neighborhoods", "neighbors", "neighbour", "neighbourhood", "neighbours", "neil", "neill", "neither", "nell", "nelson", "nemesis", "nemo", "neo", "neon", "nephew", "nephews", "nepotism", "nerd", "nerds", "nerdy", "nerve", "nerves", "nervous", "ness", "nest", "net", "netflix", "netherlands", "network", "networks", "neuroses", "neurotic", "neutral", "nevada", "neve", "never", "neverending", "nevermind", "nevertheless", "neville", "new", "newcomer", "newcomers", "newer", "newest", "newfound", "newhart", "newly", "newman", "news", "newspaper", "newspapers", "newsreel", "newton", "next", "nic", "nice", "nicely", "nicer", "niche", "nicholas", "nicholson", "nick", "nickelodeon", "nickname", "nicky", "nicolai", "nicolas", "nicole", "niece", "nielsen", "nietzsche", "nifty", "nigel", "nigh", "night", "nightclub", "nightly", "nightmare", "nightmares", "nightmarish", "nights", "nighttime", "nighy", "nihilism", "nina", "nine", "nineteenth", "nineties", "ninety", "ninja", "ninjas", "nintendo", "ninth", "nipple", "niro", "nisha", "nit", "niven", "nixon", "no", "noah", "noam", "nobel", "nobility", "noble", "nobleman", "nobody", "nod", "nodding", "nods", "noel", "noir", "noirish", "noirs", "noise", "noises", "noisy", "nolan", "nolte", "nominal", "nominated", "nomination", "nominations", "nominee", "nominees", "non", "nondescript", "none", "nonetheless", "nonexistent", "nonsense", "nonsensical", "nonstop", "noodle", "noon", "nope", "nor", "nora", "norm", "norma", "normal", "normalcy", "normally", "norman", "norris", "north", "northam", "northern", "northwest", "norton", "norway", "norwegian", "nose", "nosed", "noses", "nostalgia", "nostalgic", "nosy", "not", "notable", "notably", "notch", "note", "noted", "notes", "noteworthy", "nothing", "nothingness", "notice", "noticeable", "noticeably", "noticed", "notices", "noticing", "noting", "notion", "notions", "notoriety", "notorious", "notoriously", "notting", "notwithstanding", "novak", "novel", "novelist", "novella", "novels", "novelty", "november", "novice", "now", "nowadays", "nowhere", "nt", "nuance", "nuanced", "nuances", "nubile", "nuclear", "nude", "nudity", "nuff", "nuisance", "nuke", "numb", "number", "numbers", "numbing", "numbingly", "numerous", "nun", "nuns", "nurse", "nurses", "nursing", "nut", "nuts", "nutshell", "nutty", "ny", "nyc", "nymphomaniac", "nypd", "oakland", "oasis", "obese", "obi", "object", "objections", "objective", "objectively", "objects", "obligated", "obligation", "obligatory", "obliged", "oblivion", "oblivious", "obnoxious", "obscene", "obscure", "obscured", "obscurity", "observation", "observations", "observe", "observed", "observer", "observes", "observing", "obsessed", "obsession", "obsessions", "obsessive", "obsolete", "obstacle", "obstacles", "obtain", "obtained", "obtaining", "obtrusive", "obvious", "obviously", "occasion", "occasional", "occasionally", "occasions", "occult", "occupants", "occupation", "occupied", "occupy", "occupying", "occur", "occurred", "occurrence", "occurrences", "occurring", "occurs", "ocean", "oceans", "october", "odd", "oddball", "oddity", "oddly", "odds", "ode", "odyssey", "oeuvre", "of", "off", "offbeat", "offend", "offended", "offender", "offenders", "offends", "offense", "offensive", "offensively", "offer", "offered", "offering", "offerings", "offers", "office", "officer", "officers", "offices", "official", "officially", "officials", "offs", "offscreen", "offset", "offside", "offspring", "oft", "often", "ogling", "ogre", "oh", "ohio", "oil", "ok", "okay", "oklahoma", "ol", "old", "older", "oldest", "olds", "ole", "olen", "olin", "olive", "oliver", "olivia", "olivier", "ollie", "olsen", "olympia", "olympic", "olympics", "om", "omar", "omega", "omen", "omg", "ominous", "omitted", "on", "once", "one", "ones", "oneself", "ongoing", "online", "only", "onscreen", "onset", "ontario", "onto", "onwards", "ooh", "oops", "oozes", "oozing", "open", "opened", "opener", "opening", "openly", "opens", "opera", "operas", "operate", "operates", "operatic", "operating", "operation", "operations", "operative", "operator", "opinion", "opinions", "opponent", "opponents", "opportunities", "opportunity", "opposed", "opposing", "opposite", "opposites", "opposition", "oppressed", "oppression", "oppressive", "oppressors", "oprah", "opted", "optimism", "optimistic", "option", "options", "opus", "or", "oral", "orange", "orbit", "orchestra", "orchestral", "orchestrated", "ordeal", "order", "ordered", "ordering", "orders", "ordinary", "oregon", "org", "organ", "organic", "organization", "organizations", "organized", "organs", "orgasm", "orgies", "orgy", "oriental", "orientation", "oriented", "origin", "original", "originality", "originally", "originals", "originated", "origins", "orlando", "orleans", "orphan", "orphanage", "orphans", "orson", "orthodox", "orwell", "osborne", "osbourne", "oscar", "oscars", "ostensibly", "othello", "other", "others", "otherwise", "otherworldly", "ott", "otto", "ouch", "ought", "ounce", "our", "ours", "ourselves", "out", "outbreak", "outburst", "outbursts", "outcast", "outcome", "outdated", "outdoes", "outdoor", "outdoors", "outer", "outfit", "outfits", "outing", "outings", "outlandish", "outlaw", "outlaws", "outlet", "outline", "outlook", "output", "outrage", "outraged", "outrageous", "outrageously", "outright", "outs", "outset", "outside", "outsider", "outsiders", "outstanding", "outta", "outtakes", "outweigh", "over", "overact", "overacted", "overacting", "overacts", "overall", "overbearing", "overblown", "overboard", "overcome", "overcomes", "overcoming", "overdoes", "overdone", "overdose", "overhead", "overkill", "overlapping", "overlong", "overlook", "overlooked", "overlooking", "overly", "overnight", "overplayed", "overpowering", "overrated", "overs", "overseas", "oversexed", "overshadowed", "overstated", "overt", "overthrow", "overtly", "overtones", "overuse", "overused", "overview", "overweight", "overwhelm", "overwhelmed", "overwhelming", "overwhelmingly", "overwrought", "owe", "owed", "owen", "owes", "owing", "owl", "own", "owned", "owner", "owners", "owning", "owns", "oxygen", "oz", "ozzy", "pa", "pabst", "pace", "paced", "paces", "pacific", "pacifist", "pacing", "pacino", "pack", "package", "packaging", "packed", "packing", "packs", "pact", "pad", "padded", "padding", "pagan", "page", "pages", "paid", "pain", "pained", "painful", "painfully", "pains", "paint", "painted", "painter", "painters", "painting", "paintings", "paints", "pair", "paired", "pairing", "pairs", "pakistan", "pakistani", "pal", "palace", "palance", "palatable", "pale", "pales", "palestinian", "palette", "palm", "palma", "palmer", "palpable", "pals", "palsy", "paltrow", "paltry", "pam", "pamela", "pan", "panache", "panahi", "panama", "pandora", "panic", "panned", "pans", "pantheon", "panties", "pants", "pap", "paper", "paperback", "paperhouse", "papers", "paquin", "par", "parable", "parade", "paradise", "paragraph", "parallel", "parallels", "paralyzed", "parameters", "paramount", "paranoia", "paranoid", "paranormal", "paraphrase", "parasite", "pardon", "parent", "parental", "parenting", "parents", "paresh", "paris", "parisian", "park", "parked", "parker", "parking", "parks", "parliament", "parlor", "parodies", "parody", "parodying", "parole", "parrot", "parsons", "part", "parter", "partial", "partially", "participant", "participants", "participate", "participated", "participating", "participation", "particular", "particularly", "parties", "parting", "partition", "partly", "partner", "partners", "partnership", "parts", "party", "partying", "pas", "pasolini", "pass", "passable", "passage", "passages", "passed", "passenger", "passengers", "passes", "passing", "passion", "passionate", "passionately", "passions", "passive", "past", "paste", "pasted", "pastiche", "pastor", "pat", "patch", "patched", "patented", "patently", "path", "pathetic", "pathetically", "pathological", "pathos", "paths", "patience", "patient", "patiently", "patients", "patriarch", "patric", "patricia", "patrick", "patriot", "patriotic", "patriotism", "patrol", "patron", "patronizing", "patrons", "patsy", "pattern", "patterns", "patton", "patty", "paul", "paula", "paulie", "pauline", "paulo", "pauly", "pause", "pauses", "paved", "pawn", "paxton", "pay", "payback", "paycheck", "payed", "paying", "payment", "payne", "payoff", "pays", "paz", "pazu", "pbs", "pc", "peace", "peaceful", "peak", "peaks", "pearl", "peasant", "peasants", "peck", "pecker", "peckinpah", "peculiar", "pedestrian", "pedigree", "pedophile", "pedro", "pee", "peek", "peeping", "peer", "peers", "peet", "pegg", "peggy", "pen", "penalty", "penchant", "pencil", "penelope", "penguin", "penis", "penn", "penned", "penniless", "penny", "penultimate", "people", "peoples", "pepper", "peppered", "per", "perceive", "perceived", "perceives", "percent", "percentage", "perception", "perceptive", "percy", "perdition", "perennial", "perfect", "perfected", "perfection", "perfectly", "perform", "performance", "performances", "performed", "performer", "performers", "performing", "performs", "perhaps", "peril", "perilous", "perils", "period", "periodically", "periods", "peripheral", "perkins", "perky", "perlman", "permanent", "permanently", "permission", "permit", "permitted", "perpetrated", "perpetrators", "perpetual", "perpetually", "perpetuate", "perplexed", "perplexing", "perry", "persecuted", "persecution", "perseverance", "persistent", "person", "persona", "personable", "personal", "personalities", "personality", "personally", "personas", "personified", "personnel", "persons", "perspective", "perspectives", "persuade", "persuaded", "persuades", "persuasion", "persuasive", "pertwee", "peru", "pervasive", "perverse", "perversely", "perversion", "pervert", "perverted", "pesci", "pesky", "pessimistic", "pet", "pete", "peter", "peters", "peterson", "pets", "petty", "pfeiffer", "pg", "phantasm", "phantom", "phase", "phenomena", "phenomenal", "phenomenally", "phenomenon", "phil", "philadelphia", "philip", "philippe", "philippines", "phillip", "phillips", "philo", "philosopher", "philosophical", "philosophies", "philosophy", "phoenix", "phone", "phoned", "phones", "phony", "photo", "photogenic", "photograph", "photographed", "photographer", "photographers", "photographic", "photographs", "photography", "photos", "phrase", "phrases", "phyllis", "physical", "physically", "physician", "physics", "physique", "pi", "pia", "pianist", "piano", "pic", "pick", "picked", "pickford", "picking", "pickpocket", "picks", "pickup", "picky", "picnic", "pics", "picture", "pictured", "pictures", "picturesque", "pidgeon", "pie", "piece", "pieced", "pieces", "pier", "pierce", "piercing", "pierre", "pig", "pigeon", "piggy", "pigs", "pile", "piles", "pilgrimage", "pill", "pillow", "pills", "pilot", "pilots", "pimp", "pin", "pine", "ping", "pining", "pink", "pinkett", "pinnacle", "pinned", "pino", "pins", "pioneer", "pioneers", "pipe", "piper", "pipes", "pirate", "pirates", "piscopo", "pistol", "pit", "pitch", "pitched", "pitcher", "pitfalls", "pitiable", "pitiful", "pits", "pitt", "pity", "pivotal", "pixar", "pizza", "place", "placed", "placement", "places", "placid", "placing", "plague", "plagued", "plagues", "plain", "plainly", "plains", "plan", "plane", "planes", "planet", "planets", "plank", "planned", "planning", "plans", "plant", "plantation", "planted", "plants", "plastered", "plastic", "plate", "platform", "platinum", "platitudes", "platoon", "plausibility", "plausible", "play", "playboy", "played", "player", "players", "playful", "playfully", "playing", "plays", "playwright", "plea", "plead", "pleads", "pleas", "pleasance", "pleasant", "pleasantly", "please", "pleased", "pleases", "pleasing", "pleasurable", "pleasure", "pleasures", "plentiful", "plenty", "plethora", "plight", "plodding", "plods", "plot", "plotline", "plots", "plotted", "plotting", "plowright", "ploy", "plucked", "plucky", "plug", "plumbing", "plummer", "plump", "plunges", "plus", "pm", "po", "pocket", "pockets", "pod", "podge", "poe", "poem", "poet", "poetic", "poetry", "poets", "poignancy", "poignant", "point", "pointed", "pointing", "pointless", "pointlessly", "pointlessness", "points", "poison", "poisoned", "poisoning", "poisonous", "poke", "poked", "pokemon", "poker", "pokes", "poking", "pol", "poland", "polanski", "polar", "pole", "poles", "police", "policeman", "policemen", "policies", "policy", "polish", "polished", "polite", "politely", "political", "politically", "politician", "politicians", "politics", "pollack", "pollution", "polly", "poltergeist", "pompous", "pond", "ponder", "pondering", "ponderous", "pony", "poo", "pool", "poop", "poor", "poorer", "poorest", "poorly", "pop", "popcorn", "pope", "popped", "popping", "poppins", "pops", "populace", "popular", "popularity", "populate", "populated", "population", "porch", "porky", "porn", "porno", "pornographic", "pornography", "porsche", "port", "porter", "portion", "portions", "portman", "portobello", "portrait", "portraits", "portray", "portrayal", "portrayals", "portrayed", "portraying", "portrays", "portugal", "portuguese", "pose", "posed", "poses", "posey", "posh", "posing", "position", "positions", "positive", "positively", "positives", "posse", "possess", "possessed", "possesses", "possessing", "possession", "possessions", "possessive", "possibilities", "possibility", "possible", "possibly", "post", "postal", "postcard", "posted", "poster", "posters", "posting", "postman", "posts", "posturing", "postwar", "pot", "potato", "potboiler", "potent", "potential", "potentially", "potter", "potty", "pound", "pounding", "pounds", "pour", "poured", "pouring", "pov", "poverty", "pow", "powder", "powell", "power", "powered", "powerful", "powerfully", "powerhouse", "powerless", "powers", "pows", "pr", "practical", "practically", "practice", "practiced", "practices", "practicing", "prairie", "praise", "praised", "praises", "praising", "prancing", "prank", "pranks", "prashant", "pratfalls", "pray", "prayed", "prayer", "prayers", "praying", "pre", "preach", "preached", "preacher", "preaching", "preachy", "preceded", "precedes", "preceding", "precinct", "precious", "precise", "precisely", "precision", "precocious", "preconceived", "preconceptions", "precursor", "predator", "predators", "predatory", "predecessor", "predecessors", "predicament", "predict", "predictability", "predictable", "predictably", "predicted", "predicting", "predominantly", "prefer", "preferable", "preferably", "preference", "preferred", "preferring", "prefers", "pregnancy", "pregnant", "prehistoric", "prejudice", "prejudices", "premature", "prematurely", "premier", "premiere", "premiered", "preminger", "premise", "premises", "preparation", "prepare", "prepared", "prepares", "preparing", "preposterous", "prequel", "presence", "present", "presentation", "presented", "presenter", "presenting", "presents", "preservation", "preserve", "preserved", "president", "presidential", "presley", "press", "pressburger", "pressed", "pressing", "pressure", "pressures", "prestigious", "preston", "presumably", "presume", "presumed", "preteen", "pretend", "pretending", "pretends", "pretense", "pretension", "pretensions", "pretentious", "pretentiousness", "prettier", "pretty", "prevail", "prevails", "prevalent", "prevent", "prevented", "preventing", "prevents", "preview", "previews", "previous", "previously", "prey", "price", "priced", "priceless", "prices", "pride", "priest", "priests", "primal", "primarily", "primary", "prime", "primitive", "prince", "princes", "princess", "principal", "principals", "principle", "principles", "print", "printed", "prints", "prior", "priority", "prison", "prisoner", "prisoners", "prissy", "pristine", "private", "privilege", "privileged", "privy", "prix", "priyadarshan", "prize", "prizes", "pro", "probable", "probably", "probation", "probing", "problem", "problematic", "problems", "procedure", "procedures", "proceed", "proceeded", "proceeding", "proceedings", "proceeds", "process", "proclaimed", "proclaims", "prodigy", "produce", "produced", "producer", "producers", "produces", "producing", "product", "production", "productions", "productive", "products", "profane", "profanity", "profession", "professional", "professionalism", "professionally", "professionals", "professor", "professors", "profile", "profit", "profits", "profound", "profoundly", "program", "programme", "programmed", "programmer", "programmers", "programmes", "programming", "programs", "progress", "progressed", "progresses", "progression", "progressive", "progressively", "prohibition", "project", "projected", "projection", "projects", "prolific", "prologue", "prolonged", "prom", "prominence", "prominent", "prominently", "promiscuity", "promiscuous", "promise", "promised", "promises", "promising", "promisingly", "promo", "promos", "promote", "promoted", "promoter", "promoting", "promotion", "promotional", "prompted", "promptly", "prone", "pronounce", "pronounced", "proof", "prop", "propaganda", "proper", "properly", "property", "prophecy", "prophet", "prophetic", "proportion", "proportions", "proposal", "proposed", "proposes", "proposition", "proprietor", "props", "pros", "prosaic", "prose", "prosecutor", "prospect", "prostitute", "prostitutes", "prostitution", "protagonist", "protagonists", "protect", "protected", "protecting", "protection", "protective", "protector", "protest", "protests", "protocol", "prototype", "protracted", "prot\u00e9g\u00e9", "proud", "proudly", "prove", "proved", "proven", "proverbial", "proves", "provide", "provided", "provides", "providing", "provincial", "proving", "provocative", "provoke", "provoked", "provokes", "provoking", "prowess", "prude", "prudish", "pryor", "ps", "pseudo", "psyche", "psychedelic", "psychiatric", "psychiatrist", "psychic", "psycho", "psychological", "psychologically", "psychologist", "psychology", "psychopath", "psychopathic", "psychopaths", "psychos", "psychosis", "psychotic", "pub", "puberty", "pubescent", "public", "publicist", "publicity", "publicly", "publish", "published", "publisher", "pudding", "puddle", "puerile", "puerto", "puke", "pulitzer", "pull", "pulled", "pulling", "pullman", "pulls", "pulp", "pulse", "pumbaa", "pump", "pumped", "pumping", "pumpkin", "pun", "punch", "punched", "punches", "punching", "punchline", "punctuated", "punish", "punished", "punishing", "punishment", "punk", "punks", "puns", "pupil", "pupils", "puppet", "puppetry", "puppets", "puppies", "puppy", "purchase", "purchased", "purchasing", "pure", "purely", "purest", "purgatory", "puri", "purist", "purists", "purity", "purple", "purports", "purpose", "purposely", "purposes", "purse", "pursue", "pursued", "pursues", "pursuing", "pursuit", "push", "pushed", "pushes", "pushing", "pussy", "put", "putrid", "puts", "putting", "puzzle", "puzzled", "puzzles", "puzzling", "pyle", "pyramid", "pyrotechnics", "python", "quaid", "quaint", "qualified", "qualifies", "qualify", "qualities", "quality", "qualms", "quantity", "quantum", "quarter", "quarters", "quartet", "quasi", "queen", "queens", "queer", "quentin", "quest", "question", "questionable", "questioned", "questioning", "questions", "queue", "quibble", "quibbles", "quick", "quicker", "quickie", "quickly", "quid", "quiet", "quietly", "quincy", "quinn", "quintessential", "quips", "quirkiness", "quirks", "quirky", "quit", "quite", "quits", "quivering", "quo", "quotable", "quote", "quoted", "quotes", "quotient", "quoting", "ra", "rabbit", "rabbits", "rabid", "race", "races", "rachel", "racial", "racing", "racism", "racist", "rack", "racy", "radar", "radha", "radiant", "radiation", "radical", "radically", "radio", "radioactive", "radios", "radium", "rae", "raft", "rag", "rage", "ragged", "raging", "rags", "raid", "raider", "raiders", "railroad", "rails", "railway", "raimi", "rain", "rainbow", "rainer", "raines", "raining", "rains", "rainy", "raise", "raised", "raises", "raising", "raj", "raja", "rajpal", "rally", "ralph", "ram", "rama", "ramble", "rambling", "ramblings", "rambo", "rammed", "ramon", "ramones", "ramp", "rampage", "rampant", "ramsey", "ramshackle", "ran", "ranch", "rancid", "randall", "randolph", "random", "randomly", "randy", "rang", "range", "ranger", "rangers", "ranges", "ranging", "rank", "ranked", "ranking", "ranks", "ransom", "rant", "ranting", "rants", "rao", "raoul", "rap", "rape", "raped", "rapes", "rapid", "rapidly", "raping", "rapist", "rapists", "rapper", "rapture", "raquel", "rare", "rarely", "rarity", "rash", "rat", "rate", "rated", "rates", "rathbone", "rather", "rating", "ratings", "ratio", "rational", "rats", "ratso", "raul", "raunchy", "rave", "raven", "ravenous", "raves", "raving", "ravishing", "raw", "rawal", "ray", "raymond", "razor", "razzie", "re", "rea", "reach", "reached", "reaches", "reaching", "react", "reacted", "reacting", "reaction", "reactionary", "reactions", "reacts", "read", "reader", "readers", "readily", "reading", "readings", "reads", "ready", "reagan", "real", "realise", "realised", "realises", "realising", "realism", "realist", "realistic", "realistically", "realities", "reality", "realization", "realize", "realized", "realizes", "realizing", "really", "realm", "reaper", "rear", "reason", "reasonable", "reasonably", "reasoning", "reasons", "reb", "rebecca", "rebel", "rebellion", "rebellious", "rebels", "rebirth", "rebuilt", "recall", "recalled", "recalls", "recap", "recapture", "receive", "received", "receives", "receiving", "recent", "recently", "reception", "recipe", "recite", "reciting", "reckless", "reckon", "reclaim", "recluse", "recognisable", "recognise", "recognised", "recognition", "recognizable", "recognize", "recognized", "recognizes", "recognizing", "recollection", "recommend", "recommendable", "recommendation", "recommended", "recommending", "reconcile", "reconciliation", "reconsider", "reconstruction", "record", "recorded", "recorder", "recording", "recordings", "records", "recounting", "recover", "recovered", "recovering", "recovery", "recreate", "recreated", "recreating", "recreation", "recruit", "recruited", "recruiting", "recruits", "recurring", "recycled", "red", "redeem", "redeemable", "redeemed", "redeeming", "redeems", "redemption", "redford", "redgrave", "redhead", "redneck", "rednecks", "redone", "reduce", "reduced", "reduces", "redundancy", "redundant", "reed", "reefer", "reeks", "reel", "reeling", "reels", "reese", "reeve", "reeves", "refer", "reference", "referenced", "references", "referred", "referring", "refers", "refined", "reflect", "reflected", "reflecting", "reflection", "reflections", "reflective", "reflects", "reform", "refrain", "refreshing", "refreshingly", "refrigerator", "refuge", "refugee", "refugees", "refund", "refusal", "refuse", "refused", "refuses", "refusing", "regain", "regal", "regard", "regarded", "regarding", "regardless", "regards", "regime", "regina", "reginald", "region", "regional", "register", "registered", "regret", "regrets", "regrettably", "regretted", "regular", "regularly", "regulars", "rehab", "rehash", "rehashed", "rehashing", "rehearsal", "rehearsing", "reid", "reign", "reincarnated", "reincarnation", "reinforce", "reinforced", "reinforces", "reinhold", "reiser", "reject", "rejected", "rejecting", "rejection", "rejects", "rekindle", "relatable", "relate", "related", "relates", "relating", "relation", "relations", "relationship", "relationships", "relative", "relatively", "relatives", "relax", "relaxed", "relaxing", "release", "released", "releases", "releasing", "relegated", "relentless", "relentlessly", "relevance", "relevant", "reliable", "reliance", "relic", "relied", "relief", "relies", "relieve", "relieved", "religion", "religions", "religious", "religiously", "relish", "relive", "reliving", "reloaded", "reluctant", "reluctantly", "rely", "relying", "remade", "remain", "remainder", "remained", "remaining", "remains", "remake", "remakes", "remaking", "remark", "remarkable", "remarkably", "remarked", "remarks", "remastered", "remember", "remembered", "remembering", "remembers", "remind", "reminded", "reminder", "reminding", "reminds", "reminisce", "reminiscent", "reminiscing", "remorse", "remote", "remotely", "removal", "remove", "removed", "removing", "renaissance", "renamed", "render", "rendered", "rendering", "renders", "rendition", "rene", "renee", "renegade", "renewed", "renny", "reno", "renoir", "renowned", "rent", "rental", "rentals", "rented", "renting", "rents", "rep", "repair", "repeat", "repeated", "repeatedly", "repeating", "repeats", "repellent", "repertoire", "repetition", "repetitious", "repetitive", "replace", "replaced", "replacement", "replaces", "replacing", "replay", "replaying", "replete", "replicate", "replied", "replies", "reply", "report", "reported", "reportedly", "reporter", "reporters", "reporting", "reports", "reprehensible", "represent", "representation", "representative", "represented", "representing", "represents", "repressed", "repression", "reprise", "reprises", "reprising", "reptilian", "republic", "republican", "republicans", "repugnant", "repulsed", "repulsion", "repulsive", "reputation", "request", "requiem", "require", "required", "requirement", "requirements", "requires", "requiring", "requisite", "rerun", "reruns", "rescue", "rescued", "rescues", "rescuing", "research", "researched", "researcher", "researching", "resemblance", "resemble", "resembled", "resembles", "resembling", "resent", "resentment", "reservation", "reservations", "reserve", "reserved", "reservoir", "residence", "resident", "residents", "resides", "resigned", "resist", "resistance", "resists", "resolution", "resolve", "resolved", "resonance", "resonate", "resonates", "resort", "resorting", "resorts", "resounding", "resourceful", "resources", "respect", "respectable", "respected", "respectful", "respecting", "respective", "respectively", "respects", "respite", "respond", "responded", "responds", "response", "responses", "responsibilities", "responsibility", "responsible", "rest", "restaurant", "restaurants", "restless", "restoration", "restore", "restored", "restores", "restrained", "restraining", "restraint", "restricted", "restrictions", "restrictive", "restroom", "rests", "result", "resulted", "resulting", "results", "resume", "resurrect", "resurrected", "resurrection", "retail", "retain", "retained", "retaining", "retains", "retard", "retarded", "retelling", "rethink", "retire", "retired", "retirement", "retread", "retreat", "retribution", "retrieve", "retro", "retrospect", "retrospective", "return", "returned", "returning", "returns", "reubens", "reunion", "reunite", "reunited", "reunites", "rev", "reveal", "revealed", "revealing", "reveals", "revel", "revelation", "revelations", "revenge", "revered", "reverend", "reversal", "reverse", "reversed", "review", "reviewed", "reviewer", "reviewers", "reviewing", "reviews", "revisit", "revisited", "revisiting", "revival", "revive", "revived", "revolt", "revolting", "revolution", "revolutionary", "revolve", "revolved", "revolver", "revolves", "revolving", "revue", "reward", "rewarded", "rewarding", "rewards", "rewind", "reworking", "rewrite", "rewrites", "rex", "reynolds", "rhetoric", "rhine", "rhino", "rhode", "rhonda", "rhyme", "rhymes", "rhys", "rhythm", "ribisi", "ribs", "rican", "ricardo", "ricci", "rice", "rich", "richard", "richards", "richardson", "richer", "riches", "richest", "richie", "richly", "richness", "rick", "ricky", "rico", "rid", "ridden", "riddle", "riddled", "ride", "rider", "riders", "rides", "ridicule", "ridiculed", "ridicules", "ridiculous", "ridiculously", "ridiculousness", "riding", "ridley", "rife", "riff", "riffs", "rifle", "rifles", "right", "righteous", "rightful", "rightfully", "rightly", "rights", "rigid", "riley", "ring", "ringing", "ringo", "rings", "ringu", "ringwald", "rio", "riot", "riots", "rip", "ripe", "ripoff", "ripped", "ripper", "ripping", "rips", "rise", "risen", "rises", "risible", "rising", "risk", "risking", "risks", "risky", "risqu\u00e9", "rita", "ritchie", "ritter", "ritual", "rituals", "rival", "rivalry", "rivals", "river", "rivers", "riveted", "riveting", "rizzo", "rko", "roach", "road", "roads", "roam", "roaming", "roar", "roaring", "roasted", "rob", "robbed", "robber", "robbers", "robbery", "robbie", "robbing", "robbins", "robby", "robe", "robert", "roberta", "roberto", "roberts", "robertson", "robin", "robinson", "robocop", "robot", "robotic", "robots", "robs", "robust", "rochester", "rochon", "rock", "rocked", "rocker", "rocket", "rockets", "rockin", "rocking", "rocks", "rockwell", "rocky", "rod", "roddenberry", "roddy", "rode", "rodgers", "rodney", "rodriguez", "roeg", "roger", "rogers", "rogue", "rohmer", "roland", "role", "roles", "roll", "rolled", "roller", "rollicking", "rolling", "rolls", "rom", "roman", "romance", "romances", "romania", "romanian", "romano", "romantic", "romantically", "romanticism", "romanticized", "rome", "romeo", "romero", "romp", "romps", "romy", "ron", "ronald", "ronnie", "ronny", "roof", "rooker", "rookie", "room", "roommate", "roommates", "rooms", "rooney", "roosevelt", "root", "rooted", "rooting", "roots", "rope", "ropes", "rory", "rosanna", "rosario", "roscoe", "rose", "rosemary", "rosenstrasse", "roses", "rosie", "ross", "rosy", "rot", "roth", "rotoscoped", "rotoscoping", "rotten", "rotting", "rouge", "rough", "roughly", "round", "rounded", "rounding", "rounds", "rourke", "rousing", "route", "routine", "routinely", "routines", "row", "rowan", "rowdy", "rowlands", "roy", "royal", "royale", "royalty", "rpg", "rub", "rubbed", "rubber", "rubbing", "rubbish", "rubble", "ruby", "rudd", "rude", "rudimentary", "rudolph", "rudy", "rufus", "rug", "rugged", "ruin", "ruined", "ruining", "ruins", "rukh", "rule", "ruled", "ruler", "rules", "ruling", "rumble", "rumor", "rumored", "rumors", "run", "runaway", "rundown", "runner", "running", "runs", "runtime", "rupert", "rural", "ruse", "rush", "rushed", "rushes", "rushing", "russ", "russel", "russell", "russia", "russian", "russians", "russo", "rusty", "rut", "ruth", "ruthless", "ruthlessly", "ryan", "ryder", "saber", "sabotage", "sabretooth", "sabrina", "sabu", "saccharine", "sack", "sacred", "sacrifice", "sacrificed", "sacrifices", "sacrificing", "sad", "saddened", "sadder", "saddest", "saddled", "saddles", "sadism", "sadistic", "sadly", "sadness", "safe", "safely", "safer", "safety", "saffron", "saga", "saget", "said", "saif", "sail", "sailing", "sailor", "sailors", "saint", "saints", "sake", "salacious", "salad", "salary", "sale", "salem", "sales", "salesman", "sally", "salman", "salon", "saloon", "salt", "salute", "salvage", "salvation", "sam", "samantha", "same", "sammi", "sammo", "sammy", "sample", "samuel", "samurai", "san", "sanchez", "sanctimonious", "sand", "sanders", "sandler", "sandra", "sands", "sandwich", "sandy", "sane", "sang", "sanitized", "sanity", "sank", "sans", "sant", "santa", "sap", "sappy", "saps", "sara", "sarah", "sarandon", "sarcasm", "sarcastic", "sardonic", "sasquatch", "sassy", "sat", "satan", "satanic", "satellite", "satire", "satires", "satiric", "satirical", "satisfaction", "satisfactory", "satisfied", "satisfy", "satisfying", "saturated", "saturday", "saucer", "saucy", "savage", "savagely", "savages", "savant", "save", "saved", "saves", "saving", "savings", "savini", "savior", "savor", "savvy", "saw", "sawyer", "saxon", "say", "saying", "says", "scale", "scales", "scalpel", "scam", "scan", "scandal", "scandalous", "scandinavian", "scant", "scantily", "scar", "scarce", "scarcely", "scare", "scarecrow", "scared", "scares", "scarf", "scarface", "scarier", "scariest", "scaring", "scarlet", "scarlett", "scarred", "scars", "scary", "scathing", "scatman", "scattered", "scenario", "scenarios", "scene", "scenery", "scenes", "scenic", "scent", "sceptical", "schedule", "scheduled", "scheme", "schemes", "scheming", "schindler", "schizophrenic", "schlock", "schlocky", "schmaltz", "schmaltzy", "schneider", "scholar", "scholars", "scholarship", "school", "schooler", "schools", "schrader", "schtick", "schumacher", "schwartzman", "schwarzenegger", "sci", "science", "scientific", "scientist", "scientists", "scifi", "scooby", "scoop", "scope", "score", "scored", "scores", "scoring", "scorpion", "scorsese", "scotland", "scott", "scottish", "scout", "scrap", "scrappy", "scratch", "scratched", "scratches", "scratching", "scrawny", "scream", "screamed", "screaming", "screams", "screeching", "screen", "screened", "screening", "screenings", "screenplay", "screenplays", "screens", "screenwriter", "screenwriters", "screw", "screwball", "screwed", "screwing", "screws", "script", "scripted", "scripting", "scripts", "scripture", "scriptwriter", "scriptwriters", "scrooge", "scrubs", "scrutiny", "sctv", "scully", "sculpture", "scum", "se", "sea", "seagal", "seal", "sealed", "seals", "seaman", "seamless", "seamlessly", "sean", "search", "searched", "searches", "searching", "seas", "seaside", "season", "seasoned", "seasons", "seat", "seated", "seats", "seattle", "sebastian", "secluded", "second", "secondary", "secondly", "seconds", "secret", "secretary", "secretive", "secretly", "secrets", "section", "sections", "secular", "secure", "securing", "security", "seduce", "seduced", "seduces", "seducing", "seduction", "seductive", "see", "seed", "seeds", "seedy", "seeing", "seek", "seeking", "seeks", "seem", "seemed", "seeming", "seemingly", "seems", "seen", "sees", "seething", "segal", "segment", "segments", "segues", "seinfeld", "seldom", "select", "selected", "selection", "selections", "self", "selfish", "selfishness", "selfless", "sell", "seller", "sellers", "selling", "sells", "selma", "selves", "sematary", "semblance", "semester", "semi", "seminal", "sen", "senate", "senator", "send", "sending", "sends", "senior", "sensation", "sensational", "sensationalism", "sensationally", "sense", "senseless", "senses", "sensibilities", "sensibility", "sensible", "sensitive", "sensitively", "sensitivity", "sensual", "sensuality", "sent", "sentence", "sentenced", "sentences", "sentiment", "sentimental", "sentimentality", "sentiments", "sentinel", "separate", "separated", "separately", "separates", "separation", "sepia", "september", "sequel", "sequels", "sequence", "sequences", "serbia", "serbian", "serene", "sergeant", "sergeants", "sergio", "serial", "serials", "series", "serious", "seriously", "seriousness", "sermon", "serpent", "serum", "servant", "servants", "serve", "served", "serves", "service", "serviceable", "services", "serving", "sesame", "session", "sessions", "set", "seth", "sets", "setting", "settings", "settle", "settled", "settles", "settling", "setup", "seuss", "seven", "seventh", "seventies", "seventy", "several", "severe", "severed", "severely", "sewer", "sex", "sexed", "sexes", "sexier", "sexiest", "sexism", "sexist", "sexploitation", "sexual", "sexuality", "sexually", "sexy", "seymour", "sf", "sfx", "sg", "sgt", "sh", "shabby", "shack", "shade", "shades", "shadow", "shadowed", "shadows", "shadowy", "shady", "shaft", "shaggy", "shah", "shahid", "shake", "shaken", "shakes", "shakespeare", "shakespearean", "shaking", "shakti", "shaky", "shall", "shallow", "shambles", "shame", "shameful", "shamefully", "shameless", "shamelessly", "shane", "shanghai", "shannon", "shaolin", "shape", "shaped", "shapes", "shaq", "share", "shared", "shares", "sharif", "sharing", "shark", "sharks", "sharma", "sharon", "sharp", "sharply", "shatner", "shattered", "shattering", "shaun", "shave", "shaved", "shaving", "shaw", "shawn", "shawshank", "she", "shea", "shed", "sheds", "sheedy", "sheen", "sheep", "sheer", "sheesh", "sheet", "sheeta", "sheets", "shefali", "sheffer", "sheila", "shelf", "shell", "shelley", "shelly", "shelter", "sheltered", "shelton", "shelves", "shemp", "shenanigans", "shepard", "shepherd", "sheppard", "sheridan", "sheriff", "sherlock", "sherman", "sheryl", "shes", "shia", "shield", "shields", "shift", "shifting", "shifts", "shifty", "shin", "shine", "shines", "shining", "shintaro", "shiny", "ship", "shipped", "ships", "shirley", "shirt", "shirts", "shitty", "shivers", "sho", "shock", "shocked", "shocker", "shocking", "shockingly", "shocks", "shoddy", "shoe", "shoes", "shoestring", "sholay", "shone", "shook", "shoot", "shooter", "shooting", "shootings", "shootout", "shootouts", "shoots", "shop", "shopping", "shops", "shore", "short", "shortage", "shortcomings", "shortened", "shorter", "shortly", "shorts", "shot", "shotgun", "shots", "should", "shoulder", "shoulders", "shouldn", "shout", "shouted", "shouting", "shouts", "shove", "shoved", "shovel", "shoves", "shoving", "show", "showcase", "showcased", "showcases", "showcasing", "showdown", "showed", "shower", "showers", "showgirls", "showing", "showings", "shown", "shows", "showtime", "showy", "shred", "shreds", "shrek", "shrewd", "shriek", "shrieking", "shrill", "shrink", "shrouded", "shtick", "shudder", "shue", "shuffle", "shunned", "shut", "shutting", "shuttle", "shy", "sibling", "siblings", "sic", "sick", "sickening", "sickly", "sickness", "sid", "side", "sided", "sidekick", "sidekicks", "sides", "sidewalk", "sideways", "sidney", "siege", "siegfried", "sierra", "sigh", "sight", "sights", "sign", "signal", "signals", "signature", "signe", "signed", "significance", "significant", "significantly", "signing", "signs", "sigourney", "silence", "silences", "silent", "silently", "silents", "silhouette", "silk", "sillier", "silliest", "silliness", "silly", "silver", "silverman", "silverstone", "simba", "similar", "similarities", "similarity", "similarly", "simmons", "simon", "simone", "simple", "simpler", "simplest", "simplicity", "simplified", "simplistic", "simply", "simpson", "simpsons", "simulated", "simultaneously", "sin", "sinatra", "since", "sincere", "sincerely", "sincerity", "sinclair", "sinful", "sing", "singer", "singers", "singh", "singin", "singing", "single", "singles", "singleton", "sings", "singular", "singularly", "sinister", "sink", "sinking", "sinks", "sins", "sir", "siren", "sirens", "sirk", "siskel", "sissy", "sister", "sisters", "sit", "sitcom", "sitcoms", "site", "sites", "sith", "sits", "sitting", "situated", "situation", "situations", "siu", "six", "sixteen", "sixth", "sixties", "sixty", "size", "sized", "sizes", "skating", "skeleton", "skeletons", "skeptical", "skepticism", "sketch", "sketches", "sketchy", "skewed", "ski", "skies", "skill", "skilled", "skillful", "skillfully", "skills", "skimpy", "skin", "skinned", "skinner", "skinny", "skip", "skipped", "skipping", "skips", "skirt", "skirts", "skit", "skits", "skull", "skulls", "sky", "skywalker", "slack", "slacker", "slain", "slam", "slammed", "slams", "slang", "slant", "slap", "slapped", "slapping", "slaps", "slapstick", "slash", "slashed", "slasher", "slashers", "slashing", "slated", "slater", "slaughter", "slaughtered", "slaughterhouse", "slaughtering", "slave", "slavery", "slaves", "slavic", "slayer", "sleaze", "sleazy", "sledgehammer", "sleek", "sleep", "sleeper", "sleeping", "sleepless", "sleeps", "sleepwalkers", "sleepwalking", "sleepy", "sleeve", "slept", "sleuth", "slew", "slice", "sliced", "slicing", "slick", "slide", "slides", "sliding", "slight", "slightest", "slightly", "slim", "slime", "slimy", "slip", "slipped", "slipper", "slipping", "slips", "slit", "sloane", "slob", "slop", "sloppy", "slot", "sloth", "slow", "slowed", "slower", "slowing", "slowly", "slows", "sludge", "slug", "sluggish", "slugs", "slum", "slumber", "slumming", "slums", "slut", "slutty", "sly", "smack", "smacks", "small", "smaller", "smallest", "smallville", "smarmy", "smart", "smarter", "smartly", "smash", "smashed", "smashes", "smashing", "smell", "smells", "smile", "smiled", "smiles", "smiling", "smirk", "smith", "smitten", "smoke", "smokes", "smoking", "smooth", "smoothly", "smug", "smuggling", "smut", "snack", "snail", "snake", "snakes", "snap", "snapped", "snapping", "snappy", "snaps", "snapshot", "snare", "snarling", "snatch", "snatched", "snatchers", "sneak", "sneaking", "sneaks", "sneaky", "sneering", "snicker", "sniff", "sniffing", "sniper", "snipers", "snipes", "snippet", "snippets", "snl", "snob", "snobbish", "snobby", "snobs", "snooze", "snore", "snot", "snow", "snowman", "snowy", "snuck", "snuff", "so", "soaked", "soap", "soaps", "sob", "sobbing", "sober", "soccer", "social", "socialist", "socialite", "socially", "societal", "societies", "society", "socio", "sociological", "sociopath", "sock", "socks", "soderbergh", "sofia", "soft", "softcore", "software", "soil", "sol", "solaris", "sold", "soldier", "soldiers", "sole", "solely", "soles", "solicitor", "solid", "solidly", "soliloquy", "solitary", "solitude", "solo", "solomon", "solution", "solutions", "solve", "solved", "solves", "solving", "somber", "sombre", "some", "somebody", "someday", "somehow", "someone", "someones", "someplace", "somerset", "something", "somethings", "sometime", "sometimes", "somewhat", "somewhere", "son", "sondra", "song", "songs", "songwriter", "sonia", "sonny", "sons", "soo", "soon", "sooner", "sooo", "soooo", "sooooo", "sophia", "sophie", "sophisticated", "sophistication", "sophomore", "sophomoric", "soprano", "sopranos", "sorbonne", "sorcerer", "sorcery", "sordid", "sore", "sorely", "sorrow", "sorrows", "sorry", "sort", "sorta", "sorted", "sorts", "sorvino", "sought", "soul", "soulful", "soulless", "souls", "sound", "sounded", "sounding", "sounds", "soundtrack", "soundtracks", "soup", "sour", "source", "sources", "soutendijk", "south", "southern", "southwest", "soviet", "sox", "soylent", "sp", "space", "spacecraft", "spacek", "spaces", "spaceship", "spaceships", "spacey", "spade", "spader", "spades", "spaghetti", "spain", "spall", "span", "spanish", "spanning", "spans", "spare", "spared", "spark", "sparkle", "sparkling", "sparks", "sparring", "sparse", "spat", "spawn", "spawned", "speak", "speakeasy", "speaker", "speakers", "speaking", "speaks", "spear", "spears", "special", "specialist", "specialized", "specially", "specials", "specialty", "species", "specific", "specifically", "specifics", "spectacle", "spectacular", "spectacularly", "spectator", "spectators", "spectre", "spectrum", "speculate", "speculation", "speech", "speeches", "speechless", "speed", "speeding", "speeds", "spell", "spellbound", "spelled", "spelling", "spells", "spencer", "spend", "spending", "spends", "spent", "sperm", "spew", "spewing", "sphere", "sphinx", "spice", "spiced", "spider", "spiderman", "spiders", "spielberg", "spies", "spike", "spill", "spilled", "spilling", "spin", "spinal", "spine", "spinning", "spins", "spinster", "spiral", "spirals", "spirit", "spirited", "spirits", "spiritual", "spirituality", "spiritually", "spit", "spite", "spits", "spitting", "splash", "splashes", "splatter", "splattered", "splendid", "splendidly", "splendor", "spliced", "split", "splitting", "spock", "spoil", "spoiled", "spoiler", "spoilers", "spoiling", "spoils", "spoilt", "spoke", "spoken", "sponsored", "spontaneity", "spontaneous", "spontaneously", "spoof", "spoofing", "spoofs", "spook", "spooky", "spoon", "spoons", "sporadic", "sporadically", "sport", "sporting", "sports", "spot", "spotlight", "spots", "spotted", "spotting", "spouse", "spout", "spouting", "spouts", "sprawling", "spray", "sprayed", "spraying", "spread", "spreading", "spreads", "spree", "spring", "springer", "springs", "sprinkled", "spun", "spunky", "spur", "spy", "spying", "squad", "squalor", "squandered", "square", "squarely", "squares", "squeaky", "squeamish", "squeeze", "squirm", "sr", "ss", "st", "stab", "stabbed", "stabbing", "stability", "stable", "stabs", "stacey", "stack", "stacy", "staden", "stadium", "staff", "stage", "stagecoach", "staged", "stages", "staggering", "staging", "stagnant", "stagy", "stahl", "stained", "staircase", "stairs", "stairway", "stake", "stakes", "stale", "stalin", "stalk", "stalked", "stalker", "stalking", "stalks", "stallion", "stallone", "stalwart", "stamos", "stamp", "stamped", "stan", "stance", "stand", "standard", "standards", "standing", "standout", "standpoint", "stands", "standup", "stanley", "stanwyck", "staple", "stapleton", "star", "stardom", "stardust", "stare", "stared", "stares", "stargate", "staring", "stark", "starlet", "starr", "starred", "starring", "stars", "starship", "start", "started", "starters", "starting", "startled", "startling", "starts", "starvation", "starved", "starving", "starz", "stash", "state", "stated", "statement", "statements", "states", "statham", "static", "stating", "station", "stationed", "stations", "statistics", "statue", "statues", "stature", "status", "stay", "stayed", "staying", "stays", "steadily", "steady", "steal", "stealing", "steals", "stealth", "steam", "steaming", "steamy", "steel", "steele", "steep", "steer", "steiner", "stella", "stellar", "stem", "stems", "step", "stepfather", "stephanie", "stephen", "stephens", "stepmother", "stepped", "stepping", "steps", "stereo", "stereotype", "stereotyped", "stereotypes", "stereotypical", "stereotyping", "sterile", "sterling", "stern", "steve", "steven", "stevens", "stevenson", "stevie", "stew", "stewart", "stick", "sticking", "sticks", "sticky", "stiff", "stifler", "stifling", "stiles", "still", "stiller", "stills", "stilted", "stimulate", "stimulating", "sting", "stink", "stinker", "stinkers", "stinking", "stinks", "stint", "stir", "stirred", "stirring", "stitches", "stock", "stocks", "stockwell", "stoic", "stole", "stolen", "stoltz", "stomach", "stomping", "stone", "stoned", "stoner", "stones", "stood", "stooge", "stooges", "stoop", "stop", "stopped", "stopping", "stops", "storage", "store", "stores", "stories", "storm", "storms", "stormy", "story", "storyline", "storylines", "storyteller", "storytelling", "stowe", "straight", "straightforward", "strain", "strained", "strains", "strait", "strand", "stranded", "strands", "strange", "strangelove", "strangely", "strangeness", "stranger", "strangers", "strangest", "strangle", "strangled", "strangler", "strapped", "strategy", "strathairn", "stratten", "stratton", "strauss", "straw", "stray", "strays", "streak", "stream", "streep", "street", "streetcar", "streets", "streisand", "strength", "strengths", "stress", "stressed", "stressful", "stretch", "stretched", "stretches", "stretching", "stricken", "strict", "strictly", "stride", "strides", "strife", "strike", "strikes", "striking", "strikingly", "strindberg", "string", "strings", "strip", "stripes", "stripped", "stripper", "strippers", "stripping", "strips", "striptease", "strive", "strives", "striving", "strode", "stroke", "strokes", "stroll", "strong", "stronger", "strongest", "strongly", "struck", "structurally", "structure", "structured", "struggle", "struggled", "struggles", "struggling", "strung", "strut", "strutting", "stuart", "stubborn", "stubby", "stuck", "stud", "studded", "student", "students", "studied", "studies", "studio", "studios", "study", "studying", "stuff", "stuffed", "stuffy", "stumble", "stumbled", "stumbles", "stumbling", "stunk", "stunned", "stunning", "stunningly", "stunt", "stuntman", "stunts", "stupendous", "stupid", "stupider", "stupidest", "stupidity", "stupidly", "sturdy", "stuttering", "style", "styled", "styles", "stylised", "stylish", "stylistic", "stylistically", "stylized", "suave", "sub", "subconscious", "subdued", "subgenre", "subject", "subjected", "subjective", "subjects", "sublime", "subliminal", "submarine", "submission", "submit", "submitted", "subplot", "subplots", "subs", "subscribe", "subsequent", "subsequently", "substance", "substandard", "substantial", "substantive", "substitute", "substituting", "subtext", "subtitle", "subtitled", "subtitles", "subtle", "subtleties", "subtlety", "subtly", "suburb", "suburban", "suburbia", "suburbs", "subversive", "subway", "succeed", "succeeded", "succeeding", "succeeds", "success", "successes", "successful", "successfully", "succession", "successor", "succinctly", "succumb", "succumbs", "such", "suck", "sucked", "sucker", "suckered", "suckers", "sucking", "sucks", "sudden", "suddenly", "sue", "suffer", "suffered", "suffering", "suffers", "suffice", "sufficient", "sufficiently", "sugar", "sugary", "suggest", "suggested", "suggesting", "suggestion", "suggestive", "suggests", "suicidal", "suicide", "suicides", "suit", "suitable", "suitably", "suite", "suited", "suitor", "suits", "sullavan", "sullen", "sullivan", "sultry", "sum", "summarize", "summarized", "summary", "summation", "summed", "summer", "summers", "summing", "summon", "summoned", "sumptuous", "sums", "sun", "sundance", "sunday", "sung", "sunglasses", "sunk", "sunlight", "sunny", "sunrise", "sunset", "sunshine", "super", "superb", "superbly", "superficial", "superficiality", "superficially", "superfluous", "superhero", "superheroes", "superhuman", "superimposed", "superior", "superiority", "superiors", "superlative", "superman", "supermarket", "supernatural", "superpowers", "superstar", "superstars", "supervisor", "supplied", "supplies", "supply", "support", "supported", "supporter", "supporters", "supporting", "supportive", "supports", "suppose", "supposed", "supposedly", "suppress", "suppressed", "supremacy", "supreme", "supremely", "sure", "surely", "surf", "surface", "surfer", "surfers", "surfing", "surgeon", "surgery", "surly", "surpass", "surpassed", "surpasses", "surprise", "surprised", "surprises", "surprising", "surprisingly", "surreal", "surrealism", "surrealistic", "surrender", "surrogate", "surround", "surrounded", "surrounding", "surroundings", "surrounds", "surveillance", "survival", "survive", "survived", "survives", "surviving", "survivor", "survivors", "susan", "susannah", "suspect", "suspected", "suspects", "suspend", "suspended", "suspense", "suspenseful", "suspension", "suspicion", "suspicions", "suspicious", "suspiciously", "sustain", "sustained", "sutherland", "suv", "suzanne", "swallow", "swallowed", "swamp", "swanson", "swashbuckling", "swat", "sway", "swayed", "swayze", "swear", "swearing", "swears", "sweat", "sweater", "sweating", "sweaty", "sweden", "swedish", "sweeney", "sweep", "sweeping", "sweeps", "sweet", "sweetheart", "sweetly", "sweetness", "sweets", "swell", "swelling", "swept", "swift", "swim", "swimming", "swimsuit", "swine", "swing", "swinging", "swings", "swiss", "switch", "switched", "switches", "switching", "switzerland", "sword", "swordplay", "swords", "swordsman", "sworn", "sybil", "sydney", "sydow", "sykes", "sylvester", "sylvia", "symbol", "symbolic", "symbolism", "symbols", "sympathetic", "sympathies", "sympathise", "sympathize", "sympathy", "symphony", "symptoms", "sync", "synchronized", "syndrome", "synonymous", "synopsis", "synthesizer", "syrupy", "system", "systems", "table", "tables", "tabloid", "taboo", "taboos", "taciturn", "tack", "tacked", "tackle", "tackled", "tackles", "tackling", "tacky", "tactic", "tactics", "tad", "tadanobu", "tag", "tagged", "tagline", "tail", "tailor", "tailored", "tails", "tainted", "taiwanese", "takashi", "take", "taken", "takes", "taking", "tale", "talent", "talented", "talentless", "talents", "tales", "talk", "talkative", "talked", "talkie", "talkies", "talking", "talks", "talky", "tall", "taller", "tamblyn", "tame", "tamed", "tamer", "tan", "tang", "tangible", "tangled", "tango", "tank", "tanks", "tap", "tape", "taped", "tapes", "tapestry", "taping", "tapping", "taps", "tara", "tarantino", "target", "targeted", "targets", "tarkovsky", "tarnished", "tarot", "tarzan", "tashan", "task", "tasks", "taste", "tasteful", "tastefully", "tasteless", "tastes", "tasty", "tate", "tattoo", "tattooed", "taught", "taunting", "taut", "tautou", "tawdry", "tax", "taxes", "taxi", "taylor", "tcm", "tea", "teach", "teacher", "teachers", "teaches", "teaching", "teachings", "team", "teamed", "teaming", "teams", "teamwork", "tear", "tearful", "tearing", "tearjerker", "tears", "tease", "teased", "teases", "teasing", "tech", "technical", "technically", "technicolor", "technique", "techniques", "techno", "technological", "technology", "ted", "teddy", "tedious", "tediously", "tedium", "tee", "teen", "teenage", "teenaged", "teenager", "teenagers", "teens", "teeny", "teeth", "tel", "telegraphed", "telephone", "telescope", "televised", "television", "tell", "teller", "telling", "tells", "telly", "temper", "temperament", "temperature", "tempered", "tempest", "template", "temple", "tempo", "temporal", "temporarily", "temporary", "temptation", "tempted", "tempting", "ten", "tenant", "tenants", "tend", "tended", "tendencies", "tendency", "tender", "tenderness", "tending", "tends", "tennessee", "tennis", "tenor", "tens", "tense", "tension", "tensions", "tent", "tentative", "tenth", "tents", "tenuous", "tepid", "teri", "term", "termed", "terminal", "terminally", "terminator", "terms", "terrain", "terri", "terrible", "terribly", "terrific", "terrifically", "terrified", "terrifying", "terrifyingly", "territories", "territory", "terror", "terrorism", "terrorist", "terrorists", "terrorize", "terrorized", "terrorizing", "terry", "tess", "test", "testament", "tested", "testimony", "testing", "testosterone", "tests", "texan", "texas", "text", "textbook", "texts", "texture", "th", "thai", "thailand", "than", "thank", "thankful", "thankfully", "thankless", "thanks", "thanksgiving", "that", "thats", "thaw", "the", "theater", "theaters", "theatre", "theatres", "theatrical", "theatrically", "thee", "theft", "their", "theirs", "thelma", "them", "thematic", "thematically", "theme", "themed", "themes", "themselves", "then", "theo", "theodore", "theology", "theoretically", "theories", "theory", "therapist", "therapy", "there", "thereafter", "thereby", "therefore", "therein", "thereof", "theresa", "theron", "these", "thesis", "thespian", "they", "thick", "thief", "thieves", "thin", "thing", "things", "think", "thinking", "thinks", "thinly", "thinner", "third", "thirdly", "thirds", "thirst", "thirsty", "thirteen", "thirties", "thirty", "this", "tho", "thom", "thomas", "thompson", "thomson", "thorn", "thornton", "thorough", "thoroughly", "those", "thou", "though", "thought", "thoughtful", "thoughtfully", "thoughts", "thousand", "thousands", "thread", "threadbare", "threads", "threat", "threaten", "threatened", "threatening", "threatens", "threats", "three", "threesome", "threshold", "threw", "thrill", "thrilled", "thriller", "thrillers", "thrilling", "thrills", "throat", "throats", "throbbing", "throne", "through", "throughly", "throughout", "throw", "throwaway", "throwback", "throwing", "thrown", "throws", "thru", "thrust", "thug", "thugs", "thumb", "thumbs", "thunder", "thunderbirds", "thurman", "thus", "thwart", "thwarted", "tibet", "tibetan", "tick", "ticked", "ticket", "tickets", "ticking", "tide", "tides", "tidy", "tie", "tied", "tier", "tierney", "ties", "tiffany", "tiger", "tigerland", "tight", "tighter", "tightly", "til", "till", "tilly", "tim", "timberlake", "time", "timed", "timeless", "timely", "timer", "timers", "times", "timid", "timing", "timmy", "timon", "timothy", "tin", "tina", "tiny", "tip", "tips", "tire", "tired", "tiresome", "tiring", "tissue", "tissues", "titanic", "titans", "titillation", "title", "titled", "titles", "tits", "titular", "tng", "to", "toad", "toast", "tobe", "toby", "today", "todays", "todd", "toddler", "toe", "toes", "together", "toilet", "toilets", "token", "tokyo", "told", "tolerable", "tolerance", "tolerant", "tolerate", "tolerated", "tolkien", "toll", "tom", "tomato", "tomatoes", "tomb", "tomboy", "tomei", "tomlinson", "tommy", "tomorrow", "ton", "tone", "toned", "tones", "tongue", "toni", "tonight", "tons", "tony", "too", "took", "tool", "toolbox", "toole", "tools", "tooth", "top", "topic", "topical", "topics", "topless", "topped", "topping", "tops", "torch", "torches", "tore", "torment", "tormented", "tormentors", "torments", "torn", "tornado", "toro", "toronto", "torso", "torture", "tortured", "tortures", "torturing", "torturous", "tos", "toss", "tossed", "tosses", "tossing", "total", "totally", "toting", "toto", "touch", "touched", "touches", "touching", "touchy", "tough", "tougher", "toughest", "toughness", "tour", "touring", "tourist", "tourists", "tournament", "tourneur", "touted", "tow", "toward", "towards", "towel", "tower", "towering", "towers", "town", "towns", "townsend", "townsfolk", "townspeople", "toxic", "toy", "toys", "trace", "traced", "traces", "tracey", "track", "tracked", "tracking", "tracks", "tract", "tracy", "trade", "trademark", "trademarks", "trader", "traders", "trades", "trading", "tradition", "traditional", "traditionally", "traditions", "traffic", "trafficking", "tragedies", "tragedy", "tragic", "tragically", "trail", "trailer", "trailers", "trails", "train", "trained", "trainer", "training", "trains", "trait", "traitor", "traits", "tramp", "trance", "transcend", "transcends", "transfer", "transfered", "transferred", "transfixed", "transform", "transformation", "transformations", "transformed", "transformers", "transforming", "transforms", "transition", "transitions", "translate", "translated", "translates", "translation", "translator", "transmission", "transmitted", "transparent", "transpires", "transplant", "transport", "transported", "transsexual", "transvestite", "transylvania", "trap", "trapped", "trappings", "traps", "trash", "trashed", "trashy", "trauma", "traumas", "traumatic", "traumatized", "travel", "traveled", "traveler", "travelers", "traveling", "travelled", "travelling", "travelogue", "travels", "travesty", "travis", "travolta", "treacherous", "tread", "treason", "treasure", "treasured", "treasury", "treat", "treated", "treating", "treatment", "treats", "treaty", "tree", "trees", "trek", "trelkovsky", "tremendous", "tremendously", "trench", "trend", "trends", "trendy", "trent", "trevor", "trey", "triad", "triads", "trial", "trials", "triangle", "tribal", "tribe", "tribeca", "tribes", "tribulations", "tribute", "trick", "tricked", "tricks", "tricky", "tried", "trier", "tries", "trifle", "trigger", "trilogy", "trim", "trinity", "trio", "trip", "tripe", "triple", "tripping", "trippy", "trips", "tristan", "trite", "triumph", "triumphant", "triumphs", "trivia", "trivial", "trojan", "troll", "troma", "troop", "troopers", "troops", "trophy", "tropical", "trot", "trouble", "troubled", "troubles", "troublesome", "troubling", "troupe", "trousers", "troy", "truck", "trucks", "true", "truer", "truffaut", "truly", "truman", "trump", "trumpet", "trunk", "trust", "trusted", "trusting", "trusty", "truth", "truthful", "truthfully", "truths", "try", "trying", "tsui", "tub", "tube", "tubes", "tucci", "tucker", "tuesday", "tug", "tully", "tumbling", "tumultuous", "tune", "tuned", "tunes", "tung", "tuning", "tunnel", "tunnels", "turbulent", "turd", "turf", "turgid", "turkey", "turkeys", "turkish", "turmoil", "turn", "turned", "turner", "turning", "turns", "turtle", "turturro", "tv", "twain", "twelve", "twenties", "twentieth", "twenty", "twice", "twilight", "twin", "twinkle", "twins", "twist", "twisted", "twisting", "twists", "twisty", "twit", "two", "tycoon", "tying", "tyler", "tyne", "type", "typecast", "typed", "types", "typical", "typically", "typing", "tyranny", "tyrone", "tyson", "uber", "ubiquitous", "ufo", "ugh", "ugliest", "ugliness", "ugly", "uh", "uk", "ulli", "ulrich", "ultimate", "ultimately", "ultimatum", "ultra", "um", "uma", "umm", "un", "una", "unabashed", "unable", "unacceptable", "unanswered", "unappealing", "unarmed", "unattractive", "unavailable", "unavoidable", "unaware", "unbalanced", "unbearable", "unbearably", "unbeatable", "unbeknownst", "unbelievable", "unbelievably", "unbiased", "unborn", "uncanny", "uncaring", "uncensored", "uncertain", "uncertainty", "uncle", "unclear", "uncomfortable", "uncomfortably", "uncommon", "uncompromising", "unconnected", "unconscious", "unconsciously", "uncontrollable", "unconventional", "unconvincing", "uncover", "uncovered", "uncovering", "uncovers", "uncredited", "uncut", "undead", "undemanding", "undeniable", "undeniably", "under", "underage", "underbelly", "undercover", "undercurrent", "undercut", "underdeveloped", "underdog", "underestimated", "undergo", "undergoes", "underground", "underlines", "underlings", "underlying", "undermine", "undermined", "undermines", "undermining", "underneath", "underpinnings", "underrated", "underscores", "understand", "understandable", "understandably", "understanding", "understands", "understated", "understatement", "understood", "undertone", "undertones", "underused", "underwater", "underwear", "underwhelming", "underwood", "underworld", "underwritten", "undeserved", "undeveloped", "undisputed", "undistinguished", "undone", "undoubtedly", "undressed", "undying", "unease", "uneasy", "unedited", "uneducated", "unemotional", "unemployed", "unemployment", "unengaging", "uneven", "uneventful", "unexciting", "unexpected", "unexpectedly", "unexplained", "unfair", "unfairly", "unfaithful", "unfamiliar", "unfathomable", "unfeeling", "unfilmable", "unfinished", "unflinching", "unfocused", "unfold", "unfolded", "unfolding", "unfolds", "unforgettable", "unforgivable", "unforgiving", "unfortunate", "unfortunately", "unfriendly", "unfulfilled", "unfunny", "unger", "unhappily", "unhappy", "unharmed", "unhealthy", "unheard", "unhinged", "uniform", "uniformly", "uniforms", "unimaginative", "unimportant", "unimpressed", "unimpressive", "uninhibited", "uninitiated", "uninspired", "uninspiring", "unintelligent", "unintelligible", "unintended", "unintentional", "unintentionally", "uninterested", "uninteresting", "uninvolving", "union", "unique", "uniquely", "uniqueness", "unit", "unite", "united", "units", "unity", "universal", "universally", "universe", "university", "unjustly", "unknowingly", "unknown", "unknowns", "unleash", "unleashed", "unleashes", "unless", "unlikable", "unlike", "unlikeable", "unlikely", "unlimited", "unlock", "unlucky", "unmemorable", "unmistakable", "unmotivated", "unnamed", "unnatural", "unnecessarily", "unnecessary", "unnerving", "unnoticed", "unobtrusive", "unofficial", "unoriginal", "unorthodox", "unpleasant", "unpopular", "unprecedented", "unpredictability", "unpredictable", "unpretentious", "unprofessional", "unquestionably", "unrated", "unravel", "unraveling", "unravels", "unreal", "unrealistic", "unreasonable", "unrecognizable", "unrelated", "unrelenting", "unremarkable", "unresolved", "unrest", "unsatisfied", "unsatisfying", "unsavory", "unscathed", "unscrupulous", "unseen", "unsettling", "unsolved", "unsophisticated", "unspeakable", "unspoken", "unstable", "unstoppable", "unsubtle", "unsuccessful", "unsuccessfully", "unsung", "unsure", "unsurprisingly", "unsuspecting", "unsympathetic", "untalented", "unthinkable", "until", "untimely", "unto", "untouched", "untrue", "unusual", "unusually", "unwanted", "unwatchable", "unwavering", "unwilling", "unwillingness", "unwittingly", "unworthy", "up", "upbeat", "upbringing", "upcoming", "update", "updated", "upgrade", "upheaval", "uplifting", "upon", "upper", "upright", "uproar", "ups", "upscale", "upset", "upsets", "upsetting", "upside", "upstairs", "uptight", "upward", "upwards", "urban", "urbane", "urge", "urgency", "urgent", "urges", "urging", "ursula", "us", "usa", "usage", "use", "used", "useful", "useless", "user", "users", "uses", "usher", "using", "ussr", "ustinov", "usual", "usually", "utah", "utility", "utilize", "utilized", "utilizes", "utilizing", "utmost", "utopia", "utter", "uttered", "uttering", "utterly", "utters", "uwe", "vacant", "vacation", "vacuous", "vacuum", "vader", "vagina", "vague", "vaguely", "vain", "val", "valentine", "valerie", "valiant", "valid", "validity", "valley", "valuable", "value", "values", "vamp", "vampire", "vampires", "van", "vance", "vancouver", "vanessa", "vanilla", "vanish", "vanished", "vanishes", "vanishing", "vanities", "vanity", "vapid", "vargas", "variable", "variant", "variation", "variations", "varied", "varies", "variety", "various", "vartan", "vary", "varying", "vast", "vastly", "vaudeville", "vaughn", "vault", "vaults", "vcr", "ve", "veers", "vega", "vegas", "vegetables", "vehicle", "vehicles", "veidt", "veil", "veiled", "vein", "veins", "velvet", "vendetta", "veneer", "venezuela", "venezuelan", "vengeance", "vengeful", "venice", "venom", "venomous", "venoms", "vent", "ventura", "venture", "ventures", "venturing", "venue", "venus", "vera", "verbal", "verbally", "verdict", "verge", "verhoeven", "verify", "verisimilitude", "veritable", "verite", "vermin", "verne", "vernon", "veronica", "versa", "versatile", "versatility", "verse", "version", "versions", "versus", "vertigo", "verve", "very", "vessel", "vet", "veteran", "veterans", "vets", "vh1", "vhs", "via", "viable", "vibe", "vibes", "vibrant", "vic", "vice", "vicious", "vicki", "victim", "victimized", "victims", "victor", "victoria", "victorian", "victory", "vidal", "video", "videos", "videotape", "vidor", "vienna", "vietnam", "vietnamese", "view", "viewed", "viewer", "viewers", "viewing", "viewings", "viewpoint", "viewpoints", "views", "viggo", "vigilante", "vignettes", "vijay", "viking", "vikings", "vile", "villa", "village", "villagers", "villages", "villain", "villainess", "villainous", "villains", "vince", "vincent", "vincente", "vincenzo", "vinnie", "vinny", "vintage", "vinyl", "violated", "violation", "violence", "violent", "violently", "violin", "vipul", "virgin", "virginal", "virginia", "virginity", "virgins", "virtual", "virtually", "virtue", "virtues", "virtuous", "virulent", "virus", "visage", "visceral", "visconti", "visible", "visibly", "vision", "visionary", "visions", "visit", "visited", "visiting", "visitor", "visitors", "visits", "vistas", "visual", "visually", "visuals", "vital", "vitality", "viva", "vivacious", "vivian", "vivid", "vividly", "vixen", "vocabulary", "vocal", "vocals", "vogue", "voice", "voiced", "voices", "void", "voight", "volatile", "volcano", "volume", "volumes", "volunteer", "volunteers", "vomit", "vomiting", "von", "vonnegut", "voodoo", "vortex", "vote", "voted", "voters", "votes", "voting", "vows", "voyage", "voyager", "voyeur", "voyeurism", "vs", "vu", "vulcan", "vulgar", "vulgarity", "vulnerability", "vulnerable", "wackiness", "wacko", "wacky", "waco", "wafer", "wage", "wager", "wages", "wagner", "wagon", "wahlberg", "waif", "wailing", "waist", "wait", "waited", "waiter", "waiting", "waitress", "waits", "wake", "wakes", "waking", "wal", "wales", "walk", "walked", "walken", "walker", "walking", "walks", "wall", "wallace", "wallach", "wallet", "wallop", "wallow", "walls", "wally", "walmart", "walrus", "walsh", "walt", "walter", "walters", "wan", "wanda", "wander", "wandered", "wandering", "wanders", "wang", "wanna", "wannabe", "wannabes", "want", "wanted", "wanting", "wants", "war", "ward", "warden", "wardrobe", "wards", "warehouse", "warfare", "warhol", "warhols", "warlord", "warm", "warming", "warmly", "warms", "warmth", "warn", "warned", "warner", "warners", "warning", "warnings", "warns", "warp", "warped", "warrant", "warranted", "warrants", "warren", "warring", "warrior", "warriors", "wars", "wartime", "warts", "wary", "was", "wash", "washed", "washing", "washington", "wasn", "wasnt", "waste", "wasted", "wasteland", "waster", "wastes", "wasting", "watch", "watchable", "watched", "watcher", "watchers", "watches", "watching", "water", "watered", "waterfall", "waterfront", "waterman", "waters", "watson", "watts", "wave", "waves", "waving", "wax", "way", "wayans", "wayne", "ways", "wayward", "wb", "we", "weak", "weaker", "weakest", "weakness", "weaknesses", "wealth", "wealthy", "weapon", "weaponry", "weapons", "wear", "wearing", "wears", "weary", "weather", "weave", "weaver", "weaves", "weaving", "web", "weber", "website", "websites", "webster", "wed", "wedding", "weddings", "wee", "weed", "week", "weekend", "weekly", "weeks", "weep", "weeping", "weepy", "weigh", "weight", "weir", "weird", "weirder", "weirdest", "weirdly", "weirdness", "weirdo", "weissmuller", "weisz", "welch", "welcome", "welcomed", "welfare", "well", "weller", "welles", "wellington", "wells", "welsh", "wendigo", "wendt", "wendy", "went", "were", "weren", "werewolf", "werewolves", "werner", "wes", "wesley", "west", "western", "westerners", "westerns", "wet", "whack", "whacked", "whale", "wham", "what", "whatever", "whatnot", "whats", "whatsoever", "wheel", "wheelchair", "wheels", "when", "whenever", "where", "whereabouts", "whereas", "whereby", "wherein", "wherever", "whether", "whew", "which", "whichever", "while", "whilst", "whim", "whimsical", "whine", "whining", "whiny", "whip", "whipped", "whips", "whirlwind", "whiskey", "whisper", "whistling", "whit", "white", "whites", "whiz", "who", "whoa", "whodunit", "whodunnit", "whoever", "whole", "wholeheartedly", "wholesome", "wholly", "whom", "whomever", "whoopi", "whore", "whores", "whose", "why", "wicked", "wickedly", "wicker", "wide", "widely", "wider", "widescreen", "widmark", "widow", "widowed", "widower", "wielding", "wife", "wig", "wigs", "wikipedia", "wilcox", "wild", "wilde", "wilder", "wilderness", "wildest", "wildlife", "wildly", "will", "willard", "willed", "willem", "william", "williams", "williamson", "willie", "willing", "willingly", "willingness", "willis", "wills", "willy", "wilson", "wily", "wimp", "wimpy", "win", "wince", "winchester", "wincing", "wind", "winded", "winding", "window", "windows", "winds", "windshield", "wine", "winfrey", "wing", "winger", "wings", "wink", "winkler", "winner", "winners", "winning", "wins", "winslet", "winston", "winter", "winters", "wipe", "wiped", "wipes", "wiping", "wire", "wires", "wisconsin", "wisdom", "wise", "wisecracking", "wisecracks", "wisely", "wiser", "wish", "wished", "wishes", "wishful", "wishing", "wistful", "wit", "witch", "witchcraft", "witches", "with", "withdrawn", "witherspoon", "within", "without", "withstand", "witless", "witness", "witnessed", "witnesses", "witnessing", "wits", "witted", "witty", "wives", "wizard", "wizards", "wobbly", "woeful", "woefully", "woke", "woken", "wolf", "wolfe", "wolfman", "wolves", "woman", "womanizer", "womanizing", "women", "won", "wonder", "wondered", "wonderful", "wonderfully", "wondering", "wonderland", "wonders", "wondrous", "wong", "wont", "woo", "wood", "woodard", "wooden", "woodhouse", "woodland", "woods", "woodward", "woody", "wool", "word", "wordless", "words", "wore", "work", "worked", "worker", "workers", "working", "workings", "works", "world", "worldly", "worlds", "worldwide", "worm", "worms", "worn", "woronov", "worried", "worries", "worry", "worrying", "worse", "worship", "worships", "worst", "worth", "worthless", "worthwhile", "worthy", "would", "wouldn", "wound", "wounded", "wounds", "woven", "wow", "wrap", "wrapped", "wrapping", "wraps", "wrath", "wray", "wreak", "wreck", "wrecked", "wrecking", "wrecks", "wrenching", "wrestler", "wrestling", "wretched", "wright", "wrinkle", "wrist", "wrists", "write", "writer", "writers", "writes", "writhing", "writing", "writings", "written", "wrong", "wronged", "wrongly", "wrote", "wrought", "wry", "wtc", "wtf", "wu", "wuhrer", "wuss", "ww", "ww2", "wwe", "wwf", "wwi", "wwii", "www", "wyatt", "wyoming", "ya", "yacht", "yadav", "yahoo", "yakuza", "yanked", "yankee", "yankees", "yaphet", "yard", "yards", "yarn", "yawn", "yawning", "yay", "ye", "yea", "yeah", "year", "yearn", "yearning", "yearns", "years", "yell", "yelled", "yelling", "yellow", "yells", "yep", "yes", "yesterday", "yet", "yeti", "yikes", "yo", "yoda", "yokai", "york", "yorker", "yorkers", "you", "young", "younger", "youngest", "youngster", "youngsters", "your", "yours", "yourself", "yourselves", "youssef", "youth", "youthful", "youths", "youtube", "yr", "yrs", "yu", "yuck", "yuen", "yugoslavia", "yuk", "yukon", "yul", "yummy", "yup", "yuppie", "yuzna", "yvonne", "zabriskie", "zach", "zack", "zadora", "zane", "zany", "zatoichi", "zealand", "zelah", "zelda", "zemeckis", "zen", "zenith", "zentropa", "zero", "zest", "zeta", "zhang", "zimmer", "zip", "zizek", "zodiac", "zoe", "zombi", "zombie", "zombies", "zone", "zoo", "zoom", "zooms", "zorro", "zu", "zucker"], "features": {"360": {"effect": 0.00017574006637452238, "value": 0.0}, "657": {"effect": -0.01865873428475954, "value": 0.0}, "683": {"effect": -0.008970009940513083, "value": 0.0}, "748": {"effect": -0.008511299968414522, "value": 0.09111229291054612}, "842": {"effect": 0.02269103972389111, "value": 0.0}, "1022": {"effect": -0.027329287632891993, "value": 0.0}, "1239": {"effect": 0.03962784635343933, "value": 0.0}, "1283": {"effect": 0.1874684852602638, "value": 0.0}, "1425": {"effect": -0.0009692757141031616, "value": 0.034668429240980944}, "1451": {"effect": 0.055934849641899945, "value": 0.07965563650566876}, "1470": {"effect": 0.0014222571140528144, "value": 0.0}, "1575": {"effect": -0.05786452812687114, "value": 0.0}, "1843": {"effect": 0.03365740337501302, "value": 0.0}, "1897": {"effect": 0.04907686318670233, "value": 0.0}, "3430": {"effect": 0.012408101286046622, "value": 0.0}, "3502": {"effect": 0.00014777057896362325, "value": 0.0}, "4687": {"effect": 0.002800879419139044, "value": 0.0}, "5049": {"effect": -0.0037936018815791775, "value": 0.0}, "5214": {"effect": 0.05023910321703915, "value": 0.0}, "5270": {"effect": -0.035263020676497815, "value": 0.0}, "5579": {"effect": -0.005030033285478375, "value": 0.0}, "6119": {"effect": -0.007192527939479485, "value": 0.0}, "6530": {"effect": -0.13502282962344417, "value": 0.0}, "6715": {"effect": 0.000808035602365702, "value": 0.0}, "6851": {"effect": -0.017083489741559533, "value": 0.06900951018266113}, "7059": {"effect": 0.011907019369269072, "value": 0.040647179187734465}, "7182": {"effect": 0.00819776806901015, "value": 0.0}, "7480": {"effect": -0.004862562005708819, "value": 0.0}, "7712": {"effect": 0.005417103164550662, "value": 0.0}, "7899": {"effect": -0.021100381274391875, "value": 0.048775063298282254}, "7921": {"effect": 0.09684729384249073, "value": 0.12314570535996824}, "8131": {"effect": 0.06428067445535225, "value": 0.0}, "8359": {"effect": 0.00011033052619057948, "value": 0.0}, "8585": {"effect": -0.018309122280652068, "value": 0.0}, "8807": {"effect": -0.04413905933687989, "value": 0.0}, "8809": {"effect": 0.1612566928975862, "value": 0.08831069363191854}, "8964": {"effect": 0.0081469829634153, "value": 0.0}, "9431": {"effect": 0.02205012442014671, "value": 0.0}, "9547": {"effect": 0.0018152915717760127, "value": 0.0}, "9662": {"effect": 0.025870891868095585, "value": 0.0}, "9976": {"effect": 0.08575653881576896, "value": 0.0}, "10035": {"effect": -0.03009415453303494, "value": 0.06672477410640265}, "10043": {"effect": 0.03944609248311738, "value": 0.0}, "10168": {"effect": 0.009122713981068986, "value": 0.0}, "10236": {"effect": 0.023159234057400953, "value": 0.0}, "10284": {"effect": 0.01671887567685608, "value": 0.0}, "10700": {"effect": -0.012227232101763385, "value": 0.0}, "10957": {"effect": 0.035777612560606416, "value": 0.0}, "11036": {"effect": 0.021536036699581533, "value": 0.0}, "11039": {"effect": 0.005021800753502497, "value": 0.0}, "12798": {"effect": 0.02034089138581319, "value": 0.0}, "12950": {"effect": -0.001308279168397706, "value": 0.0}, "13969": {"effect": -0.009201024390642137, "value": 0.0}, "14136": {"effect": 0.015329863538830178, "value": 0.0}, "14302": {"effect": 0.004952638272004777, "value": 0.0}, "14638": {"effect": 0.020427412295524076, "value": 0.0}, "14701": {"effect": 0.006864929355396388, "value": 0.0}, "14710": {"effect": 0.025614204979540183, "value": 0.0}, "14721": {"effect": 0.03325685596341988, "value": 0.0}, "14726": {"effect": 0.007365622051324772, "value": 0.0}, "14741": {"effect": -0.019138940308565826, "value": 0.07259861631304046}, "14862": {"effect": -0.14815995084354275, "value": 0.1638809153877406}, "15380": {"effect": 0.000779169941313584, "value": 0.0}, "15676": {"effect": -0.038911433928033534, "value": 0.0}, "15917": {"effect": 0.06584033872904814, "value": 0.0}, "15924": {"effect": 0.04238153795822657, "value": 0.0}, "16007": {"effect": -0.036982888379616566, "value": 0.0}, "16086": {"effect": 0.020804331268947485, "value": 0.0}, "16111": {"effect": -0.02402235517431978, "value": 0.0}, "16211": {"effect": -0.021099160122405296, "value": 0.0}, "16240": {"effect": -0.002792889509547814, "value": 0.0}, "16252": {"effect": 0.010196280193499423, "value": 0.0}, "16255": {"effect": 0.10315596019591007, "value": 0.0}, "16260": {"effect": 0.012057091671217095, "value": 0.0}}, "plot_cmap": "RdBu", "labelMargin": 20}),
|
||
document.getElementById('iCZC4P3IAEU08DKAYV2Z9')
|
||
);
|
||
</script>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="cell border-box-sizing code_cell rendered">
|
||
<div class="input">
|
||
<div class="prompt input_prompt">In [11]:</div>
|
||
<div class="inner_cell">
|
||
<div class="input_area">
|
||
<div class=" highlight hl-ipython3"><pre><span></span><span class="nb">print</span><span class="p">(</span><span class="s2">"Positive"</span> <span class="k">if</span> <span class="n">y_test</span><span class="p">[</span><span class="n">ind</span><span class="p">]</span> <span class="k">else</span> <span class="s2">"Negative"</span><span class="p">,</span> <span class="s2">"Review:"</span><span class="p">)</span>
|
||
<span class="nb">print</span><span class="p">(</span><span class="n">corpus_test</span><span class="p">[</span><span class="n">ind</span><span class="p">])</span>
|
||
</pre></div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="output_wrapper">
|
||
<div class="output">
|
||
|
||
|
||
<div class="output_area">
|
||
|
||
<div class="prompt"></div>
|
||
|
||
|
||
<div class="output_subarea output_stream output_stdout output_text">
|
||
<pre>Positive Review:
|
||
I finally saw this film tonight after renting it at Blockbuster (VHS). I have to agree that it is wildly original. Yes, maybe the characters were not fully realized but it isn't one of those movies. Rather, we are treated to the director's eye, his vision of what the story is about. And it does not stop. And to be honest, I didn't want it to. I do believe that Sabu had to have influenced the director's of 'Lock, Stock & Two Smoking Barrels' and 'Run, Lola, Run'. But I absolutely loved the way the three leads SEE the beautiful woman on the street to distract them momentarily. I really need to see this director's other work because this film really intrigued me. If you want insight, culture, sturm und drang, go somewhere else. If you want a laugh, camera movement and criminal hilarity, look here.
|
||
|
||
</pre>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
|
||
|
||
|
||
|
||
</html>
|