diff --git a/.gitignore b/.gitignore index c415a06d3f..39be62a875 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,3 @@ -*.swp -.DS_Store - -.grunt -_SpecRunner.html -test/coverage - -dist_temp - -node_modules -npm-debug.log - bower_components - -*.iml -.idea +node_modules +test diff --git a/.jshintrc b/.jshintrc deleted file mode 100644 index d14cf74cdb..0000000000 --- a/.jshintrc +++ /dev/null @@ -1,16 +0,0 @@ -{ - "curly": true, - "newcap": true, - "noarg": true, - "quotmark": "single", - "regexp": true, - "trailing": true, - - "boss": true, - "eqnull": true, - "expr": true, - "validthis": true, - - "browser": true, - "jquery": true -} diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 8bb5ce6ec8..0000000000 --- a/.npmignore +++ /dev/null @@ -1,19 +0,0 @@ -*.swp -.DS_Store -.grunt -_SpecRunner.html -test/coverage -dist_temp -node_modules -npm-debug.log -bower_components -test -*.iml -.idea -.jshintrc -.npmignore -.travis.yml -composer.json -contributing.md -Gruntfile.js -karma.conf.js diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8c458bc83b..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,34 +0,0 @@ -language: node_js -env: - matrix: - - TEST_SUITE=unit - - TEST_SUITE=integration BROWSER='firefox' - - TEST_SUITE=integration BROWSER='firefox:3.5' - - TEST_SUITE=integration BROWSER='firefox:3.6' - - TEST_SUITE=integration BROWSER='safari:5' - - TEST_SUITE=integration BROWSER='safari:6' - - TEST_SUITE=integration BROWSER='safari:7' - - TEST_SUITE=integration BROWSER='internet explorer:8' - - TEST_SUITE=integration BROWSER='internet explorer:9' - - TEST_SUITE=integration BROWSER='internet explorer:10' - - TEST_SUITE=integration BROWSER='internet explorer:11' - - TEST_SUITE=integration BROWSER='chrome' - global: - - secure: VY4J2ERfrMEin++f4+UDDtTMWLuE3jaYAVchRxfO2c6PQUYgR+SW4SMekz855U/BuptMtiVMR2UUoNGMgOSKIFkIXpPfHhx47G5a541v0WNjXfQ2qzivXAWaXNK3l3C58z4dKxgPWsFY9JtMVCddJd2vQieAILto8D8G09p7bpo= - - secure: kehbNCoYUG2gLnhmCH/oKhlJG6LoxgcOPMCtY7KOI4ropG8qlypb+O2b/19+BWeO3aIuMB0JajNh3p2NL0UKgLmUK7EYBA9fQz+vesFReRk0V/KqMTSxHJuseM4aLOWA2Wr9US843VGltfODVvDN5sNrfY7RcoRx2cTK/k1CXa8= -node_js: -- "10.18.0" -cache: - directories: - - node_modules - - bower_components -before_install: -- npm install -g grunt-cli@0.1.13 -- npm install -g bower@1.3.8 -install: -- npm install -before_script: -- grunt build -script: test/ci -addons: - sauce_connect: true diff --git a/CNAME b/CNAME new file mode 100644 index 0000000000..3f92ee941b --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +typeahead.js.org diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 7a100691d9..0000000000 --- a/Gruntfile.js +++ /dev/null @@ -1,342 +0,0 @@ -var semver = require('semver'), - f = require('util').format, - files = { - common: [ - 'src/common/utils.js' - ], - bloodhound: [ - 'src/bloodhound/version.js', - 'src/bloodhound/tokenizers.js', - 'src/bloodhound/lru_cache.js', - 'src/bloodhound/persistent_storage.js', - 'src/bloodhound/transport.js', - 'src/bloodhound/search_index.js', - 'src/bloodhound/prefetch.js', - 'src/bloodhound/remote.js', - 'src/bloodhound/options_parser.js', - 'src/bloodhound/bloodhound.js' - ], - typeahead: [ - 'src/typeahead/www.js', - 'src/typeahead/event_bus.js', - 'src/typeahead/event_emitter.js', - 'src/typeahead/highlight.js', - 'src/typeahead/input.js', - 'src/typeahead/dataset.js', - 'src/typeahead/menu.js', - 'src/typeahead/status.js', - 'src/typeahead/default_menu.js', - 'src/typeahead/typeahead.js', - 'src/typeahead/plugin.js' - ] - }; - -module.exports = function(grunt) { - grunt.initConfig({ - version: grunt.file.readJSON('package.json').version, - - tempDir: 'dist_temp', - buildDir: 'dist', - - banner: [ - '/*!', - ' * typeahead.js <%= version %>', - ' * https://github.com/corejavascript/typeahead.js', - ' * Copyright 2013-<%= grunt.template.today("yyyy") %> Twitter, Inc. and other contributors; Licensed MIT', - ' */\n\n' - ].join('\n'), - - uglify: { - options: { - banner: '<%= banner %>' - }, - - concatBloodhound: { - options: { - mangle: false, - beautify: true, - compress: false, - banner: '' - }, - src: files.common.concat(files.bloodhound), - dest: '<%= tempDir %>/bloodhound.js' - }, - concatTypeahead: { - options: { - mangle: false, - beautify: true, - compress: false, - banner: '' - }, - src: files.common.concat(files.typeahead), - dest: '<%= tempDir %>/typeahead.jquery.js' - }, - - bloodhound: { - options: { - mangle: false, - beautify: true, - compress: false - }, - src: '<%= tempDir %>/bloodhound.js', - dest: '<%= buildDir %>/bloodhound.js' - }, - bloodhoundMin: { - options: { - mangle: true, - compress: {} - }, - src: '<%= tempDir %>/bloodhound.js', - dest: '<%= buildDir %>/bloodhound.min.js' - }, - typeahead: { - options: { - mangle: false, - beautify: true, - compress: false - }, - src: '<%= tempDir %>/typeahead.jquery.js', - dest: '<%= buildDir %>/typeahead.jquery.js' - }, - typeaheadMin: { - options: { - mangle: true, - compress: {} - }, - src: '<%= tempDir %>/typeahead.jquery.js', - dest: '<%= buildDir %>/typeahead.jquery.min.js' - }, - bundle: { - options: { - mangle: false, - beautify: true, - compress: false - }, - src: [ - '<%= tempDir %>/bloodhound.js', - '<%= tempDir %>/typeahead.jquery.js' - ], - dest: '<%= buildDir %>/typeahead.bundle.js' - - }, - bundleMin: { - options: { - mangle: true, - compress: {} - }, - src: [ - '<%= tempDir %>/bloodhound.js', - '<%= tempDir %>/typeahead.jquery.js' - ], - dest: '<%= buildDir %>/typeahead.bundle.min.js' - } - }, - - umd: { - bloodhound: { - src: '<%= tempDir %>/bloodhound.js', - objectToExport: 'Bloodhound', - deps: { - default: ['$'], - amd: ['jquery'], - cjs: ['jquery'], - global: ['jQuery'] - } - }, - typeahead: { - src: '<%= tempDir %>/typeahead.jquery.js', - deps: { - default: ['$'], - amd: ['jquery'], - cjs: ['jquery'], - global: ['jQuery'] - } - } - }, - - replace: { - version: { - options: { - patterns: [ - { - match: '%VERSION%', - replacement: '<%= version %>', - } - ], - usePrefix: false - }, - files: [ - { - expand: true, - flatten: true, - src: '<%= buildDir %>/**/*.js', - dest: '<%= buildDir %>' - } - ] - } - }, - - jshint: { - options: { - jshintrc: '.jshintrc' - }, - src: 'src/**/*.js', - test: ['test/**/*_spec.js', 'test/integration/test.js'], - gruntfile: ['Gruntfile.js'] - }, - - watch: { - js: { - files: 'src/**/*', - tasks: 'build' - } - }, - - exec: { - npm_publish: 'npm publish', - git_is_clean: 'test -z "$(git status --porcelain)"', - git_on_master: 'test $(git symbolic-ref --short -q HEAD) = master', - git_add: 'git add .', - git_push: 'git push && git push --tags', - git_commit: { - cmd: function(m) { return f('git commit -m "%s"', m); } - }, - git_tag: { - cmd: function(v) { return f('git tag v%s -am "%s"', v, v); } - }, - publish_assets: [ - 'cp -r <%= buildDir %> typeahead.js', - 'zip -r typeahead.js/typeahead.js.zip typeahead.js', - 'git checkout gh-pages', - 'rm -rf releases/latest', - 'cp -r typeahead.js releases/<%= version %>', - 'cp -r typeahead.js releases/latest', - 'git add releases/<%= version %> releases/latest', - 'sed -E -i "" \'s/v[0-9]+\\.[0-9]+\\.[0-9]+/v<%= version %>/\' index.html', - 'git add index.html', - 'git commit -m "Add assets for <%= version %>."', - 'git push', - 'git checkout -', - 'rm -rf typeahead.js' - ].join(' && ') - }, - - clean: { - dist: 'dist' - }, - - connect: { - server: { - options: { port: 8888, keepalive: true } - } - }, - - concurrent: { - options: { logConcurrentOutput: true }, - dev: ['server', 'watch'] - }, - - step: { - options: { - option: false - } - } - }); - - grunt.registerTask('release', '#shipit', function(version) { - var curVersion = grunt.config.get('version'); - - version = semver.inc(curVersion, version) || version; - - if (!semver.valid(version) || semver.lte(version, curVersion)) { - grunt.fatal('hey dummy, that version is no good!'); - } - - grunt.config.set('version', version); - - grunt.task.run([ - 'exec:git_on_master', - 'exec:git_is_clean', - f('step:Update to version %s?', version), - f('manifests:%s', version), - 'build', - 'exec:git_add', - f('exec:git_commit:%s', version), - f('exec:git_tag:%s', version), - 'step:Push changes?', - 'exec:git_push', - 'step:Publish to npm?', - 'exec:npm_publish', - 'step:Publish assets?', - 'exec:publish_assets' - ]); - }); - - grunt.registerTask('manifests', 'Update manifests.', function(version) { - var _ = grunt.util._, - pkg = grunt.file.readJSON('package.json'), - bower = grunt.file.readJSON('bower.json'), - jqueryPlugin = grunt.file.readJSON('typeahead.js.jquery.json'); - - bower = JSON.stringify(_.extend(bower, { - name: pkg.name, - version: version - }), null, 2); - - jqueryPlugin = JSON.stringify(_.extend(jqueryPlugin, { - name: pkg.name, - title: pkg.name, - version: version, - author: pkg.author, - description: pkg.description, - keywords: pkg.keywords, - homepage: pkg.homepage, - bugs: pkg.bugs, - maintainers: pkg.contributors - }), null, 2); - - pkg = JSON.stringify(_.extend(pkg, { - version: version - }), null, 2); - - grunt.file.write('package.json', pkg); - grunt.file.write('bower.json', bower); - grunt.file.write('typeahead.js.jquery.json', jqueryPlugin); - }); - - // aliases - // ------- - - grunt.registerTask('default', 'build'); - grunt.registerTask('server', 'connect:server'); - grunt.registerTask('lint', 'jshint'); - grunt.registerTask('dev', ['build', 'concurrent:dev']); - grunt.registerTask('build', [ - 'uglify:concatBloodhound', - 'uglify:concatTypeahead', - 'umd:bloodhound', - 'umd:typeahead', - 'uglify:bloodhound', - 'uglify:bloodhoundMin', - 'uglify:typeahead', - 'uglify:typeaheadMin', - 'uglify:bundle', - 'uglify:bundleMin', - 'replace:version' - ]); - - // load tasks - // ---------- - - grunt.loadNpmTasks('grunt-umd'); - grunt.loadNpmTasks('grunt-replace'); - grunt.loadNpmTasks('grunt-exec'); - grunt.loadNpmTasks('grunt-step'); - grunt.loadNpmTasks('grunt-concurrent'); - grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.loadNpmTasks('grunt-contrib-clean'); - grunt.loadNpmTasks('grunt-contrib-uglify'); - grunt.loadNpmTasks('grunt-contrib-jshint'); - grunt.loadNpmTasks('grunt-contrib-concat'); - grunt.loadNpmTasks('grunt-contrib-connect'); -}; diff --git a/bower.json b/bower.json deleted file mode 100644 index 296f50ab9e..0000000000 --- a/bower.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "corejs-typeahead", - "version": "1.0.1", - "main": "dist/typeahead.bundle.js", - "dependencies": { - "jquery": ">=1.11" - }, - "devDependencies": { - "jquery": "~1.11", - "jasmine-ajax": "~1.3.1", - "jasmine-jquery": "~1.7.0" - }, - "resolutions": { - "jquery": "1.11.3" - } -} diff --git a/changelog.md b/changelog.md deleted file mode 100644 index 08e29aec43..0000000000 --- a/changelog.md +++ /dev/null @@ -1,240 +0,0 @@ -# Changelog - -### 1.3.4 -- Rebuild dist files and re-tag latest release. - -### 1.3.3 - -- Add an `aria-controls` attribute to input element for WCAG 2.1 accessibility compliance -- Removed BitHound badges from Readme.md [#242](https://github.com/corejavascript/typeahead.js/pull/242) - -### 1.3.2 - -- (Version increment for package publishing. No code changes.) - -### 1.3.1 April 12, 2020 - -- Update numerous npm dependencies to resolve vulnerability warnings. -- Fix aria warnings in Chrome lighthouse, make aria spec compliant [#197](https://github.com/corejavascript/typeahead.js/pull/197) - -### 1.3.0 November 16, 2019 - -- Fix autoselect on tab [#199](https://github.com/corejavascript/typeahead.js/pull/199) -- On up/down arrow, set the input only if data.val is a string [#184](https://github.com/corejavascript/typeahead.js/pull/184) -- Apply accessibility attributes to suggestion template [#185](https://github.com/corejavascript/typeahead.js/pull/185) - -### 1.2.1 September 25, 2017 - -- Fix various typos [#137](https://github.com/corejavascript/typeahead.js/pull/137) -- Add jQuery 3 support [#102](https://github.com/corejavascript/typeahead.js/pull/102) -- Remove 'required' class from cloned input field [#125](https://github.com/corejavascript/typeahead.js/pull/125) -- Add autoselect option [#154](https://github.com/corejavascript/typeahead.js/pull/154) -- Update example link to corejavascript docs [#149](https://github.com/corejavascript/typeahead.js/pull/149) -- Fix link in bloodhound docs [#134](https://github.com/corejavascript/typeahead.js/pull/134) -- Minor change to docs to log object instead of assuming it's a string [#157](https://github.com/corejavascript/typeahead.js/pull/157) - -### 1.2.0 September 25, 2017 - -(Skipped) - -### 1.1.1 January 12, 2017 - -- Fix hiding of .visuallyhidden style (introduced in #104) [#107](https://github.com/corejavascript/typeahead.js/pull/107) - -### 1.1.0 December 19, 2016 - -- Improve screen reader support, ARIA, etc. [#104](https://github.com/corejavascript/typeahead.js/pull/104) -- Remove non-essential files from NPM package [#100](https://github.com/corejavascript/typeahead.js/pull/100) - -### 1.0.1 November 17, 2016 - -- v1.0.1 Released - -### 1.0.0-beta November 10, 2016 - -- Add diacritic-insensitive highlighting [#51](https://github.com/corejavascript/typeahead.js/pull/51) -- Allow for custom setting of maxPendingRequests [#62](https://github.com/corejavascript/typeahead.js/pull/62) -- Fix incorrect event arguments [#65](https://github.com/corejavascript/typeahead.js/pull/65) -- Fix incorrect limit with remote [#52](https://github.com/corejavascript/typeahead.js/pull/52) -- Implement edge ngram tokenizer for Bloodhound [#93](https://github.com/corejavascript/typeahead.js/pull/93) -- Remove requirement to have bower when installing via NPM [#74](https://github.com/corejavascript/typeahead.js/pull/74) -- Fix codestyle issues [#86](https://github.com/corejavascript/typeahead.js/pull/86) -- Add PhantomJS as dev dependency [#87](https://github.com/corejavascript/typeahead.js/pull/87) -- Remove cursor onMouseLeave [#90](https://github.com/corejavascript/typeahead.js/pull/90) -- Add matchAnyQueryToken option. [#2](https://github.com/corejavascript/typeahead.js/pull/2) -- Update rendered-count after async results have displayed. [#8](https://github.com/corejavascript/typeahead.js/pull/8) -- Add default on option to stop propagation when selecting an entry. [#13](https://github.com/corejavascript/typeahead.js/pull/13) -- Fix link to contributing guidelines [#49](https://github.com/corejavascript/typeahead.js/pull/49) -- Set cursor onHover [#28](https://github.com/corejavascript/typeahead.js/pull/28) -- Complete to currently selected suggestion [#27](https://github.com/corejavascript/typeahead.js/pull/27) -- Fix 404 links [#41](https://github.com/corejavascript/typeahead.js/pull/41) -- Fix typos in comments in plugin.js [#37](https://github.com/corejavascript/typeahead.js/pull/37) -- Update travis config to run latest supported node version [#25](https://github.com/corejavascript/typeahead.js/pull/25) -- Update NPM package dependencies [#19](https://github.com/corejavascript/typeahead.js/pull/19) -- Speed up Travis build [#22](https://github.com/corejavascript/typeahead.js/pull/22) -- Fix npm error by adding license link [#18](https://github.com/corejavascript/typeahead.js/pull/18) -- Move globally installed dependency [#16](https://github.com/corejavascript/typeahead.js/pull/16) - -### 0.11.1 April 26, 2015 - -- Add prepare option to prefetch. [#1181](https://github.com/twitter/typeahead.js/pull/1181) -- Handle QuotaExceededError. [#1110](https://github.com/twitter/typeahead.js/pull/1110) -- Escape HTML entities from suggestion display value when rendering with default - template. [#964](https://github.com/twitter/typeahead.js/pull/964) -- List jquery as a dependency in package.json. [#1143](https://github.com/twitter/typeahead.js/pull/1143) - -### 0.11.0 April 25, 2015 - -An overhaul of typeahead.js – consider this a release candidate for v1. There -are bunch of API changes with this release so don't expect backwards -compatibility with previous versions. There are also many new undocumented -features that have been introduced. Documentation for those features will be -added before v1 ships. - -Beware that since this release is pretty much a rewrite, there are bound to be -some bugs. To be safe, you should consider this release beta software and -throughly test your integration of it before using it in production -environments. This caveat only applies to this release as subsequent releases -will address any issues that come up. - -### 0.10.5 August 7, 2014 - -- Increase supported version range for jQuery dependency. [#917](https://github.com/twitter/typeahead.js/pull/917) - -### 0.10.4 July 13, 2014 - -**Hotfix** - -- Fix regression that breaks Bloodhound instances when more than 1 instance is - relying on remote data. [#899](https://github.com/twitter/typeahead.js/pull/899) - -### 0.10.3 July 10, 2014 - -**Bug fixes** - -- `Bloodhound#clearPrefetchCache` now works with cache keys that contain regex - characters. [#771](https://github.com/twitter/typeahead.js/pull/771) -- Prevent outdated network requests from being sent. [#809](https://github.com/twitter/typeahead.js/pull/809) -- Add support to object tokenizers for multiple property tokenization. [#811](https://github.com/twitter/typeahead.js/pull/811) -- Fix broken `jQuery#typeahead('val')` method. [#815](https://github.com/twitter/typeahead.js/pull/815) -- Remove `disabled` attribute from the hint input control. [#839](https://github.com/twitter/typeahead.js/pull/839) -- Add `tt-highlight` class to highlighted text. [#833](https://github.com/twitter/typeahead.js/pull/833) -- Handle non-string types that are passed to `jQuery#typeahead('val', val)`. [#881](https://github.com/twitter/typeahead.js/pull/881) - -### 0.10.2 March 10, 2014 - -- Prevent flickering of dropdown menu when requesting remote suggestions. [#718](https://github.com/twitter/typeahead.js/pull/718) -- Reduce hint flickering. [#754](https://github.com/twitter/typeahead.js/pull/754) -- Added `Bloodhound#{clear, clearPrefetchCache, clearRemoteCache}` and made it - possible to reinitialize Bloodhound instances. [#703](https://github.com/twitter/typeahead.js/pull/703) -- Invoke `local` function during initialization. [#687](https://github.com/twitter/typeahead.js/pull/687) -- In addition to HTML strings, templates can now return DOM nodes. [#742](https://github.com/twitter/typeahead.js/pull/742) -- Prevent `jQuery#typeahead('val', val)` from opening dropdown menus of - non-active typeaheads. [#646](https://github.com/twitter/typeahead.js/pull/646) -- Fix bug in IE that resulted in dropdown menus with overflow being closed - when clicking on the scrollbar. [#705](https://github.com/twitter/typeahead.js/pull/705) -- Only show dropdown menu if `minLength` is satisfied. [#710](https://github.com/twitter/typeahead.js/pull/710) - -### 0.10.1 February 9, 2014 - -**Hotfix** - -- Fixed bug that prevented some ajax configs from being respected. [#630](https://github.com/twitter/typeahead.js/pull/630) -- Event delegation on suggestion clicks is no longer broken. [#118](https://github.com/twitter/typeahead.js/pull/118) -- Ensure dataset names are valid class name suffixes. [#610](https://github.com/twitter/typeahead.js/pull/610) -- Added support for `displayKey` to be a function. [#633](https://github.com/twitter/typeahead.js/pull/633) -- `jQuery#typeahead('val')` now mirrors `jQuery#val()`. [#659](https://github.com/twitter/typeahead.js/pull/659) -- Datasets can now be passed to jQuery plugin as an array. [#664](https://github.com/twitter/typeahead.js/pull/664) -- Added a `noConflict` method to the jQuery plugin. [#612](https://github.com/twitter/typeahead.js/pull/612) -- Bloodhound's `local` property can now be a function. [#485](https://github.com/twitter/typeahead.js/pull/485) - -### 0.10.0 February 2, 2014 - -**Introducting Bloodhound** - -This release was almost a complete rewrite of typeahead.js and will hopefully -lay the foundation for the 1.0.0 release. It's impossible to enumerate all of -the issues that were fixed. If you want to get an idea of what issues 0.10.0 -resolved, take a look at the closed issues in the [0.10.0 milestone](https://github.com/twitter/typeahead.js/issues?milestone=8&page=1&state=closed). - -The most important change in 0.10.0 is that typeahead.js was broken up into 2 -individual components: Bloodhound and jQuery#typeahead. Bloodhound is an -feature-rich suggestion engine. jQuery#typeahead is a jQuery plugin that turns -input controls into typeaheads. - -It's impossible to write a typeahead library that supports every use-case out -of the box – that was the main motivation behind decomposing typeahead.js. -Previously, some prospective typeahead.js users were unable to use the library -because either the suggestion engine or the typeahead UI did not meet their -requirements. In those cases, they were either forced to fork typeahead.js and -make the necessary modifications or they had to give up on using typeahead.js -entirely. Now they have the option of swapping out the component that doesn't -work for them with a custom implementation. - -### 0.9.3 June 24, 2013 - -- Ensure cursor visibility in menus with overflow. [#209](https://github.com/twitter/typeahead.js/pull/209) -- Fixed bug that led to the menu staying open when it should have been closed. [#260](https://github.com/twitter/typeahead.js/pull/260) -- Private browsing in Safari no longer breaks prefetch. [#270](https://github.com/twitter/typeahead.js/pull/270) -- Pressing tab while a suggestion is highlighted now results in a selection. [#266](https://github.com/twitter/typeahead.js/pull/266) -- Dataset name is now passed as an argument for typeahead:selected event. [#207](https://github.com/twitter/typeahead.js/pull/207) - -### 0.9.2 April 14, 2013 - -- Prefetch usage no longer breaks when cookies are disabled. [#190](https://github.com/twitter/typeahead.js/pull/190) -- Precompiled templates are now wrapped in the appropriate DOM element. [#172](https://github.com/twitter/typeahead.js/pull/172) - -### 0.9.1 April 1, 2013 - -- Multiple requests no longer get sent for a query when datasets share a remote source. [#152](https://github.com/twitter/typeahead.js/pull/152) -- Datasets now support precompiled templates. [#137](https://github.com/twitter/typeahead.js/pull/137) -- Cached remote suggestions now get rendered immediately. [#156](https://github.com/twitter/typeahead.js/pull/156) -- Added typeahead:autocompleted event. [#132](https://github.com/twitter/typeahead.js/pull/132) -- Added a plugin method for programmatically setting the query. Experimental. [#159](https://github.com/twitter/typeahead.js/pull/159) -- Added minLength option for datasets. Experimental. [#131](https://github.com/twitter/typeahead.js/pull/131) -- Prefetch objects now support thumbprint option. Experimental. [#157](https://github.com/twitter/typeahead.js/pull/157) - -### 0.9.0 March 24, 2013 - -**Custom events, no more typeahead.css, and an improved API** - -- Implemented the triggering of custom events. [#106](https://github.com/twitter/typeahead.js/pull/106) -- Got rid of typeahead.css and now apply styling through JavaScript. [#15](https://github.com/twitter/typeahead.js/pull/15) -- Made the API more flexible and addressed a handful of remote issues by rewriting the transport component. [#25](https://github.com/twitter/typeahead.js/pull/81) -- Added support for dataset headers and footers. [#81](https://github.com/twitter/typeahead.js/pull/81) -- No longer cache unnamed datasets. [#116](https://github.com/twitter/typeahead.js/pull/116) -- Made the key name of the value property configurable. [#115](https://github.com/twitter/typeahead.js/pull/115) -- Input values set before initialization of typeaheads are now respected. [#109](https://github.com/twitter/typeahead.js/pull/109) -- Fixed an input value/hint casing bug. [#108](https://github.com/twitter/typeahead.js/pull/108) - -### 0.8.2 March 04, 2013 - -- Fixed bug causing error to be thrown when initializing a typeahead on multiple elements. [#51](https://github.com/twitter/typeahead.js/pull/51) -- Tokens with falsy values are now filtered out – was causing wonky behavior. [#75](https://github.com/twitter/typeahead.js/pull/75) -- No longer making remote requests for blank queries. [#74](https://github.com/twitter/typeahead.js/pull/74) -- Datums with regex characters in their value no longer cause errors. [#77](https://github.com/twitter/typeahead.js/pull/77) -- Now compatible with the Closure Compiler. [#48](https://github.com/twitter/typeahead.js/pull/48) -- Reference to jQuery is now obtained through window.jQuery, not window.$. [#47](https://github.com/twitter/typeahead.js/pull/47) -- Added a plugin method for destroying typeaheads. Won't be documented until v0.9 and might change before then. [#59](https://github.com/twitter/typeahead.js/pull/59) - -### 0.8.1 February 25, 2013 - -- Fixed bug preventing local and prefetch from being used together. [#39](https://github.com/twitter/typeahead.js/pull/39) -- No longer prevent default browser behavior when up or down arrow is pressed with a modifier. [#6](https://github.com/twitter/typeahead.js/pull/6) -- Hint is hidden when user entered query is wider than the input. [#26](https://github.com/twitter/typeahead.js/pull/26) -- Data stored in localStorage now expires properly. [#34](https://github.com/twitter/typeahead.js/pull/34) -- Normalized search tokens and fixed query tokenization. [#38](https://github.com/twitter/typeahead.js/pull/38) -- Remote suggestions now are appended, not prepended to suggestions list. [#40](https://github.com/twitter/typeahead.js/pull/40) -- Fixed some typos through the codebase. [#3](https://github.com/twitter/typeahead.js/pull/3) - -### 0.8.0 February 19, 2013 - -**Initial public release** - -- Prefetch and search data locally insanely fast. -- Search hard-coded, prefetched, and/or remote data. -- Hinting. -- RTL/IME/international support. -- Search multiple datasets. -- Share datasets (and caching) between multiple inputs. -- And much, much more... diff --git a/composer.json b/composer.json deleted file mode 100644 index 2239a7d83b..0000000000 --- a/composer.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "corejavascript/typeahead.js", - "description": "fast and fully-featured autocomplete library", - "keywords": ["typeahead", "autocomplete"], - "homepage": "https://typeahead.js.org/", - "authors": [ - { - "name": "Twitter Inc.", - "homepage": "https://twitter.com/twitteross" - }, - { - "name": "Jake Harding", - "homepage": "https://github.com/jharding" - } - ], - "support": { - "issues": "https://github.com/corejavascript/typeahead.js/issues" - }, - "license": "MIT" -} diff --git a/contributing.md b/contributing.md deleted file mode 100644 index 884cab8466..0000000000 --- a/contributing.md +++ /dev/null @@ -1,125 +0,0 @@ -Contributing to typeahead.js -============================ - -*These contributing guidelines were proudly stolen from the -[Flight](https://github.com/flightjs/flight) project* - -Project Status --------------- -The maintainers of this project welcome Pull Requests but, due to a lack of -time, new major feature requests are unlikely to be taken on. - -Looking to contribute something to typeahead.js? Here's how you can help. - -Bugs Reports ------------- - -A bug is a _demonstrable problem_ that is caused by the code in the -repository. Good bug reports are extremely helpful – thank you! - -Guidelines for bug reports: - -1. **Use the GitHub issue search** — check if the issue has already been - reported. - -2. **Check if the issue has been fixed** — try to reproduce it using the - latest `master` or integration branch in the repository. - -3. **Isolate the problem** — ideally create a reduced test - case and a live example. - -4. Please try to be as detailed as possible in your report. Include specific - information about the environment – operating system and version, browser - and version, version of typeahead.js – and steps required to reproduce the - issue. - -Feature Requests & Contribution Enquiries ------------------------------------------ - -Feature requests are welcome. But take a moment to find out whether your idea -fits with the scope and aims of the project. It's up to *you* to make a strong -case for the inclusion of your feature. Please provide as much detail and -context as possible. - -Contribution enquiries should take place before any significant pull request, -otherwise you risk spending a lot of time working on something that we might -have good reasons for rejecting. - -Pull Requests -------------- - -Good pull requests – patches, improvements, new features – are a fantastic -help. They should remain focused in scope and avoid containing unrelated -commits. - -Make sure to adhere to the coding conventions used throughout the codebase -(indentation, accurate comments, etc.) and any other requirements (such as test -coverage). - -Please follow this process; it's the best way to get your work included in the -project: - -1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork, - and configure the remotes: - - ```bash - # Clone your fork of the repo into the current directory - git clone https://github.com//typeahead.js - # Navigate to the newly cloned directory - cd - # Assign the original repo to a remote called "upstream" - git remote add upstream git://github.com/twitter/typeahead.js - ``` - -2. If you cloned a while ago, get the latest changes from upstream: - - ```bash - git checkout master - git pull upstream master - ``` - -3. Install the dependencies (you must have Node.js and [Bower](http://bower.io) - installed), and create a new topic branch (off the main project development - branch) to contain your feature, change, or fix: - - ```bash - npm install - bower install - git checkout -b - ``` - -4. Make sure to update, or add to the tests when appropriate. Patches and - features will not be accepted without tests. Run `npm test` to check that - all tests pass after you've made changes. - -5. Commit your changes in logical chunks. Provide clear and explanatory commit - messages. Use Git's [interactive rebase](https://help.github.com/articles/interactive-rebase) feature to tidy up - your commits before making them public. - -6. Locally merge (or rebase) the upstream development branch into your topic branch: - - ```bash - git pull [--rebase] upstream master - ``` - -7. Push your topic branch up to your fork: - - ```bash - git push origin - ``` - -8. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) - with a clear title and description. - -9. If you are asked to amend your changes before they can be merged in, please - use `git commit --amend` (or rebasing for multi-commit Pull Requests) and - force push to your remote feature branch. You may also be asked to squash - commits. - -License -------- - -By contributing your code, - -You agree to license your contribution under the terms of the MIT License -https://github.com/twitter/typeahead.js/blob/master/LICENSE diff --git a/css/bootstrap.min.css b/css/bootstrap.min.css new file mode 100644 index 0000000000..fd5ed73407 --- /dev/null +++ b/css/bootstrap.min.css @@ -0,0 +1,9 @@ +/*! + * Bootstrap v2.3.0 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{width:auto\9;height:auto;max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]: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}@page{margin:.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#fff}a{color:#08c;text-decoration:none}a:hover,a:focus{color:#005580;text-decoration:underline}.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1)}.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.offset2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%}.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%}.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%}.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%}.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%}.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%}.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%}.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%}.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%}.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%}.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%}.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%}.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%}.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%}.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%}.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%}.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%}.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%}.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%}.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%}.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%}.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%}.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%}.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%}.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%}.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%}.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%}.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%}.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%}.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%}.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%}.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%}.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%}.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%}.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%}[class*="span"].hide,.row-fluid [class*="span"].hide{display:none}[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right}.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;line-height:0;content:""}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;line-height:0;content:""}.container-fluid:after{clear:both}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:bold}em{font-style:italic}cite{font-style:normal}.muted{color:#999}a.muted:hover,a.muted:focus{color:#808080}.text-warning{color:#c09853}a.text-warning:hover,a.text-warning:focus{color:#a47e3c}.text-error{color:#b94a48}a.text-error:hover,a.text-error:focus{color:#953b39}.text-info{color:#3a87ad}a.text-info:hover,a.text-info:focus{color:#2d6987}.text-success{color:#468847}a.text-success:hover,a.text-success:focus{color:#356635}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{line-height:40px}h1{font-size:38.5px}h2{font-size:31.5px}h3{font-size:24.5px}h4{font-size:17.5px}h5{font-size:14px}h6{font-size:11.9px}h1 small{font-size:24.5px}h2 small{font-size:17.5px}h3 small{font-size:14px}h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee}ul,ol{padding:0;margin:0 0 10px 25px}ul ul,ul ol,ol ol,ol ul{margin-bottom:0}li{line-height:20px}ul.unstyled,ol.unstyled{margin-left:0;list-style:none}ul.inline,ol.inline{margin-left:0;list-style:none}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;padding-right:5px;padding-left:5px;*zoom:1}dl{margin-bottom:20px}dt,dd{line-height:20px}dt{font-weight:bold}dd{margin-left:10px}.dl-horizontal{*zoom:1}.dl-horizontal:before,.dl-horizontal:after{display:table;line-height:0;content:""}.dl-horizontal:after{clear:both}.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25}blockquote small{display:block;line-height:20px;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:20px}code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}code{padding:2px 4px;color:#d14;white-space:nowrap;background-color:#f7f7f9;border:1px solid #e1e1e8}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}form{margin:0 0 20px}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5}legend small{font-size:15px;color:#999}label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px}input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}label{display:block;margin-bottom:5px}select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555;vertical-align:middle;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}input,textarea,.uneditable-input{width:206px}textarea{height:auto}textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-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 linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;*margin-top:0;line-height:normal}input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto}select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px}select{width:220px;background-color:#fff;border:1px solid #ccc}select[multiple],select[size]{height:auto}select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.uneditable-input,.uneditable-textarea{color:#999;cursor:not-allowed;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025)}.uneditable-input{overflow:hidden;white-space:nowrap}.uneditable-textarea{width:auto;height:auto}input:-moz-placeholder,textarea:-moz-placeholder{color:#999}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}.radio,.checkbox{min-height:20px;padding-left:20px}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px}.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}.input-mini{width:60px}.input-small{width:90px}.input-medium{width:150px}.input-large{width:210px}.input-xlarge{width:270px}.input-xxlarge{width:530px}input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0}.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:926px}input.span11,textarea.span11,.uneditable-input.span11{width:846px}input.span10,textarea.span10,.uneditable-input.span10{width:766px}input.span9,textarea.span9,.uneditable-input.span9{width:686px}input.span8,textarea.span8,.uneditable-input.span8{width:606px}input.span7,textarea.span7,.uneditable-input.span7{width:526px}input.span6,textarea.span6,.uneditable-input.span6{width:446px}input.span5,textarea.span5,.uneditable-input.span5{width:366px}input.span4,textarea.span4,.uneditable-input.span4{width:286px}input.span3,textarea.span3,.uneditable-input.span3{width:206px}input.span2,textarea.span2,.uneditable-input.span2{width:126px}input.span1,textarea.span1,.uneditable-input.span1{width:46px}.controls-row{*zoom:1}.controls-row:before,.controls-row:after{display:table;line-height:0;content:""}.controls-row:after{clear:both}.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left}.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent}.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853}.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853}.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48}.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48}.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847}.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847}.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847}.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad}.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad}.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3}.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1}.form-actions:before,.form-actions:after{display:table;line-height:0;content:""}.form-actions:after{clear:both}.help-block,.help-inline{color:#595959}.help-block{display:block;margin-bottom:10px}.help-inline{display:inline-block;*display:inline;padding-left:5px;vertical-align:middle;*zoom:1}.input-append,.input-prepend{display:inline-block;margin-bottom:10px;font-size:0;white-space:nowrap;vertical-align:middle}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2}.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc}.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546}.input-prepend .add-on,.input-prepend .btn{margin-right:-1px}.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px}.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.input-prepend.input-append .btn-group:first-child{margin-left:0}input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0}.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px}.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;margin-bottom:0;vertical-align:middle;*zoom:1}.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none}.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block}.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0}.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0}.control-group{margin-bottom:10px}legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.form-horizontal .control-group{margin-bottom:20px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;line-height:0;content:""}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:180px}.form-horizontal .help-block{margin-bottom:0}.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px}.form-horizontal .form-actions{padding-left:180px}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}.table{width:100%;margin-bottom:20px}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.table th{font-weight:bold}.table thead th{vertical-align:bottom}.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.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 th,.table-condensed td{padding:4px 5px}.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd}.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0}.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px}.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-moz-border-radius-bottomleft:0}.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomright:0}.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5}table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0}.table td.span1,.table th.span1{float:none;width:44px;margin-left:0}.table td.span2,.table th.span2{float:none;width:124px;margin-left:0}.table td.span3,.table th.span3{float:none;width:204px;margin-left:0}.table td.span4,.table th.span4{float:none;width:284px;margin-left:0}.table td.span5,.table th.span5{float:none;width:364px;margin-left:0}.table td.span6,.table th.span6{float:none;width:444px;margin-left:0}.table td.span7,.table th.span7{float:none;width:524px;margin-left:0}.table td.span8,.table th.span8{float:none;width:604px;margin-left:0}.table td.span9,.table th.span9{float:none;width:684px;margin-left:0}.table td.span10,.table th.span10{float:none;width:764px;margin-left:0}.table td.span11,.table th.span11{float:none;width:844px;margin-left:0}.table td.span12,.table th.span12{float:none;width:924px;margin-left:0}.table tbody tr.success>td{background-color:#dff0d8}.table tbody tr.error>td{background-color:#f2dede}.table tbody tr.warning>td{background-color:#fcf8e3}.table tbody tr.info>td{background-color:#d9edf7}.table-hover tbody tr.success:hover>td{background-color:#d0e9c6}.table-hover tbody tr.error:hover>td{background-color:#ebcccc}.table-hover tbody tr.warning:hover>td{background-color:#faf2cc}.table-hover tbody tr.info:hover>td{background-color:#c4e3f3}[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;margin-top:1px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png")}.icon-glass{background-position:0 0}.icon-music{background-position:-24px 0}.icon-search{background-position:-48px 0}.icon-envelope{background-position:-72px 0}.icon-heart{background-position:-96px 0}.icon-star{background-position:-120px 0}.icon-star-empty{background-position:-144px 0}.icon-user{background-position:-168px 0}.icon-film{background-position:-192px 0}.icon-th-large{background-position:-216px 0}.icon-th{background-position:-240px 0}.icon-th-list{background-position:-264px 0}.icon-ok{background-position:-288px 0}.icon-remove{background-position:-312px 0}.icon-zoom-in{background-position:-336px 0}.icon-zoom-out{background-position:-360px 0}.icon-off{background-position:-384px 0}.icon-signal{background-position:-408px 0}.icon-cog{background-position:-432px 0}.icon-trash{background-position:-456px 0}.icon-home{background-position:0 -24px}.icon-file{background-position:-24px -24px}.icon-time{background-position:-48px -24px}.icon-road{background-position:-72px -24px}.icon-download-alt{background-position:-96px -24px}.icon-download{background-position:-120px -24px}.icon-upload{background-position:-144px -24px}.icon-inbox{background-position:-168px -24px}.icon-play-circle{background-position:-192px -24px}.icon-repeat{background-position:-216px -24px}.icon-refresh{background-position:-240px -24px}.icon-list-alt{background-position:-264px -24px}.icon-lock{background-position:-287px -24px}.icon-flag{background-position:-312px -24px}.icon-headphones{background-position:-336px -24px}.icon-volume-off{background-position:-360px -24px}.icon-volume-down{background-position:-384px -24px}.icon-volume-up{background-position:-408px -24px}.icon-qrcode{background-position:-432px -24px}.icon-barcode{background-position:-456px -24px}.icon-tag{background-position:0 -48px}.icon-tags{background-position:-25px -48px}.icon-book{background-position:-48px -48px}.icon-bookmark{background-position:-72px -48px}.icon-print{background-position:-96px -48px}.icon-camera{background-position:-120px -48px}.icon-font{background-position:-144px -48px}.icon-bold{background-position:-167px -48px}.icon-italic{background-position:-192px -48px}.icon-text-height{background-position:-216px -48px}.icon-text-width{background-position:-240px -48px}.icon-align-left{background-position:-264px -48px}.icon-align-center{background-position:-288px -48px}.icon-align-right{background-position:-312px -48px}.icon-align-justify{background-position:-336px -48px}.icon-list{background-position:-360px -48px}.icon-indent-left{background-position:-384px -48px}.icon-indent-right{background-position:-408px -48px}.icon-facetime-video{background-position:-432px -48px}.icon-picture{background-position:-456px -48px}.icon-pencil{background-position:0 -72px}.icon-map-marker{background-position:-24px -72px}.icon-adjust{background-position:-48px -72px}.icon-tint{background-position:-72px -72px}.icon-edit{background-position:-96px -72px}.icon-share{background-position:-120px -72px}.icon-check{background-position:-144px -72px}.icon-move{background-position:-168px -72px}.icon-step-backward{background-position:-192px -72px}.icon-fast-backward{background-position:-216px -72px}.icon-backward{background-position:-240px -72px}.icon-play{background-position:-264px -72px}.icon-pause{background-position:-288px -72px}.icon-stop{background-position:-312px -72px}.icon-forward{background-position:-336px -72px}.icon-fast-forward{background-position:-360px -72px}.icon-step-forward{background-position:-384px -72px}.icon-eject{background-position:-408px -72px}.icon-chevron-left{background-position:-432px -72px}.icon-chevron-right{background-position:-456px -72px}.icon-plus-sign{background-position:0 -96px}.icon-minus-sign{background-position:-24px -96px}.icon-remove-sign{background-position:-48px -96px}.icon-ok-sign{background-position:-72px -96px}.icon-question-sign{background-position:-96px -96px}.icon-info-sign{background-position:-120px -96px}.icon-screenshot{background-position:-144px -96px}.icon-remove-circle{background-position:-168px -96px}.icon-ok-circle{background-position:-192px -96px}.icon-ban-circle{background-position:-216px -96px}.icon-arrow-left{background-position:-240px -96px}.icon-arrow-right{background-position:-264px -96px}.icon-arrow-up{background-position:-289px -96px}.icon-arrow-down{background-position:-312px -96px}.icon-share-alt{background-position:-336px -96px}.icon-resize-full{background-position:-360px -96px}.icon-resize-small{background-position:-384px -96px}.icon-plus{background-position:-408px -96px}.icon-minus{background-position:-433px -96px}.icon-asterisk{background-position:-456px -96px}.icon-exclamation-sign{background-position:0 -120px}.icon-gift{background-position:-24px -120px}.icon-leaf{background-position:-48px -120px}.icon-fire{background-position:-72px -120px}.icon-eye-open{background-position:-96px -120px}.icon-eye-close{background-position:-120px -120px}.icon-warning-sign{background-position:-144px -120px}.icon-plane{background-position:-168px -120px}.icon-calendar{background-position:-192px -120px}.icon-random{width:16px;background-position:-216px -120px}.icon-comment{background-position:-240px -120px}.icon-magnet{background-position:-264px -120px}.icon-chevron-up{background-position:-288px -120px}.icon-chevron-down{background-position:-313px -119px}.icon-retweet{background-position:-336px -120px}.icon-shopping-cart{background-position:-360px -120px}.icon-folder-close{width:16px;background-position:-384px -120px}.icon-folder-open{width:16px;background-position:-408px -120px}.icon-resize-vertical{background-position:-432px -119px}.icon-resize-horizontal{background-position:-456px -118px}.icon-hdd{background-position:0 -144px}.icon-bullhorn{background-position:-24px -144px}.icon-bell{background-position:-48px -144px}.icon-certificate{background-position:-72px -144px}.icon-thumbs-up{background-position:-96px -144px}.icon-thumbs-down{background-position:-120px -144px}.icon-hand-right{background-position:-144px -144px}.icon-hand-left{background-position:-168px -144px}.icon-hand-up{background-position:-192px -144px}.icon-hand-down{background-position:-216px -144px}.icon-circle-arrow-right{background-position:-240px -144px}.icon-circle-arrow-left{background-position:-264px -144px}.icon-circle-arrow-up{background-position:-288px -144px}.icon-circle-arrow-down{background-position:-312px -144px}.icon-globe{background-position:-336px -144px}.icon-wrench{background-position:-360px -144px}.icon-tasks{background-position:-384px -144px}.icon-filter{background-position:-408px -144px}.icon-briefcase{background-position:-432px -144px}.icon-fullscreen{background-position:-456px -144px}.dropup,.dropdown{position:relative}.dropdown-toggle{*margin-bottom:-3px}.dropdown-toggle:active,.open .dropdown-toggle{outline:0}.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.dropdown .caret{margin-top:8px;margin-left:2px}.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;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;outline:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open{*z-index:1000}.open>.dropdown-menu{display:block}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}.dropdown-submenu>a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;border-color:transparent;border-left-color:#ccc;border-style:solid;border-width:5px 0 5px 5px;content:" "}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown .dropdown-menu .nav-header{padding-right:20px;padding-left:20px}.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-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-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto}.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.btn{display:inline-block;*display:inline;padding:4px 12px;margin-bottom:0;*margin-left:.3em;font-size:14px;line-height:20px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;cursor:pointer;background-color:#f5f5f5;*background-color:#e6e6e6;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ccc;*border:0;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);*zoom:1;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9}.btn:active,.btn.active{background-color:#ccc \9}.btn:first-child{*margin-left:0}.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px}.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0}.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px}.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;*background-color:#04c;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3}.btn-primary:active,.btn-primary.active{background-color:#039 \9}.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;*background-color:#f89406;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505}.btn-warning:active,.btn-warning.active{background-color:#c67605 \9}.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;*background-color:#bd362f;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a}.btn-danger:active,.btn-danger.active{background-color:#942a25 \9}.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;*background-color:#51a351;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249}.btn-success:active,.btn-success.active{background-color:#408140 \9}.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;*background-color:#2f96b4;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);background-repeat:repeat-x;border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2f96b4',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0}.btn-info:active,.btn-info.active{background-color:#24748c \9}.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;*background-color:#222;background-image:-moz-linear-gradient(top,#444,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));background-image:-webkit-linear-gradient(top,#444,#222);background-image:-o-linear-gradient(top,#444,#222);background-image:linear-gradient(to bottom,#444,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515}.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9}button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0}button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px}button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px}button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px}.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{color:#08c;cursor:pointer;border-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none}.btn-group{position:relative;display:inline-block;*display:inline;*margin-left:.3em;font-size:0;white-space:nowrap;vertical-align:middle;*zoom:1}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{margin-top:10px;margin-bottom:10px;font-size:0}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px}.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group>.btn+.btn{margin-left:-1px}.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px}.btn-group>.btn-mini{font-size:10.5px}.btn-group>.btn-small{font-size:11.9px}.btn-group>.btn-large{font-size:17.5px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{*padding-top:5px;padding-right:8px;*padding-bottom:5px;padding-left:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn-group>.btn-mini+.dropdown-toggle{*padding-top:2px;padding-right:5px;*padding-bottom:2px;padding-left:5px}.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}.btn-group>.btn-large+.dropdown-toggle{*padding-top:7px;padding-right:12px;*padding-bottom:7px;padding-left:12px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c}.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}.btn .caret{margin-top:8px;margin-left:0}.btn-large .caret{margin-top:6px}.btn-large .caret{border-top-width:5px;border-right-width:5px;border-left-width:5px}.btn-mini .caret,.btn-small .caret{margin-top:8px}.dropup .btn-large .caret{border-bottom-width:5px}.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff}.btn-group-vertical{display:inline-block;*display:inline;*zoom:1}.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical>.btn+.btn{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0}.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.alert,.alert h4{color:#c09853}.alert h4{margin:0}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-success h4{color:#468847}.alert-danger,.alert-error{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.alert-danger h4,.alert-error h4{color:#b94a48}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-info h4{color:#3a87ad}.alert-block{padding-top:14px;padding-bottom:14px}.alert-block>p,.alert-block>ul{margin-bottom:0}.alert-block p+p{margin-top:5px}.nav{margin-bottom:20px;margin-left:0;list-style:none}.nav>li>a{display:block}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li>a>img{max-width:none}.nav>.pull-right{float:right}.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase}.nav li+.nav-header{margin-top:9px}.nav-list{padding-right:15px;padding-left:15px;margin-bottom:0}.nav-list>li>a,.nav-list .nav-header{margin-right:-15px;margin-left:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.nav-list>li>a{padding:3px 15px}.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c}.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px}.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;line-height:0;content:""}.nav-tabs:after,.nav-pills:after{clear:both}.nav-tabs>li,.nav-pills>li{float:left}.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{margin-bottom:-1px}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd}.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c}.nav-stacked>li{float:none}.nav-stacked>li>a{margin-right:0}.nav-tabs.nav-stacked{border-bottom:0}.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-topleft:4px}.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-moz-border-radius-bottomleft:4px}.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{z-index:2;border-color:#ddd}.nav-pills.nav-stacked>li>a{margin-bottom:3px}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px}.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px}.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.nav .dropdown-toggle .caret{margin-top:6px;border-top-color:#08c;border-bottom-color:#08c}.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580}.nav-tabs .dropdown-toggle .caret{margin-top:8px}.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer}.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999}.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)}.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999}.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;line-height:0;content:""}.tabbable:after{clear:both}.tab-content{overflow:auto}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:#ddd;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff}.nav>.disabled>a{color:#999}.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent}.navbar{*position:relative;*z-index:2;margin-bottom:20px;overflow:visible}.navbar-inner{min-height:40px;padding-right:20px;padding-left:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,#fff,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fff,#f2f2f2);background-image:-o-linear-gradient(top,#fff,#f2f2f2);background-image:linear-gradient(to bottom,#fff,#f2f2f2);background-repeat:repeat-x;border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff2f2f2',GradientType=0);*zoom:1;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065)}.navbar-inner:before,.navbar-inner:after{display:table;line-height:0;content:""}.navbar-inner:after{clear:both}.navbar .container{width:auto}.nav-collapse.collapse{height:auto;overflow:visible}.navbar .brand{display:block;float:left;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none}.navbar-text{margin-bottom:0;line-height:40px;color:#777}.navbar-link{color:#777}.navbar-link:hover,.navbar-link:focus{color:#333}.navbar .divider-vertical{height:40px;margin:0 9px;border-right:1px solid #fff;border-left:1px solid #f2f2f2}.navbar .btn,.navbar .btn-group{margin-top:5px}.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0}.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;line-height:0;content:""}.navbar-form:after{clear:both}.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px}.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0}.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px}.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0}.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0}.navbar-search .search-query{padding:4px 14px;margin-bottom:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.navbar-static-top{position:static;margin-bottom:0}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px}.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-right:0;padding-left:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.navbar-fixed-top{top:0}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1)}.navbar-fixed-bottom{bottom:0}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1)}.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}.navbar .nav.pull-right{float:right;margin-right:0}.navbar .nav>li{float:left}.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff}.navbar .nav .dropdown-toggle .caret{margin-top:8px}.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{color:#333;text-decoration:none;background-color:transparent}.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125)}.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-right:5px;margin-left:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;*background-color:#e5e5e5;background-image:-moz-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));background-image:-webkit-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-o-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:linear-gradient(to bottom,#f2f2f2,#e5e5e5);background-repeat:repeat-x;border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2',endColorstr='#ffe5e5e5',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9}.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9}.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)}.btn-navbar .icon-bar+.icon-bar{margin-top:3px}.navbar .nav>li>.dropdown-menu:before{position:absolute;top:-7px;left:9px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:''}.navbar .nav>li>.dropdown-menu:after{position:absolute;top:-6px;left:10px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:''}.navbar-fixed-bottom .nav>li>.dropdown-menu:before{top:auto;bottom:-7px;border-top:7px solid #ccc;border-bottom:0;border-top-color:rgba(0,0,0,0.2)}.navbar-fixed-bottom .nav>li>.dropdown-menu:after{top:auto;bottom:-6px;border-top:6px solid #fff;border-bottom:0}.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#555;background-color:#e5e5e5}.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777}.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555}.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{right:12px;left:auto}.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{right:13px;left:auto}.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top,#222,#111);background-image:-webkit-gradient(linear,0 0,0 100%,from(#222),to(#111));background-image:-webkit-linear-gradient(top,#222,#111);background-image:-o-linear-gradient(top,#222,#111);background-image:linear-gradient(to bottom,#222,#111);background-repeat:repeat-x;border-color:#252525;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff111111',GradientType=0)}.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff}.navbar-inverse .brand{color:#999}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff}.navbar-inverse .divider-vertical{border-right-color:#222;border-left-color:#111}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background-color:#111}.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc}.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;outline:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15)}.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;*background-color:#040404;background-image:-moz-linear-gradient(top,#151515,#040404);background-image:-webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));background-image:-webkit-linear-gradient(top,#151515,#040404);background-image:-o-linear-gradient(top,#151515,#040404);background-image:linear-gradient(to bottom,#151515,#040404);background-repeat:repeat-x;border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515',endColorstr='#ff040404',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000}.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9}.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.breadcrumb>li{display:inline-block;*display:inline;text-shadow:0 1px 0 #fff;*zoom:1}.breadcrumb>li>.divider{padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{margin:20px 0}.pagination ul{display:inline-block;*display:inline;margin-bottom:0;margin-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*zoom:1;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.pagination ul>li{display:inline}.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0}.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5}.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default}.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;cursor:default;background-color:transparent}.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.pagination-centered{text-align:center}.pagination-right{text-align:right}.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px}.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px}.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px}.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px}.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px}.pager{margin:20px 0;text-align:center;list-style:none;*zoom:1}.pager:before,.pager:after{display:table;line-height:0;content:""}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5}.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:#999;cursor:default;background-color:#fff}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;outline:0;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{top:-25%;-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out}.modal.fade.in{top:10%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-header h3{margin:0;line-height:30px}.modal-body{position:relative;max-height:400px;padding:15px;overflow-y:auto}.modal-form{margin-bottom:0}.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;*zoom:1;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.modal-footer:before,.modal-footer:after{display:table;line-height:0;content:""}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.tooltip{position:absolute;z-index:1030;display:block;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.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-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.popover-title:empty{display:none}.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{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0}.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;line-height:0;content:""}.thumbnails:after{clear:both}.row-fluid .thumbnails{margin-left:0}.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px}.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)}.thumbnail>img{display:block;max-width:100%;margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px;color:#555}.media,.media-body{overflow:hidden;*overflow:visible;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{margin-left:0;list-style:none}.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);white-space:nowrap;vertical-align:baseline;background-color:#999}.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding-right:9px;padding-left:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}.label:empty,.badge:empty{display:none}a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.label-important,.badge-important{background-color:#b94a48}.label-important[href],.badge-important[href]{background-color:#953b39}.label-warning,.badge-warning{background-color:#f89406}.label-warning[href],.badge-warning[href]{background-color:#c67605}.label-success,.badge-success{background-color:#468847}.label-success[href],.badge-success[href]{background-color:#356635}.label-info,.badge-info{background-color:#3a87ad}.label-info[href],.badge-info[href]{background-color:#2d6987}.label-inverse,.badge-inverse{background-color:#333}.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a}.btn .label,.btn .badge{position:relative;top:-1px}.btn-mini .label,.btn-mini .badge{top:0}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9);background-repeat:repeat-x;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#fff9f9f9',GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-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;color:#fff;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(to bottom,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf',endColorstr='#ff0480be',GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-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-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15)}.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));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:-moz-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);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);background-image:linear-gradient(to bottom,#ee5f5b,#c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffc43c35',GradientType=0)}.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));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:-moz-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-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top,#62c462,#57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));background-image:-webkit-linear-gradient(top,#62c462,#57a957);background-image:-o-linear-gradient(top,#62c462,#57a957);background-image:linear-gradient(to bottom,#62c462,#57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff57a957',GradientType=0)}.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));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:-moz-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-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top,#5bc0de,#339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));background-image:-webkit-linear-gradient(top,#5bc0de,#339bb9);background-image:-o-linear-gradient(top,#5bc0de,#339bb9);background-image:linear-gradient(to bottom,#5bc0de,#339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff339bb9',GradientType=0)}.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));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:-moz-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-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0)}.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));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:-moz-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)}.accordion{margin-bottom:20px}.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.accordion-heading{border-bottom:0}.accordion-heading .accordion-toggle{display:block;padding:8px 15px}.accordion-toggle{cursor:pointer}.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5}.carousel{position:relative;margin-bottom:20px;line-height:1}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1}.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:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{right:15px;left:auto}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:0;bottom:0;left:0;padding:15px;background:#333;background:rgba(0,0,0,0.75)}.carousel-caption h4,.carousel-caption p{line-height:20px;color:#fff}.carousel-caption h4{margin:0 0 5px}.carousel-caption p{margin-bottom:0}.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;color:inherit}.hero-unit li{line-height:30px}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed} diff --git a/css/examples.css b/css/examples.css new file mode 100644 index 0000000000..f550169c96 --- /dev/null +++ b/css/examples.css @@ -0,0 +1,171 @@ +/* scaffolding */ +/* ----------- */ + +html { + overflow-y: scroll; + *overflow-x: hidden; +} + +.container { + max-width: 750px; + margin: 0 auto; + text-align: center; +} + +.tt-menu, +.gist { + text-align: left; +} + +/* base styles */ +/* ----------- */ + +html { + font: normal normal normal 18px/1.2 "Helvetica Neue", Roboto, "Segoe UI", Calibri, sans-serif; + color: #292f33; +} + + +a { + color: #03739c; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +.table-of-contents li { + display: inline-block; + *display: inline; + zoom: 1; +} + +.table-of-contents li a { + font-size: 16px; + color: #999; +} + +p + p { + margin: 30px 0 0 0; +} + +/* site theme */ +/* ---------- */ + +.title { + margin: 20px 0 0 0; + font-size: 64px; +} + +.example { + padding: 30px 0; +} + +.example-name { + margin: 20px 0; + font-size: 32px; +} + +.demo { + position: relative; + *z-index: 1; + margin: 50px 0; +} + +.typeahead, +.tt-query, +.tt-hint { + width: 396px; + height: 30px; + padding: 8px 12px; + font-size: 24px; + line-height: 30px; + border: 2px solid #ccc; + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; + outline: none; +} + +.typeahead { + background-color: #fff; +} + +.typeahead:focus { + border: 2px solid #0097cf; +} + +.tt-query { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.tt-hint { + color: #999 +} + +.tt-menu { + width: 422px; + margin: 12px 0; + padding: 8px 0; + background-color: #fff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; + -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2); + -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2); + box-shadow: 0 5px 10px rgba(0,0,0,.2); +} + +.tt-suggestion { + padding: 3px 20px; + font-size: 18px; + line-height: 24px; +} + +.tt-suggestion:hover { + cursor: pointer; + color: #fff; + background-color: #0097cf; +} + +.tt-suggestion.tt-cursor { + color: #fff; + background-color: #0097cf; + +} + +.tt-suggestion p { + margin: 0; +} + +.gist { + font-size: 14px; +} + +/* example specific styles */ +/* ----------------------- */ + +#custom-templates .empty-message { + padding: 5px 10px; + text-align: center; +} + +#multiple-datasets .league-name { + margin: 0 20px 5px 20px; + padding: 3px 0; + border-bottom: 1px solid #ccc; +} + +#scrollable-dropdown-menu .tt-menu { + max-height: 150px; + overflow-y: auto; +} + +#rtl-support .tt-menu { + text-align: right; +} diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000000..edaf2de63e --- /dev/null +++ b/css/main.css @@ -0,0 +1,371 @@ +/* scaffolding */ +/* ----------- */ + +html, +body { + height: 100%; +} + +html { + overflow-y: scroll; + *overflow-x: hidden; +} + +.sticky-footer-wrapper { + min-height: 100%; + height: auto !important; + height: 100%; + margin: 0 auto -60px; +} + +.sticky-footer-push, +.footer { + height: 60px; +} + +.container { + max-width: 700px; + margin: 0 auto; +} + +/* base styles */ +/* ----------- */ + +html { + background-color: #f2f9ff; + font: normal normal normal 18px/1.2 "Helvetica Neue", Roboto, "Segoe UI", Calibri, sans-serif; + color: #292f33; +} + +a { + color: #03739c; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +p { + margin: 0 0 10px 0; +} + +input[type=text]::-ms-clear { + display: none; +} + +/* site theme */ +/* ---------- */ + +.masthead, +.footer { + max-width: 800px; + margin: 0 auto; + text-align: center; +} + +.twitter-logo { + width: 72px; + height: 72px; + margin: 0; + vertical-align: middle; +} + +.title { + margin: 20px 0 0 0; + font-size: 64px; +} + +.tagline { + margin: 20px 0 0 0; + font-size: 20px; + color: #444; +} + +.btn-download { + position: relative; + display: inline-block; + *display: inline; + *zoom: 1; + margin: 150px 0 0 0; + padding: 10px 20px; + color: #fff; + font: inherit; + font-size: 32px; + line-height: 38px; + text-align: center; + text-decoration: none; + text-shadow: 0 1px 1px rgba(0,0,0,.25); + white-space: nowrap; + vertical-align: middle; + cursor: pointer; + background-color: #0097cf; + background-image: -moz-linear-gradient(top, #04a2dd, #03739c); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#04a2dd), to(#03739c)); + background-image: -webkit-linear-gradient(top, #04a2dd, #03739c); + background-image: -o-linear-gradient(top, #04a2dd, #03739c); + background-image: linear-gradient(to bottom, #04a2dd, #03739c); + background-repeat: repeat-x; + border: 1px solid #024e6a; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; + -webkit-box-shadow: 0 2px 5px -2px #111; + -moz-box-shadow: 0 2px 5px -2px #111; + box-shadow: 0 2px 5px -2px #111; +} + +.btn-download:hover { + background-color: #04a2dd; + background-image: none; +} + +.btn-download:active { + background-color: #03739c; + background-image: none; +} + +.btn:hover, +.btn:focus, +.btn:active { + text-decoration: none; +} + +.btn::-moz-focus-inner { + border: 0; + padding: 0; +} + +.social { + margin: 80px 0 0 0; +} + +.social-btn { + padding: 5px 8px; +} + +.links { + margin: 10px 0 0 0; + display: block; + padding: 0; + list-style: none; +} + +.links a { + font-size: 16px; + color: #999; +} + +.footer { + font-size: 12px; +} + +.Typeahead *, +.Typeahead *:before, +.Typeahead *:after { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} + +/* Utilities */ + +.u-cf:before, +.u-cf:after { + content: " "; + display: table; +} + +.u-cf:after { + clear: both; +} + +.u-hidden { + display: none !important; +} + +.u-posRelative { + position: relative; +} + +/* Typeahead */ + +.Typeahead { + position: relative; + *z-index: 1; + width: 500px; + margin: 50px auto 0 auto; + padding: 15px; + text-align: left; + background-color: #0097cf; + background-image: -moz-linear-gradient(top, #04a2dd, #03739c); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#04a2dd), to(#03739c)); + background-image: -webkit-linear-gradient(top, #04a2dd, #03739c); + background-image: -o-linear-gradient(top, #04a2dd, #03739c); + background-image: linear-gradient(top, #04a2dd, #03739c); + background-repeat: repeat-x; + border: 1px solid #024e6a; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; + -webkit-box-shadow: 0 0 2px #111; + -moz-box-shadow: 0 0 2px #111; + box-shadow: 0 0 2px #111; +} + +.Typeahead-spinner { + position: absolute; + top: 7px; + right: 7px; + display: none; + width: 28px; + height: 28px; +} + +.Typeahead-hint, +.Typeahead-input { + width: 100%; + padding: 5px 8px; + font-size: 24px; + line-height: 30px; + border: 1px solid #024e6a; + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; +} + +.Typeahead-hint { + position: absolute; + top: 0; + left: 0; + color: #ccd6dd; + opacity: 1; +} + +.Typeahead-input { + position: relative; + background-color: transparent; + background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); + outline: none; +} + +.Typeahead-menu { + position: absolute; + top: 95%; + left: 2.5%; + z-index: 100; + display: none; + width: 95%; + margin-bottom: 20px; + overflow: hidden; + background-color: #fff; + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; + box-shadow: 0px 0px 0px 1px green; + -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2); + -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2); + box-shadow: 0 5px 10px rgba(0,0,0,.2); +} + +.Typeahead-menu.is-open { + display: block; +} + +.Typeahead-selectable { + cursor: pointer; +} + +.Typeahead-selectable + .Typeahead-selectable { + border-top: 1px solid #ccd6dd; +} + +/* ProfileCard */ + +.ProfileCard { + position: relative; + padding: 8px; +} + +.ProfileCard-avatar { + position: absolute; + top: 8px; + left: 8px; + width: 52px; + height: 52px; + border: 2px solid #ccd6dd; + border-radius: 5px; +} + +.ProfileCard:hover .ProfileCard-avatar { + border-color: #f5f8fa; +} + +.ProfileCard-details { + min-height: 60px; + padding-left: 60px; +} + +.ProfileCard-realName, +.ProfileCard-screenName { + display: inline-block; +} + +.ProfileCard-realName { + font-weight: 700; +} + +.ProfileCard-screenName { + color: #8899a6; +} + +.ProfileCard-description { + margin-top: 5px; + font-size: 14px; + line-height: 18px; +} + +.ProfileCard-stats { + float: right; + text-align: right; +} + +.ProfileCard-stat { + display: inline-block; + font-size: 12px; + line-height: 16px; + text-transform: uppercase; +} + +.ProfileCard-stat-label { + color: #8899a6; + font-weight: 500; +} + +.ProfileCard-stat + .ProfileCard-stat { + margin-left: 5px; +} + +.ProfileCard:hover, +.ProfileCard.is-active { + color: #fff; + background: #55acee; +} + +.ProfileCard:hover .ProfileCard-screenName, +.ProfileCard:hover .ProfileCard-stat-label, +.ProfileCard.is-active .ProfileCard-screenName, +.ProfileCard.is-active .ProfileCard-stat-label { + color: #fff; +} + +/* EmptyMessage */ + +.EmptyMessage { + position: relative; + padding: 10px; + font-size: 24px; + line-height: 30px; + text-align: center; + +} diff --git a/css/normalize.min.css b/css/normalize.min.css new file mode 100644 index 0000000000..0c352ba1e6 --- /dev/null +++ b/css/normalize.min.css @@ -0,0 +1 @@ +/*! normalize.css v2.1.0 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}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:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}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}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0} diff --git a/data/countries.json b/data/countries.json new file mode 100644 index 0000000000..8ab66c8515 --- /dev/null +++ b/data/countries.json @@ -0,0 +1 @@ +["Andorra","United Arab Emirates","Afghanistan","Antigua and Barbuda","Anguilla","Albania","Armenia","Angola","Antarctica","Argentina","American Samoa","Austria","Australia","Aruba","Åland","Azerbaijan","Bosnia and Herzegovina","Barbados","Bangladesh","Belgium","Burkina Faso","Bulgaria","Bahrain","Burundi","Benin","Saint Barthélemy","Bermuda","Brunei","Bolivia","Bonaire","Brazil","Bahamas","Bhutan","Bouvet Island","Botswana","Belarus","Belize","Canada","Cocos [Keeling] Islands","Congo","Central African Republic","Republic of the Congo","Switzerland","Ivory Coast","Cook Islands","Chile","Cameroon","China","Colombia","Costa Rica","Cuba","Cape Verde","Curacao","Christmas Island","Cyprus","Czechia","Germany","Djibouti","Denmark","Dominica","Dominican Republic","Algeria","Ecuador","Estonia","Egypt","Western Sahara","Eritrea","Spain","Ethiopia","Finland","Fiji","Falkland Islands","Micronesia","Faroe Islands","France","Gabon","United Kingdom","Grenada","Georgia","French Guiana","Guernsey","Ghana","Gibraltar","Greenland","Gambia","Guinea","Guadeloupe","Equatorial Guinea","Greece","South Georgia and the South Sandwich Islands","Guatemala","Guam","Guinea-Bissau","Guyana","Hong Kong","Heard Island and McDonald Islands","Honduras","Croatia","Haiti","Hungary","Indonesia","Ireland","Israel","Isle of Man","India","British Indian Ocean Territory","Iraq","Iran","Iceland","Italy","Jersey","Jamaica","Jordan","Japan","Kenya","Kyrgyzstan","Cambodia","Kiribati","Comoros","Saint Kitts and Nevis","North Korea","South Korea","Kuwait","Cayman Islands","Kazakhstan","Laos","Lebanon","Saint Lucia","Liechtenstein","Sri Lanka","Liberia","Lesotho","Lithuania","Luxembourg","Latvia","Libya","Morocco","Monaco","Moldova","Montenegro","Saint Martin","Madagascar","Marshall Islands","Macedonia","Mali","Myanmar [Burma]","Mongolia","Macao","Northern Mariana Islands","Martinique","Mauritania","Montserrat","Malta","Mauritius","Maldives","Malawi","Mexico","Malaysia","Mozambique","Namibia","New Caledonia","Niger","Norfolk Island","Nigeria","Nicaragua","Netherlands","Norway","Nepal","Nauru","Niue","New Zealand","Oman","Panama","Peru","French Polynesia","Papua New Guinea","Philippines","Pakistan","Poland","Saint Pierre and Miquelon","Pitcairn Islands","Puerto Rico","Palestine","Portugal","Palau","Paraguay","Qatar","Réunion","Romania","Serbia","Russia","Rwanda","Saudi Arabia","Solomon Islands","Seychelles","Sudan","Sweden","Singapore","Saint Helena","Slovenia","Svalbard and Jan Mayen","Slovakia","Sierra Leone","San Marino","Senegal","Somalia","Suriname","South Sudan","São Tomé and Príncipe","El Salvador","Sint Maarten","Syria","Swaziland","Turks and Caicos Islands","Chad","French Southern Territories","Togo","Thailand","Tajikistan","Tokelau","East Timor","Turkmenistan","Tunisia","Tonga","Turkey","Trinidad and Tobago","Tuvalu","Taiwan","Tanzania","Ukraine","Uganda","U.S. Minor Outlying Islands","United States","Uruguay","Uzbekistan","Vatican City","Saint Vincent and the Grenadines","Venezuela","British Virgin Islands","U.S. Virgin Islands","Vietnam","Vanuatu","Wallis and Futuna","Samoa","Kosovo","Yemen","Mayotte","South Africa","Zambia","Zimbabwe"] diff --git a/data/films/post_1960.json b/data/films/post_1960.json new file mode 100644 index 0000000000..e5d1d6b5c3 --- /dev/null +++ b/data/films/post_1960.json @@ -0,0 +1,452 @@ +[ + { + "year": "1961", + "value": "West Side Story", + "tokens": [ + "West", + "Side", + "Story" + ] + }, + { + "year": "1962", + "value": "Lawrence of Arabia", + "tokens": [ + "Lawrence", + "of", + "Arabia" + ] + }, + { + "year": "1963", + "value": "Tom Jones", + "tokens": [ + "Tom", + "Jones" + ] + }, + { + "year": "1964", + "value": "My Fair Lady", + "tokens": [ + "My", + "Fair", + "Lady" + ] + }, + { + "year": "1965", + "value": "The Sound of Music", + "tokens": [ + "The", + "Sound", + "of", + "Music" + ] + }, + { + "year": "1966", + "value": "A Man for All Seasons", + "tokens": [ + "A", + "Man", + "for", + "All", + "Seasons" + ] + }, + { + "year": "1967", + "value": "In the Heat of the Night", + "tokens": [ + "In", + "the", + "Heat", + "of", + "the", + "Night" + ] + }, + { + "year": "1968", + "value": "Oliver!", + "tokens": [ + "Oliver!" + ] + }, + { + "year": "1969", + "value": "Midnight Cowboy", + "tokens": [ + "Midnight", + "Cowboy" + ] + }, + { + "year": "1970", + "value": "Patton", + "tokens": [ + "Patton" + ] + }, + { + "year": "1971", + "value": "The French Connection", + "tokens": [ + "The", + "French", + "Connection" + ] + }, + { + "year": "1972", + "value": "The Godfather", + "tokens": [ + "The", + "Godfather" + ] + }, + { + "year": "1973", + "value": "The Sting", + "tokens": [ + "The", + "Sting" + ] + }, + { + "year": "1974", + "value": "The Godfather Part II", + "tokens": [ + "The", + "Godfather", + "Part", + "II" + ] + }, + { + "year": "1975", + "value": "One Flew over the Cuckoo's Nest", + "tokens": [ + "One", + "Flew", + "over", + "the", + "Cuckoo's", + "Nest" + ] + }, + { + "year": "1976", + "value": "Rocky", + "tokens": [ + "Rocky" + ] + }, + { + "year": "1977", + "value": "Annie Hall", + "tokens": [ + "Annie", + "Hall" + ] + }, + { + "year": "1978", + "value": "The Deer Hunter", + "tokens": [ + "The", + "Deer", + "Hunter" + ] + }, + { + "year": "1979", + "value": "Kramer vs. Kramer", + "tokens": [ + "Kramer", + "vs.", + "Kramer" + ] + }, + { + "year": "1980", + "value": "Ordinary People", + "tokens": [ + "Ordinary", + "People" + ] + }, + { + "year": "1981", + "value": "Chariots of Fire", + "tokens": [ + "Chariots", + "of", + "Fire" + ] + }, + { + "year": "1982", + "value": "Gandhi", + "tokens": [ + "Gandhi" + ] + }, + { + "year": "1983", + "value": "Terms of Endearment", + "tokens": [ + "Terms", + "of", + "Endearment" + ] + }, + { + "year": "1984", + "value": "Amadeus", + "tokens": [ + "Amadeus" + ] + }, + { + "year": "1985", + "value": "Out of Africa", + "tokens": [ + "Out", + "of", + "Africa" + ] + }, + { + "year": "1986", + "value": "Platoon", + "tokens": [ + "Platoon" + ] + }, + { + "year": "1987", + "value": "The Last Emperor", + "tokens": [ + "The", + "Last", + "Emperor" + ] + }, + { + "year": "1988", + "value": "Rain Man", + "tokens": [ + "Rain", + "Man" + ] + }, + { + "year": "1989", + "value": "Driving Miss Daisy", + "tokens": [ + "Driving", + "Miss", + "Daisy" + ] + }, + { + "year": "1990", + "value": "Dances With Wolves", + "tokens": [ + "Dances", + "With", + "Wolves" + ] + }, + { + "year": "1991", + "value": "The Silence of the Lambs", + "tokens": [ + "The", + "Silence", + "of", + "the", + "Lambs" + ] + }, + { + "year": "1992", + "value": "Unforgiven", + "tokens": [ + "Unforgiven" + ] + }, + { + "year": "1993", + "value": "Schindler’s List", + "tokens": [ + "Schindler’s", + "List" + ] + }, + { + "year": "1994", + "value": "Forrest Gump", + "tokens": [ + "Forrest", + "Gump" + ] + }, + { + "year": "1995", + "value": "Braveheart", + "tokens": [ + "Braveheart" + ] + }, + { + "year": "1996", + "value": "The English Patient", + "tokens": [ + "The", + "English", + "Patient" + ] + }, + { + "year": "1997", + "value": "Titanic", + "tokens": [ + "Titanic" + ] + }, + { + "year": "1998", + "value": "Shakespeare in Love", + "tokens": [ + "Shakespeare", + "in", + "Love" + ] + }, + { + "year": "1999", + "value": "American Beauty", + "tokens": [ + "American", + "Beauty" + ] + }, + { + "year": "2000", + "value": "Gladiator", + "tokens": [ + "Gladiator" + ] + }, + { + "year": "2001", + "value": "A Beautiful Mind", + "tokens": [ + "A", + "Beautiful", + "Mind" + ] + }, + { + "year": "2002", + "value": "Chicago", + "tokens": [ + "Chicago" + ] + }, + { + "year": "2003", + "value": "The Lord of the Rings: The Return of the King", + "tokens": [ + "The", + "Lord", + "of", + "the", + "Rings:", + "The", + "Return", + "of", + "the", + "King" + ] + }, + { + "year": "2004", + "value": "Million Dollar Baby", + "tokens": [ + "Million", + "Dollar", + "Baby" + ] + }, + { + "year": "2005", + "value": "Crash", + "tokens": [ + "Crash" + ] + }, + { + "year": "2006", + "value": "The Departed", + "tokens": [ + "The", + "Departed" + ] + }, + { + "year": "2007", + "value": "No Country for Old Men", + "tokens": [ + "No", + "Country", + "for", + "Old", + "Men" + ] + }, + { + "year": "2008", + "value": "Slumdog Millionaire", + "tokens": [ + "Slumdog", + "Millionaire" + ] + }, + { + "year": "2009", + "value": "The Hurt Locker", + "tokens": [ + "The", + "Hurt", + "Locker" + ] + }, + { + "year": "2010", + "value": "The King's Speech", + "tokens": [ + "The", + "King's", + "Speech" + ] + }, + { + "year": "2011", + "value": "The Artist", + "tokens": [ + "The", + "Artist" + ] + }, + { + "year": "2012", + "value": "Argo", + "tokens": [ + "Argo" + ] + } +] diff --git a/data/films/queries/8.json b/data/films/queries/8.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/8.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/80.json b/data/films/queries/80.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/80.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/a.json b/data/films/queries/a.json new file mode 100644 index 0000000000..a1f6fef1e5 --- /dev/null +++ b/data/films/queries/a.json @@ -0,0 +1,71 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + }, + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + }, + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + }, + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + }, + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + }, + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ab.json b/data/films/queries/ab.json new file mode 100644 index 0000000000..c3e337e2f9 --- /dev/null +++ b/data/films/queries/ab.json @@ -0,0 +1,11 @@ +[ + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/abo.json b/data/films/queries/abo.json new file mode 100644 index 0000000000..c3e337e2f9 --- /dev/null +++ b/data/films/queries/abo.json @@ -0,0 +1,11 @@ +[ + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/abou.json b/data/films/queries/abou.json new file mode 100644 index 0000000000..c3e337e2f9 --- /dev/null +++ b/data/films/queries/abou.json @@ -0,0 +1,11 @@ +[ + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/about.json b/data/films/queries/about.json new file mode 100644 index 0000000000..c3e337e2f9 --- /dev/null +++ b/data/films/queries/about.json @@ -0,0 +1,11 @@ +[ + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ag.json b/data/films/queries/ag.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/ag.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/agr.json b/data/films/queries/agr.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/agr.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/agre.json b/data/films/queries/agre.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/agre.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/agree.json b/data/films/queries/agree.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/agree.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/agreem.json b/data/films/queries/agreem.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/agreem.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/agreeme.json b/data/films/queries/agreeme.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/agreeme.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/agreemen.json b/data/films/queries/agreemen.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/agreemen.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/agreement.json b/data/films/queries/agreement.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/agreement.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/al.json b/data/films/queries/al.json new file mode 100644 index 0000000000..803d8f27ea --- /dev/null +++ b/data/films/queries/al.json @@ -0,0 +1,33 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + }, + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/all.json b/data/films/queries/all.json new file mode 100644 index 0000000000..803d8f27ea --- /dev/null +++ b/data/films/queries/all.json @@ -0,0 +1,33 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + }, + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/am.json b/data/films/queries/am.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/am.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ame.json b/data/films/queries/ame.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/ame.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/amer.json b/data/films/queries/amer.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/amer.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ameri.json b/data/films/queries/ameri.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/ameri.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/americ.json b/data/films/queries/americ.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/americ.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/america.json b/data/films/queries/america.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/america.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/american.json b/data/films/queries/american.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/american.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/an.json b/data/films/queries/an.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/an.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ap.json b/data/films/queries/ap.json new file mode 100644 index 0000000000..29978ac525 --- /dev/null +++ b/data/films/queries/ap.json @@ -0,0 +1,10 @@ +[ + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/apa.json b/data/films/queries/apa.json new file mode 100644 index 0000000000..29978ac525 --- /dev/null +++ b/data/films/queries/apa.json @@ -0,0 +1,10 @@ +[ + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/apar.json b/data/films/queries/apar.json new file mode 100644 index 0000000000..29978ac525 --- /dev/null +++ b/data/films/queries/apar.json @@ -0,0 +1,10 @@ +[ + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/apart.json b/data/films/queries/apart.json new file mode 100644 index 0000000000..29978ac525 --- /dev/null +++ b/data/films/queries/apart.json @@ -0,0 +1,10 @@ +[ + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/apartm.json b/data/films/queries/apartm.json new file mode 100644 index 0000000000..29978ac525 --- /dev/null +++ b/data/films/queries/apartm.json @@ -0,0 +1,10 @@ +[ + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/apartme.json b/data/films/queries/apartme.json new file mode 100644 index 0000000000..29978ac525 --- /dev/null +++ b/data/films/queries/apartme.json @@ -0,0 +1,10 @@ +[ + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/apartmen.json b/data/films/queries/apartmen.json new file mode 100644 index 0000000000..29978ac525 --- /dev/null +++ b/data/films/queries/apartmen.json @@ -0,0 +1,10 @@ +[ + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/apartment.json b/data/films/queries/apartment.json new file mode 100644 index 0000000000..29978ac525 --- /dev/null +++ b/data/films/queries/apartment.json @@ -0,0 +1,10 @@ +[ + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ar.json b/data/films/queries/ar.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/ar.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/aro.json b/data/films/queries/aro.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/aro.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/arou.json b/data/films/queries/arou.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/arou.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/aroun.json b/data/films/queries/aroun.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/aroun.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/around.json b/data/films/queries/around.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/around.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/b.json b/data/films/queries/b.json new file mode 100644 index 0000000000..ed0567f279 --- /dev/null +++ b/data/films/queries/b.json @@ -0,0 +1,52 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + }, + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + }, + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + }, + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + }, + { + "year": "1959", + "value": "Ben-Hur", + "tokens": [ + "Ben-Hur" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/be.json b/data/films/queries/be.json new file mode 100644 index 0000000000..f8e753f858 --- /dev/null +++ b/data/films/queries/be.json @@ -0,0 +1,21 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + }, + { + "year": "1959", + "value": "Ben-Hur", + "tokens": [ + "Ben-Hur" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ben-h.json b/data/films/queries/ben-h.json new file mode 100644 index 0000000000..63ed61112e --- /dev/null +++ b/data/films/queries/ben-h.json @@ -0,0 +1,9 @@ +[ + { + "year": "1959", + "value": "Ben-Hur", + "tokens": [ + "Ben-Hur" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ben-hu.json b/data/films/queries/ben-hu.json new file mode 100644 index 0000000000..63ed61112e --- /dev/null +++ b/data/films/queries/ben-hu.json @@ -0,0 +1,9 @@ +[ + { + "year": "1959", + "value": "Ben-Hur", + "tokens": [ + "Ben-Hur" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ben-hur.json b/data/films/queries/ben-hur.json new file mode 100644 index 0000000000..63ed61112e --- /dev/null +++ b/data/films/queries/ben-hur.json @@ -0,0 +1,9 @@ +[ + { + "year": "1959", + "value": "Ben-Hur", + "tokens": [ + "Ben-Hur" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ben.json b/data/films/queries/ben.json new file mode 100644 index 0000000000..63ed61112e --- /dev/null +++ b/data/films/queries/ben.json @@ -0,0 +1,9 @@ +[ + { + "year": "1959", + "value": "Ben-Hur", + "tokens": [ + "Ben-Hur" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/bes.json b/data/films/queries/bes.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/bes.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/best.json b/data/films/queries/best.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/best.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/bo.json b/data/films/queries/bo.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/bo.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/bou.json b/data/films/queries/bou.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/bou.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/boun.json b/data/films/queries/boun.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/boun.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/bount.json b/data/films/queries/bount.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/bount.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/bounty.json b/data/films/queries/bounty.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/bounty.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/br.json b/data/films/queries/br.json new file mode 100644 index 0000000000..2fb85e755d --- /dev/null +++ b/data/films/queries/br.json @@ -0,0 +1,23 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + }, + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/bri.json b/data/films/queries/bri.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/bri.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/brid.json b/data/films/queries/brid.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/brid.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/bridg.json b/data/films/queries/bridg.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/bridg.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/bridge.json b/data/films/queries/bridge.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/bridge.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/bro.json b/data/films/queries/bro.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/bro.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/broa.json b/data/films/queries/broa.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/broa.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/broad.json b/data/films/queries/broad.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/broad.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/broadw.json b/data/films/queries/broadw.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/broadw.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/broadwa.json b/data/films/queries/broadwa.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/broadwa.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/broadway.json b/data/films/queries/broadway.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/broadway.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/c.json b/data/films/queries/c.json new file mode 100644 index 0000000000..aaedda1227 --- /dev/null +++ b/data/films/queries/c.json @@ -0,0 +1,35 @@ +[ + { + "year": "1930/1931", + "value": "Cimarron", + "tokens": [ + "Cimarron" + ] + }, + { + "year": "1932/1933", + "value": "Cavalcade", + "tokens": [ + "Cavalcade" + ] + }, + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + }, + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ca.json b/data/films/queries/ca.json new file mode 100644 index 0000000000..a4fdc1e33d --- /dev/null +++ b/data/films/queries/ca.json @@ -0,0 +1,28 @@ +[ + { + "year": "1932/1933", + "value": "Cavalcade", + "tokens": [ + "Cavalcade" + ] + }, + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + }, + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/can't.json b/data/films/queries/can't.json new file mode 100644 index 0000000000..febdb06f65 --- /dev/null +++ b/data/films/queries/can't.json @@ -0,0 +1,14 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/can.json b/data/films/queries/can.json new file mode 100644 index 0000000000..febdb06f65 --- /dev/null +++ b/data/films/queries/can.json @@ -0,0 +1,14 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cas.json b/data/films/queries/cas.json new file mode 100644 index 0000000000..46833d9156 --- /dev/null +++ b/data/films/queries/cas.json @@ -0,0 +1,9 @@ +[ + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/casa.json b/data/films/queries/casa.json new file mode 100644 index 0000000000..46833d9156 --- /dev/null +++ b/data/films/queries/casa.json @@ -0,0 +1,9 @@ +[ + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/casab.json b/data/films/queries/casab.json new file mode 100644 index 0000000000..46833d9156 --- /dev/null +++ b/data/films/queries/casab.json @@ -0,0 +1,9 @@ +[ + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/casabl.json b/data/films/queries/casabl.json new file mode 100644 index 0000000000..46833d9156 --- /dev/null +++ b/data/films/queries/casabl.json @@ -0,0 +1,9 @@ +[ + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/casabla.json b/data/films/queries/casabla.json new file mode 100644 index 0000000000..46833d9156 --- /dev/null +++ b/data/films/queries/casabla.json @@ -0,0 +1,9 @@ +[ + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/casablan.json b/data/films/queries/casablan.json new file mode 100644 index 0000000000..46833d9156 --- /dev/null +++ b/data/films/queries/casablan.json @@ -0,0 +1,9 @@ +[ + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/casablanc.json b/data/films/queries/casablanc.json new file mode 100644 index 0000000000..46833d9156 --- /dev/null +++ b/data/films/queries/casablanc.json @@ -0,0 +1,9 @@ +[ + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/casablanca.json b/data/films/queries/casablanca.json new file mode 100644 index 0000000000..46833d9156 --- /dev/null +++ b/data/films/queries/casablanca.json @@ -0,0 +1,9 @@ +[ + { + "year": "1943", + "value": "Casablanca", + "tokens": [ + "Casablanca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cav.json b/data/films/queries/cav.json new file mode 100644 index 0000000000..10f62bfbc5 --- /dev/null +++ b/data/films/queries/cav.json @@ -0,0 +1,9 @@ +[ + { + "year": "1932/1933", + "value": "Cavalcade", + "tokens": [ + "Cavalcade" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cava.json b/data/films/queries/cava.json new file mode 100644 index 0000000000..10f62bfbc5 --- /dev/null +++ b/data/films/queries/cava.json @@ -0,0 +1,9 @@ +[ + { + "year": "1932/1933", + "value": "Cavalcade", + "tokens": [ + "Cavalcade" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/caval.json b/data/films/queries/caval.json new file mode 100644 index 0000000000..10f62bfbc5 --- /dev/null +++ b/data/films/queries/caval.json @@ -0,0 +1,9 @@ +[ + { + "year": "1932/1933", + "value": "Cavalcade", + "tokens": [ + "Cavalcade" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cavalc.json b/data/films/queries/cavalc.json new file mode 100644 index 0000000000..10f62bfbc5 --- /dev/null +++ b/data/films/queries/cavalc.json @@ -0,0 +1,9 @@ +[ + { + "year": "1932/1933", + "value": "Cavalcade", + "tokens": [ + "Cavalcade" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cavalca.json b/data/films/queries/cavalca.json new file mode 100644 index 0000000000..10f62bfbc5 --- /dev/null +++ b/data/films/queries/cavalca.json @@ -0,0 +1,9 @@ +[ + { + "year": "1932/1933", + "value": "Cavalcade", + "tokens": [ + "Cavalcade" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cavalcad.json b/data/films/queries/cavalcad.json new file mode 100644 index 0000000000..10f62bfbc5 --- /dev/null +++ b/data/films/queries/cavalcad.json @@ -0,0 +1,9 @@ +[ + { + "year": "1932/1933", + "value": "Cavalcade", + "tokens": [ + "Cavalcade" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cavalcade.json b/data/films/queries/cavalcade.json new file mode 100644 index 0000000000..10f62bfbc5 --- /dev/null +++ b/data/films/queries/cavalcade.json @@ -0,0 +1,9 @@ +[ + { + "year": "1932/1933", + "value": "Cavalcade", + "tokens": [ + "Cavalcade" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ci.json b/data/films/queries/ci.json new file mode 100644 index 0000000000..d0aa42474b --- /dev/null +++ b/data/films/queries/ci.json @@ -0,0 +1,9 @@ +[ + { + "year": "1930/1931", + "value": "Cimarron", + "tokens": [ + "Cimarron" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cim.json b/data/films/queries/cim.json new file mode 100644 index 0000000000..d0aa42474b --- /dev/null +++ b/data/films/queries/cim.json @@ -0,0 +1,9 @@ +[ + { + "year": "1930/1931", + "value": "Cimarron", + "tokens": [ + "Cimarron" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cima.json b/data/films/queries/cima.json new file mode 100644 index 0000000000..d0aa42474b --- /dev/null +++ b/data/films/queries/cima.json @@ -0,0 +1,9 @@ +[ + { + "year": "1930/1931", + "value": "Cimarron", + "tokens": [ + "Cimarron" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cimar.json b/data/films/queries/cimar.json new file mode 100644 index 0000000000..d0aa42474b --- /dev/null +++ b/data/films/queries/cimar.json @@ -0,0 +1,9 @@ +[ + { + "year": "1930/1931", + "value": "Cimarron", + "tokens": [ + "Cimarron" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cimarr.json b/data/films/queries/cimarr.json new file mode 100644 index 0000000000..d0aa42474b --- /dev/null +++ b/data/films/queries/cimarr.json @@ -0,0 +1,9 @@ +[ + { + "year": "1930/1931", + "value": "Cimarron", + "tokens": [ + "Cimarron" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cimarro.json b/data/films/queries/cimarro.json new file mode 100644 index 0000000000..d0aa42474b --- /dev/null +++ b/data/films/queries/cimarro.json @@ -0,0 +1,9 @@ +[ + { + "year": "1930/1931", + "value": "Cimarron", + "tokens": [ + "Cimarron" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/cimarron.json b/data/films/queries/cimarron.json new file mode 100644 index 0000000000..d0aa42474b --- /dev/null +++ b/data/films/queries/cimarron.json @@ -0,0 +1,9 @@ +[ + { + "year": "1930/1931", + "value": "Cimarron", + "tokens": [ + "Cimarron" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/d.json b/data/films/queries/d.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/d.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/da.json b/data/films/queries/da.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/da.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/day.json b/data/films/queries/day.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/day.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/days.json b/data/films/queries/days.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/days.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/e.json b/data/films/queries/e.json new file mode 100644 index 0000000000..9c0b3fa5e7 --- /dev/null +++ b/data/films/queries/e.json @@ -0,0 +1,43 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + }, + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + }, + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ea.json b/data/films/queries/ea.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/ea.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ear.json b/data/films/queries/ear.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/ear.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/eart.json b/data/films/queries/eart.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/eart.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/earth.json b/data/films/queries/earth.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/earth.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/em.json b/data/films/queries/em.json new file mode 100644 index 0000000000..667be801a0 --- /dev/null +++ b/data/films/queries/em.json @@ -0,0 +1,13 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/emi.json b/data/films/queries/emi.json new file mode 100644 index 0000000000..667be801a0 --- /dev/null +++ b/data/films/queries/emi.json @@ -0,0 +1,13 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/emil.json b/data/films/queries/emil.json new file mode 100644 index 0000000000..667be801a0 --- /dev/null +++ b/data/films/queries/emil.json @@ -0,0 +1,13 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/emile.json b/data/films/queries/emile.json new file mode 100644 index 0000000000..667be801a0 --- /dev/null +++ b/data/films/queries/emile.json @@ -0,0 +1,13 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/et.json b/data/films/queries/et.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/et.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ete.json b/data/films/queries/ete.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/ete.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/eter.json b/data/films/queries/eter.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/eter.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/etern.json b/data/films/queries/etern.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/etern.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/eterni.json b/data/films/queries/eterni.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/eterni.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/eternit.json b/data/films/queries/eternit.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/eternit.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/eternity.json b/data/films/queries/eternity.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/eternity.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ev.json b/data/films/queries/ev.json new file mode 100644 index 0000000000..c3e337e2f9 --- /dev/null +++ b/data/films/queries/ev.json @@ -0,0 +1,11 @@ +[ + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/eve.json b/data/films/queries/eve.json new file mode 100644 index 0000000000..c3e337e2f9 --- /dev/null +++ b/data/films/queries/eve.json @@ -0,0 +1,11 @@ +[ + { + "year": "1950", + "value": "All About Eve", + "tokens": [ + "All", + "About", + "Eve" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/f.json b/data/films/queries/f.json new file mode 100644 index 0000000000..d7fca64acc --- /dev/null +++ b/data/films/queries/f.json @@ -0,0 +1,24 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/fr.json b/data/films/queries/fr.json new file mode 100644 index 0000000000..d7fca64acc --- /dev/null +++ b/data/films/queries/fr.json @@ -0,0 +1,24 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/fro.json b/data/films/queries/fro.json new file mode 100644 index 0000000000..d7fca64acc --- /dev/null +++ b/data/films/queries/fro.json @@ -0,0 +1,24 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/from.json b/data/films/queries/from.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/from.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/fron.json b/data/films/queries/fron.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/fron.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/front.json b/data/films/queries/front.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/front.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/g.json b/data/films/queries/g.json new file mode 100644 index 0000000000..6b511a3249 --- /dev/null +++ b/data/films/queries/g.json @@ -0,0 +1,75 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + }, + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + }, + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + }, + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + }, + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + }, + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + }, + { + "year": "1958", + "value": "Gigi", + "tokens": [ + "Gigi" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ge.json b/data/films/queries/ge.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/ge.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gen.json b/data/films/queries/gen.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/gen.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gent.json b/data/films/queries/gent.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/gent.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gentl.json b/data/films/queries/gentl.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/gentl.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gentle.json b/data/films/queries/gentle.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/gentle.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gentlem.json b/data/films/queries/gentlem.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/gentlem.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gentlema.json b/data/films/queries/gentlema.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/gentlema.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gentleman's.json b/data/films/queries/gentleman's.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/gentleman's.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gentleman.json b/data/films/queries/gentleman.json new file mode 100644 index 0000000000..c2a189671c --- /dev/null +++ b/data/films/queries/gentleman.json @@ -0,0 +1,10 @@ +[ + { + "year": "1947", + "value": "Gentleman's Agreement", + "tokens": [ + "Gentleman's", + "Agreement" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gi.json b/data/films/queries/gi.json new file mode 100644 index 0000000000..e83bb5e276 --- /dev/null +++ b/data/films/queries/gi.json @@ -0,0 +1,9 @@ +[ + { + "year": "1958", + "value": "Gigi", + "tokens": [ + "Gigi" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gig.json b/data/films/queries/gig.json new file mode 100644 index 0000000000..e83bb5e276 --- /dev/null +++ b/data/films/queries/gig.json @@ -0,0 +1,9 @@ +[ + { + "year": "1958", + "value": "Gigi", + "tokens": [ + "Gigi" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gigi.json b/data/films/queries/gigi.json new file mode 100644 index 0000000000..e83bb5e276 --- /dev/null +++ b/data/films/queries/gigi.json @@ -0,0 +1,9 @@ +[ + { + "year": "1958", + "value": "Gigi", + "tokens": [ + "Gigi" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/go.json b/data/films/queries/go.json new file mode 100644 index 0000000000..49323c11fe --- /dev/null +++ b/data/films/queries/go.json @@ -0,0 +1,21 @@ +[ + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + }, + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/goi.json b/data/films/queries/goi.json new file mode 100644 index 0000000000..e5485922b1 --- /dev/null +++ b/data/films/queries/goi.json @@ -0,0 +1,11 @@ +[ + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/goin.json b/data/films/queries/goin.json new file mode 100644 index 0000000000..e5485922b1 --- /dev/null +++ b/data/films/queries/goin.json @@ -0,0 +1,11 @@ +[ + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/going.json b/data/films/queries/going.json new file mode 100644 index 0000000000..e5485922b1 --- /dev/null +++ b/data/films/queries/going.json @@ -0,0 +1,11 @@ +[ + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gon.json b/data/films/queries/gon.json new file mode 100644 index 0000000000..d896f41aa9 --- /dev/null +++ b/data/films/queries/gon.json @@ -0,0 +1,12 @@ +[ + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gone.json b/data/films/queries/gone.json new file mode 100644 index 0000000000..d896f41aa9 --- /dev/null +++ b/data/films/queries/gone.json @@ -0,0 +1,12 @@ +[ + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gr.json b/data/films/queries/gr.json new file mode 100644 index 0000000000..0680d24c80 --- /dev/null +++ b/data/films/queries/gr.json @@ -0,0 +1,41 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + }, + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + }, + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gra.json b/data/films/queries/gra.json new file mode 100644 index 0000000000..a2309d0474 --- /dev/null +++ b/data/films/queries/gra.json @@ -0,0 +1,10 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gran.json b/data/films/queries/gran.json new file mode 100644 index 0000000000..a2309d0474 --- /dev/null +++ b/data/films/queries/gran.json @@ -0,0 +1,10 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/grand.json b/data/films/queries/grand.json new file mode 100644 index 0000000000..a2309d0474 --- /dev/null +++ b/data/films/queries/grand.json @@ -0,0 +1,10 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gre.json b/data/films/queries/gre.json new file mode 100644 index 0000000000..67c290b037 --- /dev/null +++ b/data/films/queries/gre.json @@ -0,0 +1,33 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + }, + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/grea.json b/data/films/queries/grea.json new file mode 100644 index 0000000000..a73e7ceaf0 --- /dev/null +++ b/data/films/queries/grea.json @@ -0,0 +1,22 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/great.json b/data/films/queries/great.json new file mode 100644 index 0000000000..a73e7ceaf0 --- /dev/null +++ b/data/films/queries/great.json @@ -0,0 +1,22 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/greate.json b/data/films/queries/greate.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/greate.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/greates.json b/data/films/queries/greates.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/greates.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/greatest.json b/data/films/queries/greatest.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/greatest.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/gree.json b/data/films/queries/gree.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/gree.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/green.json b/data/films/queries/green.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/green.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/h.json b/data/films/queries/h.json new file mode 100644 index 0000000000..ff77350f20 --- /dev/null +++ b/data/films/queries/h.json @@ -0,0 +1,48 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + }, + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + }, + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + }, + { + "year": "1948", + "value": "Hamlet", + "tokens": [ + "Hamlet" + ] + }, + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ha.json b/data/films/queries/ha.json new file mode 100644 index 0000000000..2411f92a0a --- /dev/null +++ b/data/films/queries/ha.json @@ -0,0 +1,19 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + }, + { + "year": "1948", + "value": "Hamlet", + "tokens": [ + "Hamlet" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ham.json b/data/films/queries/ham.json new file mode 100644 index 0000000000..101dbf618c --- /dev/null +++ b/data/films/queries/ham.json @@ -0,0 +1,9 @@ +[ + { + "year": "1948", + "value": "Hamlet", + "tokens": [ + "Hamlet" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/haml.json b/data/films/queries/haml.json new file mode 100644 index 0000000000..101dbf618c --- /dev/null +++ b/data/films/queries/haml.json @@ -0,0 +1,9 @@ +[ + { + "year": "1948", + "value": "Hamlet", + "tokens": [ + "Hamlet" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/hamle.json b/data/films/queries/hamle.json new file mode 100644 index 0000000000..101dbf618c --- /dev/null +++ b/data/films/queries/hamle.json @@ -0,0 +1,9 @@ +[ + { + "year": "1948", + "value": "Hamlet", + "tokens": [ + "Hamlet" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/hamlet.json b/data/films/queries/hamlet.json new file mode 100644 index 0000000000..101dbf618c --- /dev/null +++ b/data/films/queries/hamlet.json @@ -0,0 +1,9 @@ +[ + { + "year": "1948", + "value": "Hamlet", + "tokens": [ + "Hamlet" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/hap.json b/data/films/queries/hap.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/hap.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/happ.json b/data/films/queries/happ.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/happ.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/happe.json b/data/films/queries/happe.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/happe.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/happen.json b/data/films/queries/happen.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/happen.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/happene.json b/data/films/queries/happene.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/happene.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/happened.json b/data/films/queries/happened.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/happened.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/he.json b/data/films/queries/he.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/he.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/her.json b/data/films/queries/her.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/her.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/here.json b/data/films/queries/here.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/here.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ho.json b/data/films/queries/ho.json new file mode 100644 index 0000000000..ee23b19230 --- /dev/null +++ b/data/films/queries/ho.json @@ -0,0 +1,21 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + }, + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/hot.json b/data/films/queries/hot.json new file mode 100644 index 0000000000..a2309d0474 --- /dev/null +++ b/data/films/queries/hot.json @@ -0,0 +1,10 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/hote.json b/data/films/queries/hote.json new file mode 100644 index 0000000000..a2309d0474 --- /dev/null +++ b/data/films/queries/hote.json @@ -0,0 +1,10 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/hotel.json b/data/films/queries/hotel.json new file mode 100644 index 0000000000..a2309d0474 --- /dev/null +++ b/data/films/queries/hotel.json @@ -0,0 +1,10 @@ +[ + { + "year": "1931/1932", + "value": "Grand Hotel", + "tokens": [ + "Grand", + "Hotel" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/how.json b/data/films/queries/how.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/how.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/i.json b/data/films/queries/i.json new file mode 100644 index 0000000000..6d55a441fc --- /dev/null +++ b/data/films/queries/i.json @@ -0,0 +1,46 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + }, + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + }, + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + }, + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/in.json b/data/films/queries/in.json new file mode 100644 index 0000000000..2d2002ba34 --- /dev/null +++ b/data/films/queries/in.json @@ -0,0 +1,24 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + }, + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/it.json b/data/films/queries/it.json new file mode 100644 index 0000000000..eef6012d42 --- /dev/null +++ b/data/films/queries/it.json @@ -0,0 +1,24 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + }, + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/k.json b/data/films/queries/k.json new file mode 100644 index 0000000000..a3c19e3e49 --- /dev/null +++ b/data/films/queries/k.json @@ -0,0 +1,24 @@ +[ + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + }, + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ki.json b/data/films/queries/ki.json new file mode 100644 index 0000000000..9617ef925c --- /dev/null +++ b/data/films/queries/ki.json @@ -0,0 +1,12 @@ +[ + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/kin.json b/data/films/queries/kin.json new file mode 100644 index 0000000000..9617ef925c --- /dev/null +++ b/data/films/queries/kin.json @@ -0,0 +1,12 @@ +[ + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/king.json b/data/films/queries/king.json new file mode 100644 index 0000000000..9617ef925c --- /dev/null +++ b/data/films/queries/king.json @@ -0,0 +1,12 @@ +[ + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/kings.json b/data/films/queries/kings.json new file mode 100644 index 0000000000..9617ef925c --- /dev/null +++ b/data/films/queries/kings.json @@ -0,0 +1,12 @@ +[ + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/kw.json b/data/films/queries/kw.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/kw.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/kwa.json b/data/films/queries/kwa.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/kwa.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/kwai.json b/data/films/queries/kwai.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/kwai.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/l.json b/data/films/queries/l.json new file mode 100644 index 0000000000..6ceaa04b72 --- /dev/null +++ b/data/films/queries/l.json @@ -0,0 +1,34 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + }, + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + }, + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/li.json b/data/films/queries/li.json new file mode 100644 index 0000000000..9d524c1098 --- /dev/null +++ b/data/films/queries/li.json @@ -0,0 +1,25 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + }, + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/lif.json b/data/films/queries/lif.json new file mode 100644 index 0000000000..667be801a0 --- /dev/null +++ b/data/films/queries/lif.json @@ -0,0 +1,13 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/life.json b/data/films/queries/life.json new file mode 100644 index 0000000000..667be801a0 --- /dev/null +++ b/data/films/queries/life.json @@ -0,0 +1,13 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/liv.json b/data/films/queries/liv.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/liv.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/live.json b/data/films/queries/live.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/live.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/lives.json b/data/films/queries/lives.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/lives.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/lo.json b/data/films/queries/lo.json new file mode 100644 index 0000000000..5546fc077d --- /dev/null +++ b/data/films/queries/lo.json @@ -0,0 +1,11 @@ +[ + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/los.json b/data/films/queries/los.json new file mode 100644 index 0000000000..5546fc077d --- /dev/null +++ b/data/films/queries/los.json @@ -0,0 +1,11 @@ +[ + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/lost.json b/data/films/queries/lost.json new file mode 100644 index 0000000000..5546fc077d --- /dev/null +++ b/data/films/queries/lost.json @@ -0,0 +1,11 @@ +[ + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/m.json b/data/films/queries/m.json new file mode 100644 index 0000000000..cca4d5ceb2 --- /dev/null +++ b/data/films/queries/m.json @@ -0,0 +1,66 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + }, + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + }, + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + }, + { + "year": "1942", + "value": "Mrs. Miniver", + "tokens": [ + "Mrs.", + "Miniver" + ] + }, + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + }, + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + }, + { + "year": "1955", + "value": "Marty", + "tokens": [ + "Marty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ma.json b/data/films/queries/ma.json new file mode 100644 index 0000000000..900a8f9c20 --- /dev/null +++ b/data/films/queries/ma.json @@ -0,0 +1,9 @@ +[ + { + "year": "1955", + "value": "Marty", + "tokens": [ + "Marty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mar.json b/data/films/queries/mar.json new file mode 100644 index 0000000000..900a8f9c20 --- /dev/null +++ b/data/films/queries/mar.json @@ -0,0 +1,9 @@ +[ + { + "year": "1955", + "value": "Marty", + "tokens": [ + "Marty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mart.json b/data/films/queries/mart.json new file mode 100644 index 0000000000..900a8f9c20 --- /dev/null +++ b/data/films/queries/mart.json @@ -0,0 +1,9 @@ +[ + { + "year": "1955", + "value": "Marty", + "tokens": [ + "Marty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/marty.json b/data/films/queries/marty.json new file mode 100644 index 0000000000..900a8f9c20 --- /dev/null +++ b/data/films/queries/marty.json @@ -0,0 +1,9 @@ +[ + { + "year": "1955", + "value": "Marty", + "tokens": [ + "Marty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/me.json b/data/films/queries/me.json new file mode 100644 index 0000000000..30bbc0c5d2 --- /dev/null +++ b/data/films/queries/me.json @@ -0,0 +1,21 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + }, + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mel.json b/data/films/queries/mel.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/mel.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/melo.json b/data/films/queries/melo.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/melo.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/melod.json b/data/films/queries/melod.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/melod.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/melody.json b/data/films/queries/melody.json new file mode 100644 index 0000000000..9d074167d6 --- /dev/null +++ b/data/films/queries/melody.json @@ -0,0 +1,11 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/men.json b/data/films/queries/men.json new file mode 100644 index 0000000000..9617ef925c --- /dev/null +++ b/data/films/queries/men.json @@ -0,0 +1,12 @@ +[ + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mi.json b/data/films/queries/mi.json new file mode 100644 index 0000000000..a890fe8d09 --- /dev/null +++ b/data/films/queries/mi.json @@ -0,0 +1,10 @@ +[ + { + "year": "1942", + "value": "Mrs. Miniver", + "tokens": [ + "Mrs.", + "Miniver" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/min.json b/data/films/queries/min.json new file mode 100644 index 0000000000..a890fe8d09 --- /dev/null +++ b/data/films/queries/min.json @@ -0,0 +1,10 @@ +[ + { + "year": "1942", + "value": "Mrs. Miniver", + "tokens": [ + "Mrs.", + "Miniver" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mini.json b/data/films/queries/mini.json new file mode 100644 index 0000000000..a890fe8d09 --- /dev/null +++ b/data/films/queries/mini.json @@ -0,0 +1,10 @@ +[ + { + "year": "1942", + "value": "Mrs. Miniver", + "tokens": [ + "Mrs.", + "Miniver" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/miniv.json b/data/films/queries/miniv.json new file mode 100644 index 0000000000..a890fe8d09 --- /dev/null +++ b/data/films/queries/miniv.json @@ -0,0 +1,10 @@ +[ + { + "year": "1942", + "value": "Mrs. Miniver", + "tokens": [ + "Mrs.", + "Miniver" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/minive.json b/data/films/queries/minive.json new file mode 100644 index 0000000000..a890fe8d09 --- /dev/null +++ b/data/films/queries/minive.json @@ -0,0 +1,10 @@ +[ + { + "year": "1942", + "value": "Mrs. Miniver", + "tokens": [ + "Mrs.", + "Miniver" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/miniver.json b/data/films/queries/miniver.json new file mode 100644 index 0000000000..a890fe8d09 --- /dev/null +++ b/data/films/queries/miniver.json @@ -0,0 +1,10 @@ +[ + { + "year": "1942", + "value": "Mrs. Miniver", + "tokens": [ + "Mrs.", + "Miniver" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mr.json b/data/films/queries/mr.json new file mode 100644 index 0000000000..a890fe8d09 --- /dev/null +++ b/data/films/queries/mr.json @@ -0,0 +1,10 @@ +[ + { + "year": "1942", + "value": "Mrs. Miniver", + "tokens": [ + "Mrs.", + "Miniver" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mrs.json b/data/films/queries/mrs.json new file mode 100644 index 0000000000..a890fe8d09 --- /dev/null +++ b/data/films/queries/mrs.json @@ -0,0 +1,10 @@ +[ + { + "year": "1942", + "value": "Mrs. Miniver", + "tokens": [ + "Mrs.", + "Miniver" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mu.json b/data/films/queries/mu.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/mu.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mut.json b/data/films/queries/mut.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/mut.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/muti.json b/data/films/queries/muti.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/muti.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mutin.json b/data/films/queries/mutin.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/mutin.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/mutiny.json b/data/films/queries/mutiny.json new file mode 100644 index 0000000000..43f38c2887 --- /dev/null +++ b/data/films/queries/mutiny.json @@ -0,0 +1,12 @@ +[ + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/my.json b/data/films/queries/my.json new file mode 100644 index 0000000000..d3df1d79bf --- /dev/null +++ b/data/films/queries/my.json @@ -0,0 +1,22 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + }, + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/n.json b/data/films/queries/n.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/n.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ni.json b/data/films/queries/ni.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/ni.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/nig.json b/data/films/queries/nig.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/nig.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/nigh.json b/data/films/queries/nigh.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/nigh.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/night.json b/data/films/queries/night.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/night.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/o.json b/data/films/queries/o.json new file mode 100644 index 0000000000..5618228a83 --- /dev/null +++ b/data/films/queries/o.json @@ -0,0 +1,89 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + }, + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + }, + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + }, + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + }, + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + }, + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/of.json b/data/films/queries/of.json new file mode 100644 index 0000000000..9d524c1098 --- /dev/null +++ b/data/films/queries/of.json @@ -0,0 +1,25 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + }, + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/on.json b/data/films/queries/on.json new file mode 100644 index 0000000000..129244bb6d --- /dev/null +++ b/data/films/queries/on.json @@ -0,0 +1,66 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + }, + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + }, + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + }, + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/one.json b/data/films/queries/one.json new file mode 100644 index 0000000000..4151b2a21b --- /dev/null +++ b/data/films/queries/one.json @@ -0,0 +1,12 @@ +[ + { + "year": "1934", + "value": "It Happened One Night", + "tokens": [ + "It", + "Happened", + "One", + "Night" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ou.json b/data/films/queries/ou.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/ou.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/our.json b/data/films/queries/our.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/our.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/p.json b/data/films/queries/p.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/p.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/pa.json b/data/films/queries/pa.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/pa.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/par.json b/data/films/queries/par.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/par.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/pari.json b/data/films/queries/pari.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/pari.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/paris.json b/data/films/queries/paris.json new file mode 100644 index 0000000000..9841d9825b --- /dev/null +++ b/data/films/queries/paris.json @@ -0,0 +1,12 @@ +[ + { + "year": "1951", + "value": "An American in Paris", + "tokens": [ + "An", + "American", + "in", + "Paris" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/q.json b/data/films/queries/q.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/q.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/qu.json b/data/films/queries/qu.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/qu.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/qui.json b/data/films/queries/qui.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/qui.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/quie.json b/data/films/queries/quie.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/quie.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/quiet.json b/data/films/queries/quiet.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/quiet.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/r.json b/data/films/queries/r.json new file mode 100644 index 0000000000..44ba9268cc --- /dev/null +++ b/data/films/queries/r.json @@ -0,0 +1,21 @@ +[ + { + "year": "1940", + "value": "Rebecca", + "tokens": [ + "Rebecca" + ] + }, + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/re.json b/data/films/queries/re.json new file mode 100644 index 0000000000..02359a7520 --- /dev/null +++ b/data/films/queries/re.json @@ -0,0 +1,9 @@ +[ + { + "year": "1940", + "value": "Rebecca", + "tokens": [ + "Rebecca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/reb.json b/data/films/queries/reb.json new file mode 100644 index 0000000000..02359a7520 --- /dev/null +++ b/data/films/queries/reb.json @@ -0,0 +1,9 @@ +[ + { + "year": "1940", + "value": "Rebecca", + "tokens": [ + "Rebecca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/rebe.json b/data/films/queries/rebe.json new file mode 100644 index 0000000000..02359a7520 --- /dev/null +++ b/data/films/queries/rebe.json @@ -0,0 +1,9 @@ +[ + { + "year": "1940", + "value": "Rebecca", + "tokens": [ + "Rebecca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/rebec.json b/data/films/queries/rebec.json new file mode 100644 index 0000000000..02359a7520 --- /dev/null +++ b/data/films/queries/rebec.json @@ -0,0 +1,9 @@ +[ + { + "year": "1940", + "value": "Rebecca", + "tokens": [ + "Rebecca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/rebecc.json b/data/films/queries/rebecc.json new file mode 100644 index 0000000000..02359a7520 --- /dev/null +++ b/data/films/queries/rebecc.json @@ -0,0 +1,9 @@ +[ + { + "year": "1940", + "value": "Rebecca", + "tokens": [ + "Rebecca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/rebecca.json b/data/films/queries/rebecca.json new file mode 100644 index 0000000000..02359a7520 --- /dev/null +++ b/data/films/queries/rebecca.json @@ -0,0 +1,9 @@ +[ + { + "year": "1940", + "value": "Rebecca", + "tokens": [ + "Rebecca" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ri.json b/data/films/queries/ri.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/ri.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/riv.json b/data/films/queries/riv.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/riv.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/rive.json b/data/films/queries/rive.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/rive.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/river.json b/data/films/queries/river.json new file mode 100644 index 0000000000..d93459030e --- /dev/null +++ b/data/films/queries/river.json @@ -0,0 +1,14 @@ +[ + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/s.json b/data/films/queries/s.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/s.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/sh.json b/data/films/queries/sh.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/sh.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/sho.json b/data/films/queries/sho.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/sho.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/show.json b/data/films/queries/show.json new file mode 100644 index 0000000000..43b6eacb1d --- /dev/null +++ b/data/films/queries/show.json @@ -0,0 +1,13 @@ +[ + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/t.json b/data/films/queries/t.json new file mode 100644 index 0000000000..58190f774c --- /dev/null +++ b/data/films/queries/t.json @@ -0,0 +1,168 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + }, + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + }, + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + }, + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + }, + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + }, + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + }, + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + }, + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + }, + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + }, + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + }, + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + }, + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + }, + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + }, + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ta.json b/data/films/queries/ta.json new file mode 100644 index 0000000000..febdb06f65 --- /dev/null +++ b/data/films/queries/ta.json @@ -0,0 +1,14 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/tak.json b/data/films/queries/tak.json new file mode 100644 index 0000000000..febdb06f65 --- /dev/null +++ b/data/films/queries/tak.json @@ -0,0 +1,14 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/take.json b/data/films/queries/take.json new file mode 100644 index 0000000000..febdb06f65 --- /dev/null +++ b/data/films/queries/take.json @@ -0,0 +1,14 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/th.json b/data/films/queries/th.json new file mode 100644 index 0000000000..a81a2c801b --- /dev/null +++ b/data/films/queries/th.json @@ -0,0 +1,146 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + }, + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + }, + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + }, + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + }, + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + }, + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + }, + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + }, + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + }, + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + }, + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + }, + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + }, + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/the.json b/data/films/queries/the.json new file mode 100644 index 0000000000..a81a2c801b --- /dev/null +++ b/data/films/queries/the.json @@ -0,0 +1,146 @@ +[ + { + "year": "1928/1929", + "value": "The Broadway Melody", + "tokens": [ + "The", + "Broadway", + "Melody" + ] + }, + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1935", + "value": "Mutiny on the Bounty", + "tokens": [ + "Mutiny", + "on", + "the", + "Bounty" + ] + }, + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + }, + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + }, + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + }, + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + }, + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + }, + { + "year": "1949", + "value": "All the Kings Men", + "tokens": [ + "All", + "the", + "Kings", + "Men" + ] + }, + { + "year": "1952", + "value": "The Greatest Show on Earth", + "tokens": [ + "The", + "Greatest", + "Show", + "on", + "Earth" + ] + }, + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + }, + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + }, + { + "year": "1957", + "value": "The Bridge on the River Kwai", + "tokens": [ + "The", + "Bridge", + "on", + "the", + "River", + "Kwai" + ] + }, + { + "year": "1960", + "value": "The Apartment", + "tokens": [ + "The", + "Apartment" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/to.json b/data/films/queries/to.json new file mode 100644 index 0000000000..0b9c7452c1 --- /dev/null +++ b/data/films/queries/to.json @@ -0,0 +1,12 @@ +[ + { + "year": "1953", + "value": "From Here to Eternity", + "tokens": [ + "From", + "Here", + "to", + "Eternity" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/v.json b/data/films/queries/v.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/v.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/va.json b/data/films/queries/va.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/va.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/val.json b/data/films/queries/val.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/val.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/vall.json b/data/films/queries/vall.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/vall.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/valle.json b/data/films/queries/valle.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/valle.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/valley.json b/data/films/queries/valley.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/valley.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/w.json b/data/films/queries/w.json new file mode 100644 index 0000000000..65191b8a9b --- /dev/null +++ b/data/films/queries/w.json @@ -0,0 +1,93 @@ +[ + { + "year": "1927/1928", + "value": "Wings", + "tokens": [ + "Wings" + ] + }, + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + }, + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + }, + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + }, + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + }, + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + }, + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + }, + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wa.json b/data/films/queries/wa.json new file mode 100644 index 0000000000..b3d07e9ec7 --- /dev/null +++ b/data/films/queries/wa.json @@ -0,0 +1,31 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + }, + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + }, + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/was.json b/data/films/queries/was.json new file mode 100644 index 0000000000..685a907be1 --- /dev/null +++ b/data/films/queries/was.json @@ -0,0 +1,13 @@ +[ + { + "year": "1941", + "value": "How Green Was My Valley", + "tokens": [ + "How", + "Green", + "Was", + "My", + "Valley" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wat.json b/data/films/queries/wat.json new file mode 100644 index 0000000000..ccffaa1795 --- /dev/null +++ b/data/films/queries/wat.json @@ -0,0 +1,11 @@ +[ + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wate.json b/data/films/queries/wate.json new file mode 100644 index 0000000000..ccffaa1795 --- /dev/null +++ b/data/films/queries/wate.json @@ -0,0 +1,11 @@ +[ + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/water.json b/data/films/queries/water.json new file mode 100644 index 0000000000..ccffaa1795 --- /dev/null +++ b/data/films/queries/water.json @@ -0,0 +1,11 @@ +[ + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/waterf.json b/data/films/queries/waterf.json new file mode 100644 index 0000000000..ccffaa1795 --- /dev/null +++ b/data/films/queries/waterf.json @@ -0,0 +1,11 @@ +[ + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/waterfr.json b/data/films/queries/waterfr.json new file mode 100644 index 0000000000..ccffaa1795 --- /dev/null +++ b/data/films/queries/waterfr.json @@ -0,0 +1,11 @@ +[ + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/waterfro.json b/data/films/queries/waterfro.json new file mode 100644 index 0000000000..ccffaa1795 --- /dev/null +++ b/data/films/queries/waterfro.json @@ -0,0 +1,11 @@ +[ + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/waterfron.json b/data/films/queries/waterfron.json new file mode 100644 index 0000000000..ccffaa1795 --- /dev/null +++ b/data/films/queries/waterfron.json @@ -0,0 +1,11 @@ +[ + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/waterfront.json b/data/films/queries/waterfront.json new file mode 100644 index 0000000000..ccffaa1795 --- /dev/null +++ b/data/films/queries/waterfront.json @@ -0,0 +1,11 @@ +[ + { + "year": "1954", + "value": "On the Waterfront", + "tokens": [ + "On", + "the", + "Waterfront" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/way.json b/data/films/queries/way.json new file mode 100644 index 0000000000..e5485922b1 --- /dev/null +++ b/data/films/queries/way.json @@ -0,0 +1,11 @@ +[ + { + "year": "1944", + "value": "Going My Way", + "tokens": [ + "Going", + "My", + "Way" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/we.json b/data/films/queries/we.json new file mode 100644 index 0000000000..ae20710a4e --- /dev/null +++ b/data/films/queries/we.json @@ -0,0 +1,23 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + }, + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wee.json b/data/films/queries/wee.json new file mode 100644 index 0000000000..5546fc077d --- /dev/null +++ b/data/films/queries/wee.json @@ -0,0 +1,11 @@ +[ + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/week.json b/data/films/queries/week.json new file mode 100644 index 0000000000..5546fc077d --- /dev/null +++ b/data/films/queries/week.json @@ -0,0 +1,11 @@ +[ + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/weeke.json b/data/films/queries/weeke.json new file mode 100644 index 0000000000..5546fc077d --- /dev/null +++ b/data/films/queries/weeke.json @@ -0,0 +1,11 @@ +[ + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/weeken.json b/data/films/queries/weeken.json new file mode 100644 index 0000000000..5546fc077d --- /dev/null +++ b/data/films/queries/weeken.json @@ -0,0 +1,11 @@ +[ + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/weekend.json b/data/films/queries/weekend.json new file mode 100644 index 0000000000..5546fc077d --- /dev/null +++ b/data/films/queries/weekend.json @@ -0,0 +1,11 @@ +[ + { + "year": "1945", + "value": "The Lost Weekend", + "tokens": [ + "The", + "Lost", + "Weekend" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wes.json b/data/films/queries/wes.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/wes.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/west.json b/data/films/queries/west.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/west.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/weste.json b/data/films/queries/weste.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/weste.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wester.json b/data/films/queries/wester.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/wester.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/western.json b/data/films/queries/western.json new file mode 100644 index 0000000000..ae07bea96a --- /dev/null +++ b/data/films/queries/western.json @@ -0,0 +1,14 @@ +[ + { + "year": "1929/1930", + "value": "All Quiet on the Western Front", + "tokens": [ + "All", + "Quiet", + "on", + "the", + "Western", + "Front" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wi.json b/data/films/queries/wi.json new file mode 100644 index 0000000000..be9479e7aa --- /dev/null +++ b/data/films/queries/wi.json @@ -0,0 +1,31 @@ +[ + { + "year": "1927/1928", + "value": "Wings", + "tokens": [ + "Wings" + ] + }, + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + }, + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/win.json b/data/films/queries/win.json new file mode 100644 index 0000000000..b629eac2e4 --- /dev/null +++ b/data/films/queries/win.json @@ -0,0 +1,19 @@ +[ + { + "year": "1927/1928", + "value": "Wings", + "tokens": [ + "Wings" + ] + }, + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wind.json b/data/films/queries/wind.json new file mode 100644 index 0000000000..d896f41aa9 --- /dev/null +++ b/data/films/queries/wind.json @@ -0,0 +1,12 @@ +[ + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wing.json b/data/films/queries/wing.json new file mode 100644 index 0000000000..ce1c2e595f --- /dev/null +++ b/data/films/queries/wing.json @@ -0,0 +1,9 @@ +[ + { + "year": "1927/1928", + "value": "Wings", + "tokens": [ + "Wings" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wings.json b/data/films/queries/wings.json new file mode 100644 index 0000000000..ce1c2e595f --- /dev/null +++ b/data/films/queries/wings.json @@ -0,0 +1,9 @@ +[ + { + "year": "1927/1928", + "value": "Wings", + "tokens": [ + "Wings" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wit.json b/data/films/queries/wit.json new file mode 100644 index 0000000000..b35031bfa7 --- /dev/null +++ b/data/films/queries/wit.json @@ -0,0 +1,24 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + }, + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/with.json b/data/films/queries/with.json new file mode 100644 index 0000000000..b35031bfa7 --- /dev/null +++ b/data/films/queries/with.json @@ -0,0 +1,24 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + }, + { + "year": "1939", + "value": "Gone with the Wind", + "tokens": [ + "Gone", + "with", + "the", + "Wind" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wo.json b/data/films/queries/wo.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/wo.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/wor.json b/data/films/queries/wor.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/wor.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/worl.json b/data/films/queries/worl.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/worl.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/world.json b/data/films/queries/world.json new file mode 100644 index 0000000000..b02ce37ec2 --- /dev/null +++ b/data/films/queries/world.json @@ -0,0 +1,14 @@ +[ + { + "year": "1956", + "value": "Around the World in 80 Days", + "tokens": [ + "Around", + "the", + "World", + "in", + "80", + "Days" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/y.json b/data/films/queries/y.json new file mode 100644 index 0000000000..1d3abb5060 --- /dev/null +++ b/data/films/queries/y.json @@ -0,0 +1,26 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + }, + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ye.json b/data/films/queries/ye.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/ye.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/yea.json b/data/films/queries/yea.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/yea.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/year.json b/data/films/queries/year.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/year.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/years.json b/data/films/queries/years.json new file mode 100644 index 0000000000..06e1119e52 --- /dev/null +++ b/data/films/queries/years.json @@ -0,0 +1,14 @@ +[ + { + "year": "1946", + "value": "The Best Years of Our Lives", + "tokens": [ + "The", + "Best", + "Years", + "of", + "Our", + "Lives" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/yo.json b/data/films/queries/yo.json new file mode 100644 index 0000000000..febdb06f65 --- /dev/null +++ b/data/films/queries/yo.json @@ -0,0 +1,14 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/you.json b/data/films/queries/you.json new file mode 100644 index 0000000000..febdb06f65 --- /dev/null +++ b/data/films/queries/you.json @@ -0,0 +1,14 @@ +[ + { + "year": "1938", + "value": "You Can't Take It with You", + "tokens": [ + "You", + "Can't", + "Take", + "It", + "with", + "You" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/z.json b/data/films/queries/z.json new file mode 100644 index 0000000000..27ce084df8 --- /dev/null +++ b/data/films/queries/z.json @@ -0,0 +1,22 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + }, + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/zi.json b/data/films/queries/zi.json new file mode 100644 index 0000000000..479f24e134 --- /dev/null +++ b/data/films/queries/zi.json @@ -0,0 +1,11 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/zie.json b/data/films/queries/zie.json new file mode 100644 index 0000000000..479f24e134 --- /dev/null +++ b/data/films/queries/zie.json @@ -0,0 +1,11 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/zieg.json b/data/films/queries/zieg.json new file mode 100644 index 0000000000..479f24e134 --- /dev/null +++ b/data/films/queries/zieg.json @@ -0,0 +1,11 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ziegf.json b/data/films/queries/ziegf.json new file mode 100644 index 0000000000..479f24e134 --- /dev/null +++ b/data/films/queries/ziegf.json @@ -0,0 +1,11 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ziegfe.json b/data/films/queries/ziegfe.json new file mode 100644 index 0000000000..479f24e134 --- /dev/null +++ b/data/films/queries/ziegfe.json @@ -0,0 +1,11 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ziegfel.json b/data/films/queries/ziegfel.json new file mode 100644 index 0000000000..479f24e134 --- /dev/null +++ b/data/films/queries/ziegfel.json @@ -0,0 +1,11 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/ziegfeld.json b/data/films/queries/ziegfeld.json new file mode 100644 index 0000000000..479f24e134 --- /dev/null +++ b/data/films/queries/ziegfeld.json @@ -0,0 +1,11 @@ +[ + { + "year": "1936", + "value": "The Great Ziegfeld", + "tokens": [ + "The", + "Great", + "Ziegfeld" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/zo.json b/data/films/queries/zo.json new file mode 100644 index 0000000000..667be801a0 --- /dev/null +++ b/data/films/queries/zo.json @@ -0,0 +1,13 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/zol.json b/data/films/queries/zol.json new file mode 100644 index 0000000000..667be801a0 --- /dev/null +++ b/data/films/queries/zol.json @@ -0,0 +1,13 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/films/queries/zola.json b/data/films/queries/zola.json new file mode 100644 index 0000000000..667be801a0 --- /dev/null +++ b/data/films/queries/zola.json @@ -0,0 +1,13 @@ +[ + { + "year": "1937", + "value": "The Life of Emile Zola", + "tokens": [ + "The", + "Life", + "of", + "Emile", + "Zola" + ] + } +] \ No newline at end of file diff --git a/data/nba.json b/data/nba.json new file mode 100644 index 0000000000..2a8491a3d7 --- /dev/null +++ b/data/nba.json @@ -0,0 +1 @@ +[{ "team": "Boston Celtics" },{ "team": "Dallas Mavericks" },{ "team": "Brooklyn Nets" },{ "team": "Houston Rockets" },{ "team": "New York Knicks" },{ "team": "Memphis Grizzlies" },{ "team": "Philadelphia 76ers" },{ "team": "New Orleans Hornets" },{ "team": "Toronto Raptors" },{ "team": "San Antonio Spurs" },{ "team": "Chicago Bulls" },{ "team": "Denver Nuggets" },{ "team": "Cleveland Cavaliers" },{ "team": "Minnesota Timberwolves" },{ "team": "Detroit Pistons" },{ "team": "Portland Trail Blazers" },{ "team": "Indiana Pacers" },{ "team": "Oklahoma City Thunder" },{ "team": "Milwaukee Bucks" },{ "team": "Utah Jazz" },{ "team": "Atlanta Hawks" },{ "team": "Golden State Warriors" },{ "team": "Charlotte Bobcats" },{ "team": "Los Angeles Clippers" },{ "team": "Miami Heat" },{ "team": "Los Angeles Lakers" },{ "team": "Orlando Magic" },{ "team": "Phoenix Suns" },{ "team": "Washington Wizards" },{ "team": "Sacramento Kings" }] diff --git a/data/nfl.json b/data/nfl.json new file mode 100644 index 0000000000..9429e5df13 --- /dev/null +++ b/data/nfl.json @@ -0,0 +1,34 @@ +[ +{ "team": "San Francisco 49ers" }, +{ "team": "Chicago Bears" }, +{ "team": "Cincinnati Bengals" }, +{ "team": "Buffalo Bills" }, +{ "team": "Denver Broncos" }, +{ "team": "Cleveland Browns" }, +{ "team": "Tampa Bay Buccaneers" }, +{ "team": "Arizona Cardinals" }, +{ "team": "San Diego Chargers" }, +{ "team": "Kansas City Chiefs" }, +{ "team": "Indianapolis Colts" }, +{ "team": "Dallas Cowboys" }, +{ "team": "Miami Dolphins" }, +{ "team": "Philadelphia Eagles" }, +{ "team": "Atlanta Falcons" }, +{ "team": "New York Giants" }, +{ "team": "Jacksonville Jaguars" }, +{ "team": "New York Jets" }, +{ "team": "Detroit Lions" }, +{ "team": "Green Bay Packers" }, +{ "team": "Carolina Panthers" }, +{ "team": "New England Patriots" }, +{ "team": "Oakland Raiders" }, +{ "team": "St.Louis Rams" }, +{ "team": "Baltimore Ravens" }, +{ "team": "Washington Redskins" }, +{ "team": "New Orlean Saints" }, +{ "team": "Seattle Seahawks" }, +{ "team": "Pittsburgh Steelers" }, +{ "team": "Houston Texans" }, +{ "team": "Tennesse Titans" }, +{ "team": "Minnesota Viking" } +] diff --git a/data/nhl.json b/data/nhl.json new file mode 100644 index 0000000000..c98903a407 --- /dev/null +++ b/data/nhl.json @@ -0,0 +1 @@ +[{ "team": "New Jersey Devils" },{ "team": "New York Islanders" },{ "team": "New York Rangers" },{ "team": "Philadelphia Flyers" },{ "team": "Pittsburgh Penguins" },{ "team": "Chicago Blackhawks" },{ "team": "Columbus Blue Jackets" },{ "team": "Detroit Red Wings" },{ "team": "Nashville Predators" },{ "team": "St. Louis Blues" },{ "team": "Boston Bruins" },{ "team": "Buffalo Sabres" },{ "team": "Montreal Canadiens" },{ "team": "Ottawa Senators" },{ "team": "Toronto Maple Leafs" },{ "team": "Calgary Flames" },{ "team": "Colorado Avalanche" },{ "team": "Edmonton Oilers" },{ "team": "Minnesota Wild" },{ "team": "Vancouver Canucks" },{ "team": "Carolina Hurricanes" },{ "team": "Florida Panthers" },{ "team": "Tampa Bay Lightning" },{ "team": "Washington Capitals" },{ "team": "Winnipeg Jets" },{ "team": "Anaheim Ducks" },{ "team": "Dallas Stars" },{ "team": "Los Angeles Kings" },{ "team": "Phoenix Coyotes" },{ "team": "San Jose Sharks" }] diff --git a/data/repos.json b/data/repos.json new file mode 100644 index 0000000000..8cc954f909 --- /dev/null +++ b/data/repos.json @@ -0,0 +1,1093 @@ +[ + { + "name": "typeahead.js", + "description": "A fast and fully-featured autocomplete library", + "language": "JavaScript", + "value": "typeahead.js", + "tokens": [ + "typeahead.js", + "JavaScript" + ] + }, + { + "name": "cassandra", + "description": "A Ruby client for the Cassandra distributed database", + "language": "Ruby", + "value": "cassandra", + "tokens": [ + "cassandra", + "Ruby" + ] + }, + { + "name": "hadoop-lzo", + "description": "Refactored version of code.google.com/hadoop-gpl-compression for hadoop 0.20", + "language": "Shell", + "value": "hadoop-lzo", + "tokens": [ + "hadoop", + "lzo", + "Shell", + "hadoop-lzo" + ] + }, + { + "name": "scribe", + "description": "A Ruby client library for Scribe", + "language": "Ruby", + "value": "scribe", + "tokens": [ + "scribe", + "Ruby" + ] + }, + { + "name": "thrift_client", + "description": "A Thrift client wrapper that encapsulates some common failover behavior", + "language": "Ruby", + "value": "thrift_client", + "tokens": [ + "thrift", + "client", + "Ruby", + "thrift_client" + ] + }, + { + "name": "mustache.js", + "description": "Minimal templating with {{mustaches}} in JavaScript", + "language": "JavaScript", + "value": "mustache.js", + "tokens": [ + "mustache.js", + "JavaScript" + ] + }, + { + "name": "grabby-hands", + "description": "A JVM Kestrel client that aggregates queues from multiple servers. Implemented in Scala with Java bindings. In use at Twitter for all JVM Search and Streaming Kestrel interactions.", + "language": "Scala", + "value": "grabby-hands", + "tokens": [ + "grabby", + "hands", + "Scala", + "grabby-hands" + ] + }, + { + "name": "gizzard", + "description": "A flexible sharding framework for creating eventually-consistent distributed datastores", + "language": "Scala", + "value": "gizzard", + "tokens": [ + "gizzard", + "Scala" + ] + }, + { + "name": "thrift", + "description": "Twitter's out-of-date, forked thrift", + "language": "C++", + "value": "thrift", + "tokens": [ + "thrift", + "C++" + ] + }, + { + "name": "flockdb", + "description": "A distributed, fault-tolerant graph database", + "language": "Scala", + "value": "flockdb", + "tokens": [ + "flockdb", + "Scala" + ] + }, + { + "name": "flockdb-client", + "description": "A Ruby client library for FlockDB", + "language": "Ruby", + "value": "flockdb-client", + "tokens": [ + "flockdb", + "client", + "Ruby", + "flockdb-client" + ] + }, + { + "name": "standard-project", + "description": "A slightly more standard sbt project plugin library ", + "language": "Scala", + "value": "standard-project", + "tokens": [ + "standard", + "project", + "Scala", + "standard-project" + ] + }, + { + "name": "snowflake", + "description": "Snowflake is a network service for generating unique ID numbers at high scale with some simple guarantees.", + "language": "Scala", + "value": "snowflake", + "tokens": [ + "snowflake", + "Scala" + ] + }, + { + "name": "haplocheirus", + "description": "A Redis-backed storage engine for timelines", + "language": "Scala", + "value": "haplocheirus", + "tokens": [ + "haplocheirus", + "Scala" + ] + }, + { + "name": "gizzmo", + "description": "A command-line client for Gizzard", + "language": "Ruby", + "value": "gizzmo", + "tokens": [ + "gizzmo", + "Ruby" + ] + }, + { + "name": "scala-zookeeper-client", + "description": "A Scala client library for ZooKeeper", + "language": "Scala", + "value": "scala-zookeeper-client", + "tokens": [ + "scala", + "zookeeper", + "client", + "Scala", + "scala-zookeeper-client" + ] + }, + { + "name": "rpc-client", + "description": "A scala library that encapsulates RPC communications.", + "language": "Scala", + "value": "rpc-client", + "tokens": [ + "rpc", + "client", + "Scala", + "rpc-client" + ] + }, + { + "name": "twitcher", + "description": "A tool for executing scripts when ZooKeeper nodes change.", + "language": "Python", + "value": "twitcher", + "tokens": [ + "twitcher", + "Python" + ] + }, + { + "name": "killdeer", + "description": "Killdeer is a simple server for replaying a sample of responses to sythentically recreate production response characteristics.", + "language": "Scala", + "value": "killdeer", + "tokens": [ + "killdeer", + "Scala" + ] + }, + { + "name": "ostrich", + "description": "A stats collector & reporter for Scala servers", + "language": "Scala", + "value": "ostrich", + "tokens": [ + "ostrich", + "Scala" + ] + }, + { + "name": "rubyenterpriseedition187-248", + "description": "Twitter's updates to Ruby Enterprise Edition, itself based on MRI 1.8.7-p248", + "language": "Ruby", + "value": "rubyenterpriseedition187-248", + "tokens": [ + "rubyenterpriseedition187", + "248", + "Ruby", + "rubyenterpriseedition187-248" + ] + }, + { + "name": "scala_school", + "description": "Lessons in the Fundamentals of Scala", + "language": "Scala", + "value": "scala_school", + "tokens": [ + "scala", + "school", + "Scala", + "scala_school" + ] + }, + { + "name": "querulous", + "description": "An agreeable way to talk to your database", + "language": "Scala", + "value": "querulous", + "tokens": [ + "querulous", + "Scala" + ] + }, + { + "name": "xrayspecs", + "description": "extensions to scala specs", + "language": "Scala", + "value": "xrayspecs", + "tokens": [ + "xrayspecs", + "Scala" + ] + }, + { + "name": "kestrel-client", + "description": "A Kestrel client library for Ruby", + "language": "Ruby", + "value": "kestrel-client", + "tokens": [ + "kestrel", + "client", + "Ruby", + "kestrel-client" + ] + }, + { + "name": "finagle", + "description": "A fault tolerant, protocol-agnostic RPC system", + "language": "Scala", + "value": "finagle", + "tokens": [ + "finagle", + "Scala" + ] + }, + { + "name": "naggati2", + "description": "Protocol builder for netty using scala", + "language": "Scala", + "value": "naggati2", + "tokens": [ + "naggati2", + "Scala" + ] + }, + { + "name": "twitter-text-conformance", + "description": "Conformance testing data for the twitter-text-* repositories", + "language": null, + "value": "twitter-text-conformance", + "tokens": [ + "twitter", + "text", + "conformance", + "twitter-text-conformance" + ] + }, + { + "name": "twitter-text-rb", + "description": "A library that does auto linking and extraction of usernames, lists and hashtags in tweets", + "language": "Ruby", + "value": "twitter-text-rb", + "tokens": [ + "twitter", + "text", + "rb", + "Ruby", + "twitter-text-rb" + ] + }, + { + "name": "twitter-text-java", + "description": "A Java implementation of Twitter's text processing library", + "language": "Java", + "value": "twitter-text-java", + "tokens": [ + "twitter", + "text", + "java", + "Java", + "twitter-text-java" + ] + }, + { + "name": "twitter-text-js", + "description": "A JavaScript implementation of Twitter's text processing library", + "language": "JavaScript", + "value": "twitter-text-js", + "tokens": [ + "twitter", + "text", + "js", + "JavaScript", + "twitter-text-js" + ] + }, + { + "name": "joauth", + "description": "A Scala library for authenticating HTTP Requests using OAuth", + "language": "Scala", + "value": "joauth", + "tokens": [ + "joauth", + "Scala" + ] + }, + { + "name": "schmemcached", + "description": "A prototype implementation of a Memcached client & server in Scala using Finagle", + "language": "Scala", + "value": "schmemcached", + "tokens": [ + "schmemcached", + "Scala" + ] + }, + { + "name": "chainsaw", + "description": "A thin Scala wrapper for SLF4J", + "language": "Scala", + "value": "chainsaw", + "tokens": [ + "chainsaw", + "Scala" + ] + }, + { + "name": "streamyj", + "description": "Scala sugar for the Jackson JSON parser", + "language": "Scala", + "value": "streamyj", + "tokens": [ + "streamyj", + "Scala" + ] + }, + { + "name": "cloudhopper-commons-util", + "description": "The ch-commons-util package contains common utility classes for Cloudhopper-based Java projects.", + "language": "Java", + "value": "cloudhopper-commons-util", + "tokens": [ + "cloudhopper", + "commons", + "util", + "Java", + "cloudhopper-commons-util" + ] + }, + { + "name": "twitter.github.com", + "description": "A listing of open source efforts at Twitter on GitHub", + "language": "JavaScript", + "value": "twitter.github.com", + "tokens": [ + "twitter.github.com", + "JavaScript" + ] + }, + { + "name": "time_constants", + "description": "Time constants, in seconds, so you don't have to use slow ActiveSupport helpers", + "language": "Ruby", + "value": "time_constants", + "tokens": [ + "time", + "constants", + "Ruby", + "time_constants" + ] + }, + { + "name": "commons", + "description": "Twitter common libraries for python and the JVM", + "language": "Java", + "value": "commons", + "tokens": [ + "commons", + "Java" + ] + }, + { + "name": "scala-bootstrapper", + "description": "initial setup for a scala library or server, using sbt", + "language": "Ruby", + "value": "scala-bootstrapper", + "tokens": [ + "scala", + "bootstrapper", + "Ruby", + "scala-bootstrapper" + ] + }, + { + "name": "sbt-thrift", + "description": "sbt rules for generating source stubs out of thrift IDLs, for java & scala", + "language": "Ruby", + "value": "sbt-thrift", + "tokens": [ + "sbt", + "thrift", + "Ruby", + "sbt-thrift" + ] + }, + { + "name": "cloudhopper-smpp", + "description": "Efficient, scalable, and flexible Java implementation of the Short Messaging Peer to Peer Protocol (SMPP)", + "language": "Java", + "value": "cloudhopper-smpp", + "tokens": [ + "cloudhopper", + "smpp", + "Java", + "cloudhopper-smpp" + ] + }, + { + "name": "cloudhopper-commons-charset", + "description": "Java utility classes for converting between charsets (mostly \"mobile\" in nature) such as Unicode to GSM-7/GSM-8 and vice versa.", + "language": "Java", + "value": "cloudhopper-commons-charset", + "tokens": [ + "cloudhopper", + "commons", + "charset", + "Java", + "cloudhopper-commons-charset" + ] + }, + { + "name": "cloudhopper-commons-gsm", + "description": "Java utility classes for working with GSM mobile technologies such as SMS and MMS.", + "language": "Java", + "value": "cloudhopper-commons-gsm", + "tokens": [ + "cloudhopper", + "commons", + "gsm", + "Java", + "cloudhopper-commons-gsm" + ] + }, + { + "name": "util", + "description": "Wonderful reusable code from Twitter", + "language": "Scala", + "value": "util", + "tokens": [ + "util", + "Scala" + ] + }, + { + "name": "Rowz", + "description": "A sample gizzard application", + "language": "Scala", + "value": "Rowz", + "tokens": [ + "rowz", + "Scala" + ] + }, + { + "name": "scala-json", + "description": "Scala JSON toolkit. Originally from the Odersky \"Stairway\" Book, tightened up and tests added by Twitter", + "language": "Scala", + "value": "scala-json", + "tokens": [ + "scala", + "json", + "Scala", + "scala-json" + ] + }, + { + "name": "twui", + "description": "A UI framework for Mac based on Core Animation", + "language": "Objective-C", + "value": "twui", + "tokens": [ + "twui", + "Objective-C" + ] + }, + { + "name": "bootstrap", + "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development.", + "language": "JavaScript", + "value": "bootstrap", + "tokens": [ + "bootstrap", + "JavaScript" + ] + }, + { + "name": "scrooge-runtime", + "description": "Runtime classes for scrooge-generated Thrift code", + "language": "Scala", + "value": "scrooge-runtime", + "tokens": [ + "scrooge", + "runtime", + "Scala", + "scrooge-runtime" + ] + }, + { + "name": "sbt-scrooge", + "description": "An SBT plugin that adds a mixin for doing Thrift code auto-generation during your compile phase", + "language": "Scala", + "value": "sbt-scrooge", + "tokens": [ + "sbt", + "scrooge", + "Scala", + "sbt-scrooge" + ] + }, + { + "name": "scrooge", + "description": "A Thrift generator for Scala", + "language": "Scala", + "value": "scrooge", + "tokens": [ + "scrooge", + "Scala" + ] + }, + { + "name": "webrat", + "description": "Webrat - Ruby Acceptance Testing for Web applications", + "language": "Ruby", + "value": "webrat", + "tokens": [ + "webrat", + "Ruby" + ] + }, + { + "name": "twemperf", + "description": "A tool for measuring memcached server performance", + "language": "C", + "value": "twemperf", + "tokens": [ + "twemperf", + "C" + ] + }, + { + "name": "pycascading", + "description": "A Python wrapper for Cascading", + "language": "Python", + "value": "pycascading", + "tokens": [ + "pycascading", + "Python" + ] + }, + { + "name": "hogan.js", + "description": "A compiler for the Mustache templating language", + "language": "JavaScript", + "value": "hogan.js", + "tokens": [ + "hogan.js", + "JavaScript" + ] + }, + { + "name": "mysql", + "description": "MySQL fork maintained and used at Twitter", + "language": "C", + "value": "mysql", + "tokens": [ + "mysql", + "C" + ] + }, + { + "name": "scalding", + "description": "A Scala API for Cascading", + "language": "Scala", + "value": "scalding", + "tokens": [ + "scalding", + "Scala" + ] + }, + { + "name": "cassie", + "description": "A Scala client for Cassandra", + "language": "Scala", + "value": "cassie", + "tokens": [ + "cassie", + "Scala" + ] + }, + { + "name": "effectivescala", + "description": "Twitter's Effective Scala Guide", + "language": "Shell", + "value": "effectivescala", + "tokens": [ + "effectivescala", + "Shell" + ] + }, + { + "name": "twitterActors", + "description": "Improved Scala actors library; used internally at Twitter", + "language": "Scala", + "value": "twitterActors", + "tokens": [ + "twitteractors", + "Scala" + ] + }, + { + "name": "mahout", + "description": "Twitter's fork of Apache Mahout (we intend to push changes upstream)", + "language": "Java", + "value": "mahout", + "tokens": [ + "mahout", + "Java" + ] + }, + { + "name": "cassovary", + "description": "Cassovary is a simple big graph processing library for the JVM", + "language": "Scala", + "value": "cassovary", + "tokens": [ + "cassovary", + "Scala" + ] + }, + { + "name": "twemproxy", + "description": "A fast, light-weight proxy for memcached and redis", + "language": "C", + "value": "twemproxy", + "tokens": [ + "twemproxy", + "C" + ] + }, + { + "name": "jvmgcprof", + "description": "A simple utility for profile allocation and garbage collection activity in the JVM", + "language": "C", + "value": "jvmgcprof", + "tokens": [ + "jvmgcprof", + "C" + ] + }, + { + "name": "twitter-cldr-rb", + "description": "Ruby implementation of the ICU (International Components for Unicode) that uses the Common Locale Data Repository to format dates, plurals, and more.", + "language": "Ruby", + "value": "twitter-cldr-rb", + "tokens": [ + "twitter", + "cldr", + "rb", + "Ruby", + "twitter-cldr-rb" + ] + }, + { + "name": "bootstrap-server", + "description": "The node server that powers the bootstrap customize page", + "language": "JavaScript", + "value": "bootstrap-server", + "tokens": [ + "bootstrap", + "server", + "JavaScript", + "bootstrap-server" + ] + }, + { + "name": "sbt-package-dist", + "description": "sbt 11 plugin codifying best practices for building, packaging, and publishing", + "language": "Scala", + "value": "sbt-package-dist", + "tokens": [ + "sbt", + "package", + "dist", + "Scala", + "sbt-package-dist" + ] + }, + { + "name": "ospriet", + "description": "An example audience moderation app built on Twitter", + "language": "JavaScript", + "value": "ospriet", + "tokens": [ + "ospriet", + "JavaScript" + ] + }, + { + "name": "innovators-patent-agreement", + "description": "Innovators Patent Agreement (IPA)", + "language": null, + "value": "innovators-patent-agreement", + "tokens": [ + "innovators", + "patent", + "agreement", + "innovators-patent-agreement" + ] + }, + { + "name": "recess", + "description": "A simple and attractive code quality tool for CSS built on top of LESS", + "language": "JavaScript", + "value": "recess", + "tokens": [ + "recess", + "JavaScript" + ] + }, + { + "name": "ambrose", + "description": "A platform for visualization and real-time monitoring of data workflows", + "language": "JavaScript", + "value": "ambrose", + "tokens": [ + "ambrose", + "JavaScript" + ] + }, + { + "name": "twitter-text-objc", + "description": "An Objective-C implementation of Twitter's text processing library", + "language": "Objective-C", + "value": "twitter-text-objc", + "tokens": [ + "twitter", + "text", + "objc", + "Objective-C", + "twitter-text-objc" + ] + }, + { + "name": "activerecord-reputation-system", + "description": "An Active Record Reputation System for Rails", + "language": "Ruby", + "value": "activerecord-reputation-system", + "tokens": [ + "activerecord", + "reputation", + "system", + "Ruby", + "activerecord-reputation-system" + ] + }, + { + "name": "twitter4j", + "description": "Twitter4J is an open-sourced, mavenized and Google App Engine safe Java library for the Twitter API which is released under the APL 2.0.", + "language": "Java", + "value": "twitter4j", + "tokens": [ + "twitter4j", + "Java" + ] + }, + { + "name": "zipkin", + "description": "Zipkin is a distributed tracing system", + "language": "Scala", + "value": "zipkin", + "tokens": [ + "zipkin", + "Scala" + ] + }, + { + "name": "elephant-twin", + "description": "Elephant Twin is a framework for creating indexes in Hadoop", + "language": "Java", + "value": "elephant-twin", + "tokens": [ + "elephant", + "twin", + "Java", + "elephant-twin" + ] + }, + { + "name": "elephant-twin-lzo", + "description": "Elephant Twin LZO uses Elephant Twin to create LZO block indexes", + "language": "Java", + "value": "elephant-twin-lzo", + "tokens": [ + "elephant", + "twin", + "lzo", + "Java", + "elephant-twin-lzo" + ] + }, + { + "name": "iago", + "description": "A load generator, built for engineers", + "language": "Scala", + "value": "iago", + "tokens": [ + "iago", + "Scala" + ] + }, + { + "name": "twemcache", + "description": "Twemcache is the Twitter Memcached", + "language": "C", + "value": "twemcache", + "tokens": [ + "twemcache", + "C" + ] + }, + { + "name": "twitter-cldr-js", + "description": "JavaScript implementation of the ICU (International Components for Unicode) that uses the Common Locale Data Repository to format dates, plurals, and more. Based on twitter-cldr-rb.", + "language": "JavaScript", + "value": "twitter-cldr-js", + "tokens": [ + "twitter", + "cldr", + "js", + "JavaScript", + "twitter-cldr-js" + ] + }, + { + "name": "algebird", + "description": "Abstract Algebra for Scala", + "language": "Scala", + "value": "algebird", + "tokens": [ + "algebird", + "Scala" + ] + }, + { + "name": "hdfs-du", + "description": "Visualize your HDFS cluster usage", + "language": "JavaScript", + "value": "hdfs-du", + "tokens": [ + "hdfs", + "du", + "JavaScript", + "hdfs-du" + ] + }, + { + "name": "clockworkraven", + "description": "Human-Powered Data Analysis with Mechanical Turk", + "language": "Ruby", + "value": "clockworkraven", + "tokens": [ + "clockworkraven", + "Ruby" + ] + }, + { + "name": "jerkson", + "description": "The Scala applewood bacon to Jackson's chicken breast: JSON cordon bleu.", + "language": "Scala", + "value": "jerkson", + "tokens": [ + "jerkson", + "Scala" + ] + }, + { + "name": "bower-server", + "description": "The Bower Server", + "language": "Ruby", + "value": "bower-server", + "tokens": [ + "bower", + "server", + "Ruby", + "bower-server" + ] + }, + { + "name": "bower", + "description": "A package manager for the web", + "language": "JavaScript", + "value": "bower", + "tokens": [ + "bower", + "JavaScript" + ] + }, + { + "name": "twitter-cldr-npm", + "description": "TwitterCldr npm package", + "language": "JavaScript", + "value": "twitter-cldr-npm", + "tokens": [ + "twitter", + "cldr", + "npm", + "JavaScript", + "twitter-cldr-npm" + ] + }, + { + "name": "tormenta", + "description": "Scala extensions for Storm", + "language": "Scala", + "value": "tormenta", + "tokens": [ + "tormenta", + "Scala" + ] + }, + { + "name": "sprockets-commonjs-twitter", + "description": "Adds CommonJS support to Sprockets", + "language": "JavaScript", + "value": "sprockets-commonjs-twitter", + "tokens": [ + "sprockets", + "commonjs", + "twitter", + "JavaScript", + "sprockets-commonjs-twitter" + ] + }, + { + "name": "scalding-commons", + "description": "Common extensions to the Scalding MapReduce DSL.", + "language": "Scala", + "value": "scalding-commons", + "tokens": [ + "scalding", + "commons", + "Scala", + "scalding-commons" + ] + }, + { + "name": "captured", + "description": "Quick screen capture sharing utility for Mac OS X.", + "language": "Ruby", + "value": "captured", + "tokens": [ + "captured", + "Ruby" + ] + }, + { + "name": "chill", + "description": "Scala extensions for the Kryo serialization library", + "language": "Scala", + "value": "chill", + "tokens": [ + "chill", + "Scala" + ] + }, + { + "name": "bookkeeper", + "description": "Twitter's fork of Apache BookKeeper (will push changes upstream eventually)", + "language": "Java", + "value": "bookkeeper", + "tokens": [ + "bookkeeper", + "Java" + ] + }, + { + "name": "secureheaders", + "description": "Security related headers all in one gem", + "language": "Ruby", + "value": "secureheaders", + "tokens": [ + "secureheaders", + "Ruby" + ] + }, + { + "name": "RTLtextarea", + "description": "Automatically detects RTL and configures a text input", + "language": "JavaScript", + "value": "RTLtextarea", + "tokens": [ + "rtltextarea", + "JavaScript" + ] + }, + { + "name": "bijection", + "description": "Reversible conversions between types", + "language": "Scala", + "value": "bijection", + "tokens": [ + "bijection", + "Scala" + ] + }, + { + "name": "fatcache", + "description": "Memcache on SSD", + "language": "C", + "value": "fatcache", + "tokens": [ + "fatcache", + "C" + ] + }, + { + "name": "rails", + "description": "Ruby on Rails", + "language": "Ruby", + "value": "rails", + "tokens": [ + "rails", + "Ruby" + ] + }, + { + "name": "flight", + "description": "A lightweight, component-based JavaScript framework", + "language": "JavaScript", + "value": "flight", + "tokens": [ + "flight", + "JavaScript" + ] + } +] diff --git a/dist/bloodhound.min.js b/dist/bloodhound.min.js deleted file mode 100644 index 7a02b1a5d4..0000000000 --- a/dist/bloodhound.min.js +++ /dev/null @@ -1,8 +0,0 @@ -/*! - * typeahead.js 1.3.3 - * https://github.com/corejavascript/typeahead.js - * Copyright 2013-2024 Twitter, Inc. and other contributors; Licensed MIT - */ - - -!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(c){return a.Bloodhound=b(c)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):a.Bloodhound=b(a.jQuery)}(this,function(a){var b=function(){"use strict";return{isMsie:function(){return!!/(msie|trident)/i.test(navigator.userAgent)&&navigator.userAgent.match(/(msie |rv:)(\d+(.\d+)?)/i)[2]},isBlankString:function(a){return!a||/^\s*$/.test(a)},escapeRegExChars:function(a){return a.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")},isString:function(a){return"string"==typeof a},isNumber:function(a){return"number"==typeof a},isArray:a.isArray,isFunction:a.isFunction,isObject:a.isPlainObject,isUndefined:function(a){return void 0===a},isElement:function(a){return!(!a||1!==a.nodeType)},isJQuery:function(b){return b instanceof a},toStr:function(a){return b.isUndefined(a)||null===a?"":a+""},bind:a.proxy,each:function(b,c){function d(a,b){return c(b,a)}a.each(b,d)},map:a.map,filter:a.grep,every:function(b,c){var d=!0;return b?(a.each(b,function(a,e){if(!(d=c.call(null,e,a,b)))return!1}),!!d):d},some:function(b,c){var d=!1;return b?(a.each(b,function(a,e){if(d=c.call(null,e,a,b))return!1}),!!d):d},mixin:a.extend,identity:function(a){return a},clone:function(b){return a.extend(!0,{},b)},getIdGenerator:function(){var a=0;return function(){return a++}},templatify:function(b){function c(){return String(b)}return a.isFunction(b)?b:c},defer:function(a){setTimeout(a,0)},debounce:function(a,b,c){var d,e;return function(){var f,g,h=this,i=arguments;return f=function(){d=null,c||(e=a.apply(h,i))},g=c&&!d,clearTimeout(d),d=setTimeout(f,b),g&&(e=a.apply(h,i)),e}},throttle:function(a,b){var c,d,e,f,g,h;return g=0,h=function(){g=new Date,e=null,f=a.apply(c,d)},function(){var i=new Date,j=b-(i-g);return c=this,d=arguments,j<=0?(clearTimeout(e),e=null,g=i,f=a.apply(c,d)):e||(e=setTimeout(h,j)),f}},stringify:function(a){return b.isString(a)?a:JSON.stringify(a)},guid:function(){function a(a){var b=(Math.random().toString(16)+"000000000").substr(2,8);return a?"-"+b.substr(0,4)+"-"+b.substr(4,4):b}return"tt-"+a()+a(!0)+a(!0)+a()},noop:function(){}}}(),c="1.3.3",d=function(){"use strict";function a(a){return a=b.toStr(a),a?a.split(/\s+/):[]}function c(a){return a=b.toStr(a),a?a.split(/\W+/):[]}function d(a){a=b.toStr(a);var c=[],d="";return b.each(a.split(""),function(a){a.match(/\s+/)?d="":(c.push(d+a),d+=a)}),c}function e(a){return function(c){return c=b.isArray(c)?c:[].slice.call(arguments,0),function(d){var e=[];return b.each(c,function(c){e=e.concat(a(b.toStr(d[c])))}),e}}}return{nonword:c,whitespace:a,ngram:d,obj:{nonword:e(c),whitespace:e(a),ngram:e(d)}}}(),e=function(){"use strict";function c(c){this.maxSize=b.isNumber(c)?c:100,this.reset(),this.maxSize<=0&&(this.set=this.get=a.noop)}function d(){this.head=this.tail=null}function e(a,b){this.key=a,this.val=b,this.prev=this.next=null}return b.mixin(c.prototype,{set:function(a,b){var c,d=this.list.tail;this.size>=this.maxSize&&(this.list.remove(d),delete this.hash[d.key],this.size--),(c=this.hash[a])?(c.val=b,this.list.moveToFront(c)):(c=new e(a,b),this.list.add(c),this.hash[a]=c,this.size++)},get:function(a){var b=this.hash[a];if(b)return this.list.moveToFront(b),b.val},reset:function(){this.size=0,this.hash={},this.list=new d}}),b.mixin(d.prototype,{add:function(a){this.head&&(a.next=this.head,this.head.prev=a),this.head=a,this.tail=this.tail||a},remove:function(a){a.prev?a.prev.next=a.next:this.head=a.next,a.next?a.next.prev=a.prev:this.tail=a.prev},moveToFront:function(a){this.remove(a),this.add(a)}}),c}(),f=function(){"use strict";function c(a,c){this.prefix=["__",a,"__"].join(""),this.ttlKey="__ttl__",this.keyMatcher=new RegExp("^"+b.escapeRegExChars(this.prefix)),this.ls=c||h,!this.ls&&this._noop()}function d(){return(new Date).getTime()}function e(a){return JSON.stringify(b.isUndefined(a)?null:a)}function f(b){return a.parseJSON(b)}function g(a){var b,c,d=[],e=h.length;for(b=0;bc)}}),c}(),g=function(){"use strict";function c(a){a=a||{},this.maxPendingRequests=a.maxPendingRequests||6,this.cancelled=!1,this.lastReq=null,this._send=a.transport,this._get=a.limiter?a.limiter(this._get):this._get,this._cache=!1===a.cache?new e(0):g}var d=0,f={},g=new e(10);return c.setMaxPendingRequests=function(a){this.maxPendingRequests=a},c.resetCache=function(){g.reset()},b.mixin(c.prototype,{_fingerprint:function(b){return b=b||{},b.url+b.type+a.param(b.data||{})},_get:function(a,b){function c(a){b(null,a),j._cache.set(h,a)}function e(){b(!0)}function g(){d--,delete f[h],j.onDeckRequestArgs&&(j._get.apply(j,j.onDeckRequestArgs),j.onDeckRequestArgs=null)}var h,i,j=this;h=this._fingerprint(a),this.cancelled||h!==this.lastReq||((i=f[h])?i.done(c).fail(e):db[d]?d++:(e.push(a[c]),c++,d++);return e}var h="c",i="i";return b.mixin(c.prototype,{bootstrap:function(a){this.datums=a.datums,this.trie=a.trie},add:function(a){var c=this;a=b.isArray(a)?a:[a],b.each(a,function(a){var f,g;c.datums[f=c.identify(a)]=a,g=d(c.datumTokenizer(a)),b.each(g,function(a){var b,d,g;for(b=c.trie,d=a.split("");g=d.shift();)b=b[h][g]||(b[h][g]=e()),b[i].push(f)})})},get:function(a){var c=this;return b.map(a,function(a){return c.datums[a]})},search:function(a){var c,e,j=this;return c=d(this.queryTokenizer(a)),b.each(c,function(a){var b,c,d,f;if(e&&0===e.length&&!j.matchAnyQueryToken)return!1;for(b=j.trie,c=a.split("");b&&(d=c.shift());)b=b[h][d];if(b&&0===c.length)f=b[i].slice(0),e=e?g(e,f):f;else if(!j.matchAnyQueryToken)return e=[],!1}),e?b.map(f(e),function(a){return j.datums[a]}):[]},all:function(){var a=[];for(var b in this.datums)a.push(this.datums[b]);return a},reset:function(){this.datums={},this.trie=e()},serialize:function(){return{datums:this.datums,trie:this.trie}}}),c}(),i=function(){"use strict";function a(a){this.url=a.url,this.ttl=a.ttl,this.cache=a.cache,this.prepare=a.prepare,this.transform=a.transform,this.transport=a.transport,this.thumbprint=a.thumbprint,this.storage=new f(a.cacheKey)}var c;return c={data:"data",protocol:"protocol",thumbprint:"thumbprint"},b.mixin(a.prototype,{_settings:function(){return{url:this.url,type:"GET",dataType:"json"}},store:function(a){this.cache&&(this.storage.set(c.data,a,this.ttl),this.storage.set(c.protocol,location.protocol,this.ttl),this.storage.set(c.thumbprint,this.thumbprint,this.ttl))},fromCache:function(){var a,b={};return this.cache?(b.data=this.storage.get(c.data),b.protocol=this.storage.get(c.protocol),b.thumbprint=this.storage.get(c.thumbprint),a=b.thumbprint!==this.thumbprint||b.protocol!==location.protocol,b.data&&!a?b.data:null):null},fromNetwork:function(a){function b(){a(!0)}function c(b){a(null,e.transform(b))}var d,e=this;a&&(d=this.prepare(this._settings()),this.transport(d).fail(b).done(c))},clear:function(){return this.storage.clear(),this}}),a}(),j=function(){"use strict";function a(a){this.url=a.url,this.prepare=a.prepare,this.transform=a.transform,this.indexResponse=a.indexResponse,this.transport=new g({cache:a.cache,limiter:a.limiter,transport:a.transport,maxPendingRequests:a.maxPendingRequests})}return b.mixin(a.prototype,{_settings:function(){return{url:this.url,type:"GET",dataType:"json"}},get:function(a,b){function c(a,c){b(a?[]:e.transform(c))}var d,e=this;if(b)return a=a||"",d=this.prepare(a,this._settings()),this.transport.get(d,c)},cancelLastRequest:function(){this.transport.cancel()}}),a}(),k=function(){"use strict";function d(d){var e;return d?(e={url:null,ttl:864e5,cache:!0,cacheKey:null,thumbprint:"",prepare:b.identity,transform:b.identity,transport:null},d=b.isString(d)?{url:d}:d,d=b.mixin(e,d),!d.url&&a.error("prefetch requires url to be set"),d.transform=d.filter||d.transform,d.cacheKey=d.cacheKey||d.url,d.thumbprint=c+d.thumbprint,d.transport=d.transport?h(d.transport):a.ajax,d):null}function e(c){var d;if(c)return d={url:null,cache:!0,prepare:null,replace:null,wildcard:null,limiter:null,rateLimitBy:"debounce",rateLimitWait:300,transform:b.identity,transport:null},c=b.isString(c)?{url:c}:c,c=b.mixin(d,c),!c.url&&a.error("remote requires url to be set"),c.transform=c.filter||c.transform,c.prepare=f(c),c.limiter=g(c),c.transport=c.transport?h(c.transport):a.ajax,delete c.replace,delete c.wildcard,delete c.rateLimitBy,delete c.rateLimitWait,c}function f(a){function b(a,b){return b.url=f(b.url,a),b}function c(a,b){return b.url=b.url.replace(g,encodeURIComponent(a)),b}function d(a,b){return b}var e,f,g;return e=a.prepare,f=a.replace,g=a.wildcard,e||(e=f?b:a.wildcard?c:d)}function g(a){var c,d,e;return c=a.limiter,d=a.rateLimitBy,e=a.rateLimitWait,c||(c=/^throttle$/i.test(d)?function(a){return function(c){return b.throttle(c,a)}}(e):function(a){return function(c){return b.debounce(c,a)}}(e)),c}function h(c){return function(d){function e(a){b.defer(function(){g.resolve(a)})}function f(a){b.defer(function(){g.reject(a)})}var g=a.Deferred();return c(d,e,f),g}}return function(c){var f,g;return f={initialize:!0,identify:b.stringify,datumTokenizer:null,queryTokenizer:null,matchAnyQueryToken:!1,sufficient:5,indexRemote:!1,sorter:null,local:[],prefetch:null,remote:null},c=b.mixin(f,c||{}),!c.datumTokenizer&&a.error("datumTokenizer is required"),!c.queryTokenizer&&a.error("queryTokenizer is required"),g=c.sorter,c.sorter=g?function(a){return a.sort(g)}:b.identity,c.local=b.isFunction(c.local)?c.local():c.local,c.prefetch=d(c.prefetch),c.remote=e(c.remote),c}}();return function(){"use strict";function c(a){a=k(a),this.sorter=a.sorter,this.identify=a.identify,this.sufficient=a.sufficient,this.indexRemote=a.indexRemote,this.local=a.local,this.remote=a.remote?new j(a.remote):null,this.prefetch=a.prefetch?new i(a.prefetch):null,this.index=new h({identify:this.identify,datumTokenizer:a.datumTokenizer,queryTokenizer:a.queryTokenizer}),!1!==a.initialize&&this.initialize()}var e;return e=window&&window.Bloodhound,c.noConflict=function(){return window&&(window.Bloodhound=e),c},c.tokenizers=d,b.mixin(c.prototype,{__ttAdapter:function(){function a(a,b,d){return c.search(a,b,d)}function b(a,b){return c.search(a,b)}var c=this;return this.remote?a:b},_loadPrefetch:function(){function b(a,b){if(a)return c.reject();e.add(b),e.prefetch.store(e.index.serialize()),c.resolve()}var c,d,e=this;return c=a.Deferred(),this.prefetch?(d=this.prefetch.fromCache())?(this.index.bootstrap(d),c.resolve()):this.prefetch.fromNetwork(b):c.resolve(),c.promise()},_initialize:function(){function a(){b.add(b.local)}var b=this;return this.clear(),(this.initPromise=this._loadPrefetch()).done(a),this.initPromise},initialize:function(a){return!this.initPromise||a?this._initialize():this.initPromise},add:function(a){return this.index.add(a),this},get:function(a){return a=b.isArray(a)?a:[].slice.call(arguments),this.index.get(a)},search:function(a,c,d){function e(a){var c=[];b.each(a,function(a){!b.some(f,function(b){return g.identify(a)===g.identify(b)})&&c.push(a)}),g.indexRemote&&g.add(c),d(c)}var f,g=this;return c=c||b.noop,d=d||b.noop,f=this.sorter(this.index.search(a)),c(this.remote?f.slice():f),this.remote&&f.length=this.maxSize&&(this.list.remove(d),delete this.hash[d.key],this.size--),(c=this.hash[a])?(c.val=b,this.list.moveToFront(c)):(c=new e(a,b),this.list.add(c),this.hash[a]=c,this.size++)},get:function(a){var b=this.hash[a];if(b)return this.list.moveToFront(b),b.val},reset:function(){this.size=0,this.hash={},this.list=new d}}),b.mixin(d.prototype,{add:function(a){this.head&&(a.next=this.head,this.head.prev=a),this.head=a,this.tail=this.tail||a},remove:function(a){a.prev?a.prev.next=a.next:this.head=a.next,a.next?a.next.prev=a.prev:this.tail=a.prev},moveToFront:function(a){this.remove(a),this.add(a)}}),c}(),f=function(){"use strict";function c(a,c){this.prefix=["__",a,"__"].join(""),this.ttlKey="__ttl__",this.keyMatcher=new RegExp("^"+b.escapeRegExChars(this.prefix)),this.ls=c||h,!this.ls&&this._noop()}function d(){return(new Date).getTime()}function e(a){return JSON.stringify(b.isUndefined(a)?null:a)}function f(b){return a.parseJSON(b)}function g(a){var b,c,d=[],e=h.length;for(b=0;bc)}}),c}(),g=function(){"use strict";function c(a){a=a||{},this.maxPendingRequests=a.maxPendingRequests||6,this.cancelled=!1,this.lastReq=null,this._send=a.transport,this._get=a.limiter?a.limiter(this._get):this._get,this._cache=!1===a.cache?new e(0):g}var d=0,f={},g=new e(10);return c.setMaxPendingRequests=function(a){this.maxPendingRequests=a},c.resetCache=function(){g.reset()},b.mixin(c.prototype,{_fingerprint:function(b){return b=b||{},b.url+b.type+a.param(b.data||{})},_get:function(a,b){function c(a){b(null,a),j._cache.set(h,a)}function e(){b(!0)}function g(){d--,delete f[h],j.onDeckRequestArgs&&(j._get.apply(j,j.onDeckRequestArgs),j.onDeckRequestArgs=null)}var h,i,j=this;h=this._fingerprint(a),this.cancelled||h!==this.lastReq||((i=f[h])?i.done(c).fail(e):db[d]?d++:(e.push(a[c]),c++,d++);return e}var h="c",i="i";return b.mixin(c.prototype,{bootstrap:function(a){this.datums=a.datums,this.trie=a.trie},add:function(a){var c=this;a=b.isArray(a)?a:[a],b.each(a,function(a){var f,g;c.datums[f=c.identify(a)]=a,g=d(c.datumTokenizer(a)),b.each(g,function(a){var b,d,g;for(b=c.trie,d=a.split("");g=d.shift();)b=b[h][g]||(b[h][g]=e()),b[i].push(f)})})},get:function(a){var c=this;return b.map(a,function(a){return c.datums[a]})},search:function(a){var c,e,j=this;return c=d(this.queryTokenizer(a)),b.each(c,function(a){var b,c,d,f;if(e&&0===e.length&&!j.matchAnyQueryToken)return!1;for(b=j.trie,c=a.split("");b&&(d=c.shift());)b=b[h][d];if(b&&0===c.length)f=b[i].slice(0),e=e?g(e,f):f;else if(!j.matchAnyQueryToken)return e=[],!1}),e?b.map(f(e),function(a){return j.datums[a]}):[]},all:function(){var a=[];for(var b in this.datums)a.push(this.datums[b]);return a},reset:function(){this.datums={},this.trie=e()},serialize:function(){return{datums:this.datums,trie:this.trie}}}),c}(),i=function(){"use strict";function a(a){this.url=a.url,this.ttl=a.ttl,this.cache=a.cache,this.prepare=a.prepare,this.transform=a.transform,this.transport=a.transport,this.thumbprint=a.thumbprint,this.storage=new f(a.cacheKey)}var c;return c={data:"data",protocol:"protocol",thumbprint:"thumbprint"},b.mixin(a.prototype,{_settings:function(){return{url:this.url,type:"GET",dataType:"json"}},store:function(a){this.cache&&(this.storage.set(c.data,a,this.ttl),this.storage.set(c.protocol,location.protocol,this.ttl),this.storage.set(c.thumbprint,this.thumbprint,this.ttl))},fromCache:function(){var a,b={};return this.cache?(b.data=this.storage.get(c.data),b.protocol=this.storage.get(c.protocol),b.thumbprint=this.storage.get(c.thumbprint),a=b.thumbprint!==this.thumbprint||b.protocol!==location.protocol,b.data&&!a?b.data:null):null},fromNetwork:function(a){function b(){a(!0)}function c(b){a(null,e.transform(b))}var d,e=this;a&&(d=this.prepare(this._settings()),this.transport(d).fail(b).done(c))},clear:function(){return this.storage.clear(),this}}),a}(),j=function(){"use strict";function a(a){this.url=a.url,this.prepare=a.prepare,this.transform=a.transform,this.indexResponse=a.indexResponse,this.transport=new g({cache:a.cache,limiter:a.limiter,transport:a.transport,maxPendingRequests:a.maxPendingRequests})}return b.mixin(a.prototype,{_settings:function(){return{url:this.url,type:"GET",dataType:"json"}},get:function(a,b){function c(a,c){b(a?[]:e.transform(c))}var d,e=this;if(b)return a=a||"",d=this.prepare(a,this._settings()),this.transport.get(d,c)},cancelLastRequest:function(){this.transport.cancel()}}),a}(),k=function(){"use strict";function d(d){var e;return d?(e={url:null,ttl:864e5,cache:!0,cacheKey:null,thumbprint:"",prepare:b.identity,transform:b.identity,transport:null},d=b.isString(d)?{url:d}:d,d=b.mixin(e,d),!d.url&&a.error("prefetch requires url to be set"),d.transform=d.filter||d.transform,d.cacheKey=d.cacheKey||d.url,d.thumbprint=c+d.thumbprint,d.transport=d.transport?h(d.transport):a.ajax,d):null}function e(c){var d;if(c)return d={url:null,cache:!0,prepare:null,replace:null,wildcard:null,limiter:null,rateLimitBy:"debounce",rateLimitWait:300,transform:b.identity,transport:null},c=b.isString(c)?{url:c}:c,c=b.mixin(d,c),!c.url&&a.error("remote requires url to be set"),c.transform=c.filter||c.transform,c.prepare=f(c),c.limiter=g(c),c.transport=c.transport?h(c.transport):a.ajax,delete c.replace,delete c.wildcard,delete c.rateLimitBy,delete c.rateLimitWait,c}function f(a){function b(a,b){return b.url=f(b.url,a),b}function c(a,b){return b.url=b.url.replace(g,encodeURIComponent(a)),b}function d(a,b){return b}var e,f,g;return e=a.prepare,f=a.replace,g=a.wildcard,e||(e=f?b:a.wildcard?c:d)}function g(a){var c,d,e;return c=a.limiter,d=a.rateLimitBy,e=a.rateLimitWait,c||(c=/^throttle$/i.test(d)?function(a){return function(c){return b.throttle(c,a)}}(e):function(a){return function(c){return b.debounce(c,a)}}(e)),c}function h(c){return function(d){function e(a){b.defer(function(){g.resolve(a)})}function f(a){b.defer(function(){g.reject(a)})}var g=a.Deferred();return c(d,e,f),g}}return function(c){var f,g;return f={initialize:!0,identify:b.stringify,datumTokenizer:null,queryTokenizer:null,matchAnyQueryToken:!1,sufficient:5,indexRemote:!1,sorter:null,local:[],prefetch:null,remote:null},c=b.mixin(f,c||{}),!c.datumTokenizer&&a.error("datumTokenizer is required"),!c.queryTokenizer&&a.error("queryTokenizer is required"),g=c.sorter,c.sorter=g?function(a){return a.sort(g)}:b.identity,c.local=b.isFunction(c.local)?c.local():c.local,c.prefetch=d(c.prefetch),c.remote=e(c.remote),c}}();return function(){"use strict";function c(a){a=k(a),this.sorter=a.sorter,this.identify=a.identify,this.sufficient=a.sufficient,this.indexRemote=a.indexRemote,this.local=a.local,this.remote=a.remote?new j(a.remote):null,this.prefetch=a.prefetch?new i(a.prefetch):null,this.index=new h({identify:this.identify,datumTokenizer:a.datumTokenizer,queryTokenizer:a.queryTokenizer}),!1!==a.initialize&&this.initialize()}var e;return e=window&&window.Bloodhound,c.noConflict=function(){return window&&(window.Bloodhound=e),c},c.tokenizers=d,b.mixin(c.prototype,{__ttAdapter:function(){function a(a,b,d){return c.search(a,b,d)}function b(a,b){return c.search(a,b)}var c=this;return this.remote?a:b},_loadPrefetch:function(){function b(a,b){if(a)return c.reject();e.add(b),e.prefetch.store(e.index.serialize()),c.resolve()}var c,d,e=this;return c=a.Deferred(),this.prefetch?(d=this.prefetch.fromCache())?(this.index.bootstrap(d),c.resolve()):this.prefetch.fromNetwork(b):c.resolve(),c.promise()},_initialize:function(){function a(){b.add(b.local)}var b=this;return this.clear(),(this.initPromise=this._loadPrefetch()).done(a),this.initPromise},initialize:function(a){return!this.initPromise||a?this._initialize():this.initPromise},add:function(a){return this.index.add(a),this},get:function(a){return a=b.isArray(a)?a:[].slice.call(arguments),this.index.get(a)},search:function(a,c,d){function e(a){var c=[];b.each(a,function(a){!b.some(f,function(b){return g.identify(a)===g.identify(b)})&&c.push(a)}),g.indexRemote&&g.add(c),d(c)}var f,g=this;return c=c||b.noop,d=d||b.noop,f=this.sorter(this.index.search(a)),c(this.remote?f.slice():f),this.remote&&f.length',menu:'
'}}function d(a){var c={};return b.each(a,function(a,b){c[b]="."+a}),c}function e(){var a={wrapper:{position:"relative",display:"inline-block"},hint:{position:"absolute",top:"0",left:"0",borderColor:"transparent",boxShadow:"none",opacity:"1"},input:{position:"relative",verticalAlign:"top",backgroundColor:"transparent"},inputWithNoHint:{position:"relative",verticalAlign:"top"},menu:{position:"absolute",top:"100%",left:"0",zIndex:"100",display:"none"},ltr:{left:"0",right:"auto"},rtl:{left:"auto",right:" 0"}};return b.isMsie()&&b.mixin(a.input,{backgroundImage:"url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)"}),a}var f={wrapper:"twitter-typeahead",input:"tt-input",hint:"tt-hint",menu:"tt-menu",dataset:"tt-dataset",suggestion:"tt-suggestion",selectable:"tt-selectable",empty:"tt-empty",open:"tt-open",cursor:"tt-cursor",highlight:"tt-highlight"};return a}(),d=function(){"use strict";function c(b){b&&b.el||a.error("EventBus initialized without el"),this.$el=a(b.el)}var d,e;return d="typeahead:",e={render:"rendered",cursorchange:"cursorchanged",select:"selected",autocomplete:"autocompleted"},b.mixin(c.prototype,{_trigger:function(b,c){var e=a.Event(d+b);return this.$el.trigger.call(this.$el,e,c||[]),e},before:function(a){var b,c;return b=[].slice.call(arguments,1),c=this._trigger("before"+a,b),c.isDefaultPrevented()},trigger:function(a){var b;this._trigger(a,[].slice.call(arguments,1)),(b=e[a])&&this._trigger(b,[].slice.call(arguments,1))}}),c}(),e=function(){"use strict";function a(a,b,c,d){var e;if(!c)return this;for(b=b.split(h),c=d?g(c,d):c,this._callbacks=this._callbacks||{};e=b.shift();)this._callbacks[e]=this._callbacks[e]||{sync:[],async:[]},this._callbacks[e][a].push(c);return this}function b(b,c,d){return a.call(this,"async",b,c,d)}function c(b,c,d){return a.call(this,"sync",b,c,d)}function d(a){var b;if(!this._callbacks)return this;for(a=a.split(h);b=a.shift();)delete this._callbacks[b];return this}function e(a){var b,c,d,e,g;if(!this._callbacks)return this;for(a=a.split(h),d=[].slice.call(arguments,1);(b=a.shift())&&(c=this._callbacks[b]);)e=f(c.sync,this,[b].concat(d)),g=f(c.async,this,[b].concat(d)),e()&&i(g);return this}function f(a,b,c){function d(){for(var d,e=0,f=a.length;!d&&e