├── .bowerrc ├── .gitignore ├── CONFIGME.md ├── LICENSE.md ├── README.md ├── bower.json ├── conda_requirements.txt ├── configExample.cfg ├── data ├── corpora │ ├── austen.txt │ ├── bible.txt │ ├── brain_speech.txt │ ├── darwin.txt │ ├── frankenstein.txt │ ├── grecoroman_med.txt │ ├── last_evolution.txt │ ├── mars.txt │ ├── mouse.txt │ ├── sherlock.txt │ ├── startrek.txt │ ├── yeast.txt │ └── youth.txt ├── pmcids │ ├── lemma_samples_18952863+18269575.pickle │ └── nes_18952863+18269575.pickle └── vis │ ├── journals │ └── journals_18952863+18269575.json │ ├── lda │ └── lda_18952863_5_7.json │ └── lsa │ └── lsa_18952863_7.json ├── flask ├── Entrez_IR.py ├── __init__.py ├── app.py ├── cache_lemma_nes.py ├── celeryconfig.py ├── citation_venn.py ├── client.py ├── configapp.py ├── content_management.py ├── database_management.py ├── fasttext.py ├── fgraph.py ├── fgraph2json.py ├── jointxts.py ├── journalvis.py ├── kmeans1.py ├── lda1.py ├── lsa1.py ├── multi_preprocess.py ├── naive_cosineSim.py ├── naive_makeVecs.py ├── nes.py ├── static │ ├── coge_embed.json │ ├── coge_lda1.json │ ├── coge_lsa.json │ ├── coge_wcloud1.json │ ├── css │ │ ├── journal-publications.json │ │ └── journal-style.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── scke1.png │ │ ├── scke2.png │ │ └── screenies │ │ │ ├── citation.png │ │ │ ├── embedding.png │ │ │ ├── heatmap.png │ │ │ ├── journals.png │ │ │ ├── kmeans.png │ │ │ ├── statistics.png │ │ │ ├── textcompare.png │ │ │ └── wordcloud.png │ └── js │ │ ├── d3-heatmap-dendro.js │ │ ├── d3.layout.cloud.js │ │ └── third-party │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── grunt │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ └── package.json │ │ ├── d3-cloud │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ └── build │ │ │ └── d3.layout.cloud.js │ │ ├── d3-dispatch │ │ ├── .bower.json │ │ ├── .eslintrc │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── d3-dispatch.sublime-project │ │ ├── index.js │ │ ├── package.json │ │ ├── src │ │ │ └── dispatch.js │ │ └── test │ │ │ └── dispatch-test.js │ │ ├── d3.v4 │ │ └── d3.v4.min.js │ │ ├── d3 │ │ ├── .bower.json │ │ ├── .spmignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── d3.js │ │ └── d3.min.js │ │ ├── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ └── src │ │ │ ├── .eslintrc.json │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready-no-deferred.js │ │ │ ├── ready.js │ │ │ ├── readyException.js │ │ │ ├── stripAndCollapse.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── ObjectFunctionString.js │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── fnToString.js │ │ │ ├── getProto.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnothtmlwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ │ ├── plotly │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── bower.json │ │ ├── circle.yml │ │ ├── dist │ │ │ ├── README.md │ │ │ ├── extras │ │ │ │ ├── mathjax │ │ │ │ │ ├── MathJax.js │ │ │ │ │ ├── config │ │ │ │ │ │ └── TeX-AMS-MML_SVG.js │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── FontWarnings.js │ │ │ │ │ │ ├── HTML-CSS │ │ │ │ │ │ │ └── handle-floats.js │ │ │ │ │ │ ├── HelpDialog.js │ │ │ │ │ │ ├── MatchWebFonts.js │ │ │ │ │ │ ├── MathEvents.js │ │ │ │ │ │ ├── MathML │ │ │ │ │ │ │ └── content-mathml.js │ │ │ │ │ │ ├── MathMenu.js │ │ │ │ │ │ ├── MathZoom.js │ │ │ │ │ │ ├── Safe.js │ │ │ │ │ │ ├── TeX │ │ │ │ │ │ │ ├── AMScd.js │ │ │ │ │ │ │ ├── AMSmath.js │ │ │ │ │ │ │ ├── AMSsymbols.js │ │ │ │ │ │ │ ├── HTML.js │ │ │ │ │ │ │ ├── action.js │ │ │ │ │ │ │ ├── autobold.js │ │ │ │ │ │ │ ├── autoload-all.js │ │ │ │ │ │ │ ├── bbox.js │ │ │ │ │ │ │ ├── begingroup.js │ │ │ │ │ │ │ ├── boldsymbol.js │ │ │ │ │ │ │ ├── cancel.js │ │ │ │ │ │ │ ├── color.js │ │ │ │ │ │ │ ├── enclose.js │ │ │ │ │ │ │ ├── extpfeil.js │ │ │ │ │ │ │ ├── mathchoice.js │ │ │ │ │ │ │ ├── mhchem.js │ │ │ │ │ │ │ ├── newcommand.js │ │ │ │ │ │ │ ├── noErrors.js │ │ │ │ │ │ │ ├── noUndefined.js │ │ │ │ │ │ │ ├── unicode.js │ │ │ │ │ │ │ └── verb.js │ │ │ │ │ │ ├── asciimath2jax.js │ │ │ │ │ │ ├── jsMath2jax.js │ │ │ │ │ │ ├── mml2jax.js │ │ │ │ │ │ ├── tex2jax.js │ │ │ │ │ │ └── toMathML.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── CloseX-31.png │ │ │ │ │ │ └── MenuArrow-15.png │ │ │ │ │ ├── jax │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ └── mml │ │ │ │ │ │ │ │ ├── jax.js │ │ │ │ │ │ │ │ └── optable │ │ │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ │ │ │ │ └── SupplementalArrowsB.js │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── AsciiMath │ │ │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ │ │ └── jax.js │ │ │ │ │ │ │ ├── MathML │ │ │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ │ │ │ ├── e.js │ │ │ │ │ │ │ │ │ ├── f.js │ │ │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ │ │ ├── g.js │ │ │ │ │ │ │ │ │ ├── h.js │ │ │ │ │ │ │ │ │ ├── i.js │ │ │ │ │ │ │ │ │ ├── j.js │ │ │ │ │ │ │ │ │ ├── k.js │ │ │ │ │ │ │ │ │ ├── l.js │ │ │ │ │ │ │ │ │ ├── m.js │ │ │ │ │ │ │ │ │ ├── n.js │ │ │ │ │ │ │ │ │ ├── o.js │ │ │ │ │ │ │ │ │ ├── opf.js │ │ │ │ │ │ │ │ │ ├── p.js │ │ │ │ │ │ │ │ │ ├── q.js │ │ │ │ │ │ │ │ │ ├── r.js │ │ │ │ │ │ │ │ │ ├── s.js │ │ │ │ │ │ │ │ │ ├── scr.js │ │ │ │ │ │ │ │ │ ├── t.js │ │ │ │ │ │ │ │ │ ├── u.js │ │ │ │ │ │ │ │ │ ├── v.js │ │ │ │ │ │ │ │ │ ├── w.js │ │ │ │ │ │ │ │ │ ├── x.js │ │ │ │ │ │ │ │ │ ├── y.js │ │ │ │ │ │ │ │ │ └── z.js │ │ │ │ │ │ │ │ └── jax.js │ │ │ │ │ │ │ └── TeX │ │ │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ │ │ └── jax.js │ │ │ │ │ │ └── output │ │ │ │ │ │ │ └── SVG │ │ │ │ │ │ │ ├── autoload │ │ │ │ │ │ │ ├── annotation-xml.js │ │ │ │ │ │ │ ├── maction.js │ │ │ │ │ │ │ ├── menclose.js │ │ │ │ │ │ │ ├── mglyph.js │ │ │ │ │ │ │ ├── mmultiscripts.js │ │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ │ ├── mtable.js │ │ │ │ │ │ │ └── multiline.js │ │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── Asana-Math │ │ │ │ │ │ │ │ ├── Alphabets │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Arrows │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── DoubleStruck │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Fraktur │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Latin │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Main │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Marks │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Misc │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Monospace │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── NonUnicode │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Normal │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Operators │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── SansSerif │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Script │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Shapes │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size1 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size2 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size3 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size4 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size5 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size6 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Symbols │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Variants │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ │ │ │ └── fontdata.js │ │ │ │ │ │ │ ├── Gyre-Pagella │ │ │ │ │ │ │ │ ├── Alphabets │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Arrows │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── DoubleStruck │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Fraktur │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Latin │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Main │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Marks │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Misc │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Monospace │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── NonUnicode │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Normal │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Operators │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── SansSerif │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Script │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Shapes │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size1 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size2 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size3 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size4 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size5 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size6 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Symbols │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Variants │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ │ │ │ └── fontdata.js │ │ │ │ │ │ │ ├── Gyre-Termes │ │ │ │ │ │ │ │ ├── Alphabets │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Arrows │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── DoubleStruck │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Fraktur │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Latin │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Main │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Marks │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Misc │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Monospace │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── NonUnicode │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Normal │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Operators │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── SansSerif │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Script │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Shapes │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size1 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size2 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size3 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size4 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size5 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size6 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Symbols │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Variants │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ │ │ │ └── fontdata.js │ │ │ │ │ │ │ ├── Latin-Modern │ │ │ │ │ │ │ │ ├── Alphabets │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Arrows │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── DoubleStruck │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Fraktur │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Latin │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Main │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Marks │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Misc │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Monospace │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── NonUnicode │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Normal │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Operators │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── SansSerif │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Script │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Shapes │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size1 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size2 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size3 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size4 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size5 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size6 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size7 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Symbols │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Variants │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ │ │ │ └── fontdata.js │ │ │ │ │ │ │ ├── Neo-Euler │ │ │ │ │ │ │ │ ├── Alphabets │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Arrows │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Fraktur │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Main │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Marks │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── NonUnicode │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Normal │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Operators │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Script │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Shapes │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size1 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size2 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size3 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size4 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size5 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Symbols │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Variants │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ │ │ │ └── fontdata.js │ │ │ │ │ │ │ ├── STIX-Web │ │ │ │ │ │ │ │ ├── Alphabets │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Arrows │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── DoubleStruck │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Fraktur │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Latin │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Main │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Marks │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Misc │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Monospace │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Normal │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Operators │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── SansSerif │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Script │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Shapes │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size1 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size2 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size3 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size4 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size5 │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Symbols │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Variants │ │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ │ │ │ └── fontdata.js │ │ │ │ │ │ │ └── TeX │ │ │ │ │ │ │ │ ├── AMS │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ │ │ │ ├── PUA.js │ │ │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ │ │ │ │ ├── Caligraphic │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Fraktur │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ ├── Other.js │ │ │ │ │ │ │ │ │ └── PUA.js │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ ├── Other.js │ │ │ │ │ │ │ │ │ └── PUA.js │ │ │ │ │ │ │ │ ├── Main │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ │ │ │ └── SupplementalArrowsA.js │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ └── MathOperators.js │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ │ │ │ │ ├── Math │ │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ └── Italic │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── SansSerif │ │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ └── Other.js │ │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ └── Other.js │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ └── Other.js │ │ │ │ │ │ │ │ ├── Script │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size1 │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size2 │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size3 │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Size4 │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ │ ├── Typewriter │ │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ │ └── Other.js │ │ │ │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ │ │ │ └── fontdata.js │ │ │ │ │ │ │ └── jax.js │ │ │ │ │ └── localization │ │ │ │ │ │ ├── de │ │ │ │ │ │ ├── FontWarnings.js │ │ │ │ │ │ ├── HTML-CSS.js │ │ │ │ │ │ ├── HelpDialog.js │ │ │ │ │ │ ├── MathML.js │ │ │ │ │ │ ├── MathMenu.js │ │ │ │ │ │ ├── TeX.js │ │ │ │ │ │ └── de.js │ │ │ │ │ │ ├── en │ │ │ │ │ │ ├── FontWarnings.js │ │ │ │ │ │ ├── HTML-CSS.js │ │ │ │ │ │ ├── HelpDialog.js │ │ │ │ │ │ ├── MathML.js │ │ │ │ │ │ ├── MathMenu.js │ │ │ │ │ │ ├── TeX.js │ │ │ │ │ │ └── en.js │ │ │ │ │ │ └── fr │ │ │ │ │ │ ├── FontWarnings.js │ │ │ │ │ │ ├── HTML-CSS.js │ │ │ │ │ │ ├── HelpDialog.js │ │ │ │ │ │ ├── MathML.js │ │ │ │ │ │ ├── MathMenu.js │ │ │ │ │ │ ├── TeX.js │ │ │ │ │ │ └── fr.js │ │ │ │ ├── request_animation_frame.js │ │ │ │ └── typedarray.min.js │ │ │ ├── plotly-basic.js │ │ │ ├── plotly-basic.min.js │ │ │ ├── plotly-cartesian.js │ │ │ ├── plotly-cartesian.min.js │ │ │ ├── plotly-geo-assets.js │ │ │ ├── plotly-geo.js │ │ │ ├── plotly-geo.min.js │ │ │ ├── plotly-gl2d.js │ │ │ ├── plotly-gl2d.min.js │ │ │ ├── plotly-gl3d.js │ │ │ ├── plotly-gl3d.min.js │ │ │ ├── plotly-mapbox.js │ │ │ ├── plotly-mapbox.min.js │ │ │ ├── plotly-with-meta.js │ │ │ ├── plotly.js │ │ │ ├── plotly.min.js │ │ │ └── topojson │ │ │ │ ├── africa_110m.json │ │ │ │ ├── africa_50m.json │ │ │ │ ├── asia_110m.json │ │ │ │ ├── asia_50m.json │ │ │ │ ├── europe_110m.json │ │ │ │ ├── europe_50m.json │ │ │ │ ├── north-america_110m.json │ │ │ │ ├── north-america_50m.json │ │ │ │ ├── south-america_110m.json │ │ │ │ ├── south-america_50m.json │ │ │ │ ├── usa_110m.json │ │ │ │ ├── usa_50m.json │ │ │ │ ├── world_110m.json │ │ │ │ └── world_50m.json │ │ ├── lib │ │ │ ├── bar.js │ │ │ ├── box.js │ │ │ ├── choropleth.js │ │ │ ├── contour.js │ │ │ ├── contourgl.js │ │ │ ├── core.js │ │ │ ├── heatmap.js │ │ │ ├── heatmapgl.js │ │ │ ├── histogram.js │ │ │ ├── histogram2d.js │ │ │ ├── histogram2dcontour.js │ │ │ ├── index-basic.js │ │ │ ├── index-cartesian.js │ │ │ ├── index-geo.js │ │ │ ├── index-gl2d.js │ │ │ ├── index-gl3d.js │ │ │ ├── index-mapbox.js │ │ │ ├── index.js │ │ │ ├── mesh3d.js │ │ │ ├── pie.js │ │ │ ├── pointcloud.js │ │ │ ├── scatter.js │ │ │ ├── scatter3d.js │ │ │ ├── scattergeo.js │ │ │ ├── scattergl.js │ │ │ ├── scattermapbox.js │ │ │ ├── scatterternary.js │ │ │ └── surface.js │ │ ├── package.json │ │ └── src │ │ │ ├── assets │ │ │ └── geo_assets.js │ │ │ ├── components │ │ │ ├── annotations │ │ │ │ ├── annotation_defaults.js │ │ │ │ ├── arrow_paths.js │ │ │ │ ├── attributes.js │ │ │ │ ├── calc_autorange.js │ │ │ │ ├── defaults.js │ │ │ │ ├── draw.js │ │ │ │ ├── draw_arrow_head.js │ │ │ │ └── index.js │ │ │ ├── color │ │ │ │ ├── attributes.js │ │ │ │ └── index.js │ │ │ ├── colorbar │ │ │ │ ├── attributes.js │ │ │ │ ├── defaults.js │ │ │ │ ├── draw.js │ │ │ │ ├── has_colorbar.js │ │ │ │ └── index.js │ │ │ ├── colorscale │ │ │ │ ├── attributes.js │ │ │ │ ├── calc.js │ │ │ │ ├── color_attributes.js │ │ │ │ ├── default_scale.js │ │ │ │ ├── defaults.js │ │ │ │ ├── flip_scale.js │ │ │ │ ├── get_scale.js │ │ │ │ ├── has_colorscale.js │ │ │ │ ├── index.js │ │ │ │ ├── is_valid_scale.js │ │ │ │ ├── is_valid_scale_array.js │ │ │ │ ├── make_scale_function.js │ │ │ │ └── scales.js │ │ │ ├── dragelement │ │ │ │ ├── align.js │ │ │ │ ├── cursor.js │ │ │ │ ├── index.js │ │ │ │ └── unhover.js │ │ │ ├── drawing │ │ │ │ ├── index.js │ │ │ │ └── symbol_defs.js │ │ │ ├── errorbars │ │ │ │ ├── attributes.js │ │ │ │ ├── calc.js │ │ │ │ ├── compute_error.js │ │ │ │ ├── defaults.js │ │ │ │ ├── index.js │ │ │ │ ├── plot.js │ │ │ │ └── style.js │ │ │ ├── images │ │ │ │ ├── attributes.js │ │ │ │ ├── defaults.js │ │ │ │ ├── draw.js │ │ │ │ └── index.js │ │ │ ├── legend │ │ │ │ ├── anchor_utils.js │ │ │ │ ├── attributes.js │ │ │ │ ├── constants.js │ │ │ │ ├── defaults.js │ │ │ │ ├── draw.js │ │ │ │ ├── get_legend_data.js │ │ │ │ ├── helpers.js │ │ │ │ ├── index.js │ │ │ │ └── style.js │ │ │ ├── modebar │ │ │ │ ├── buttons.js │ │ │ │ ├── index.js │ │ │ │ ├── manage.js │ │ │ │ └── modebar.js │ │ │ ├── rangeselector │ │ │ │ ├── attributes.js │ │ │ │ ├── button_attributes.js │ │ │ │ ├── constants.js │ │ │ │ ├── defaults.js │ │ │ │ ├── draw.js │ │ │ │ ├── get_update_object.js │ │ │ │ └── index.js │ │ │ ├── rangeslider │ │ │ │ ├── attributes.js │ │ │ │ ├── create_slider.js │ │ │ │ ├── defaults.js │ │ │ │ ├── helpers.js │ │ │ │ ├── index.js │ │ │ │ └── range_plot.js │ │ │ ├── shapes │ │ │ │ ├── attributes.js │ │ │ │ ├── calc_autorange.js │ │ │ │ ├── constants.js │ │ │ │ ├── defaults.js │ │ │ │ ├── draw.js │ │ │ │ ├── helpers.js │ │ │ │ ├── index.js │ │ │ │ └── shape_defaults.js │ │ │ ├── titles │ │ │ │ └── index.js │ │ │ └── updatemenus │ │ │ │ ├── attributes.js │ │ │ │ ├── constants.js │ │ │ │ ├── defaults.js │ │ │ │ ├── draw.js │ │ │ │ └── index.js │ │ │ ├── constants │ │ │ ├── gl2d_dashes.js │ │ │ ├── gl3d_dashes.js │ │ │ ├── gl_markers.js │ │ │ ├── string_mappings.js │ │ │ └── xmlns_namespaces.js │ │ │ ├── core.js │ │ │ ├── css │ │ │ ├── _base.scss │ │ │ ├── _cursor.scss │ │ │ ├── _drag.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modebar.scss │ │ │ ├── _notifier.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _vars.scss │ │ │ └── style.scss │ │ │ ├── fonts │ │ │ ├── mathjax_config.js │ │ │ └── ploticon │ │ │ │ ├── _ploticon.scss │ │ │ │ ├── config.json │ │ │ │ ├── ploticon.eot │ │ │ │ ├── ploticon.svg │ │ │ │ ├── ploticon.ttf │ │ │ │ └── ploticon.woff │ │ │ ├── lib │ │ │ ├── array_to_calc_item.js │ │ │ ├── coerce.js │ │ │ ├── dates.js │ │ │ ├── events.js │ │ │ ├── extend.js │ │ │ ├── filter_visible.js │ │ │ ├── float32_truncate.js │ │ │ ├── geo_location_utils.js │ │ │ ├── gl_format_color.js │ │ │ ├── html2unicode.js │ │ │ ├── index.js │ │ │ ├── is_array.js │ │ │ ├── is_plain_object.js │ │ │ ├── loggers.js │ │ │ ├── matrix.js │ │ │ ├── nested_property.js │ │ │ ├── notifier.js │ │ │ ├── polygon.js │ │ │ ├── queue.js │ │ │ ├── search.js │ │ │ ├── setcursor.js │ │ │ ├── show_no_webgl_msg.js │ │ │ ├── stats.js │ │ │ ├── str2rgbarray.js │ │ │ ├── svg_text_utils.js │ │ │ └── topojson_utils.js │ │ │ ├── plot_api │ │ │ ├── helpers.js │ │ │ ├── plot_api.js │ │ │ ├── plot_config.js │ │ │ ├── plot_schema.js │ │ │ ├── register.js │ │ │ ├── set_plot_config.js │ │ │ ├── subroutines.js │ │ │ ├── to_image.js │ │ │ └── validate.js │ │ │ ├── plotly.js │ │ │ ├── plots │ │ │ ├── animation_attributes.js │ │ │ ├── attributes.js │ │ │ ├── cartesian │ │ │ │ ├── attributes.js │ │ │ │ ├── axes.js │ │ │ │ ├── axis_defaults.js │ │ │ │ ├── axis_ids.js │ │ │ │ ├── category_order_defaults.js │ │ │ │ ├── clean_datum.js │ │ │ │ ├── constants.js │ │ │ │ ├── dragbox.js │ │ │ │ ├── graph_interact.js │ │ │ │ ├── index.js │ │ │ │ ├── layout_attributes.js │ │ │ │ ├── layout_defaults.js │ │ │ │ ├── ordered_categories.js │ │ │ │ ├── position_defaults.js │ │ │ │ ├── select.js │ │ │ │ ├── set_convert.js │ │ │ │ ├── tick_label_defaults.js │ │ │ │ ├── tick_mark_defaults.js │ │ │ │ ├── tick_value_defaults.js │ │ │ │ └── transition_axes.js │ │ │ ├── font_attributes.js │ │ │ ├── frame_attributes.js │ │ │ ├── geo │ │ │ │ ├── constants.js │ │ │ │ ├── geo.js │ │ │ │ ├── index.js │ │ │ │ ├── layout │ │ │ │ │ ├── attributes.js │ │ │ │ │ ├── axis_attributes.js │ │ │ │ │ ├── axis_defaults.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ └── layout_attributes.js │ │ │ │ ├── projections.js │ │ │ │ ├── set_scale.js │ │ │ │ ├── zoom.js │ │ │ │ └── zoom_reset.js │ │ │ ├── gl2d │ │ │ │ ├── camera.js │ │ │ │ ├── convert.js │ │ │ │ ├── index.js │ │ │ │ └── scene2d.js │ │ │ ├── gl3d │ │ │ │ ├── camera.js │ │ │ │ ├── index.js │ │ │ │ ├── layout │ │ │ │ │ ├── attributes.js │ │ │ │ │ ├── axis_attributes.js │ │ │ │ │ ├── axis_defaults.js │ │ │ │ │ ├── convert.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── layout_attributes.js │ │ │ │ │ ├── spikes.js │ │ │ │ │ └── tick_marks.js │ │ │ │ ├── project.js │ │ │ │ ├── scene.js │ │ │ │ └── set_convert.js │ │ │ ├── layout_attributes.js │ │ │ ├── mapbox │ │ │ │ ├── constants.js │ │ │ │ ├── convert_text_opts.js │ │ │ │ ├── index.js │ │ │ │ ├── layers.js │ │ │ │ ├── layout_attributes.js │ │ │ │ ├── layout_defaults.js │ │ │ │ └── mapbox.js │ │ │ ├── plots.js │ │ │ ├── polar │ │ │ │ ├── area_attributes.js │ │ │ │ ├── axis_attributes.js │ │ │ │ ├── index.js │ │ │ │ ├── micropolar.js │ │ │ │ ├── micropolar_manager.js │ │ │ │ └── undo_manager.js │ │ │ ├── subplot_defaults.js │ │ │ └── ternary │ │ │ │ ├── index.js │ │ │ │ ├── layout │ │ │ │ ├── attributes.js │ │ │ │ ├── axis_attributes.js │ │ │ │ ├── axis_defaults.js │ │ │ │ ├── defaults.js │ │ │ │ └── layout_attributes.js │ │ │ │ └── ternary.js │ │ │ ├── registry.js │ │ │ ├── snapshot │ │ │ ├── cloneplot.js │ │ │ ├── download.js │ │ │ ├── filesaver.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ ├── svgtoimg.js │ │ │ ├── toimage.js │ │ │ └── tosvg.js │ │ │ └── traces │ │ │ ├── bar │ │ │ ├── arrays_to_calcdata.js │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── defaults.js │ │ │ ├── hover.js │ │ │ ├── index.js │ │ │ ├── layout_attributes.js │ │ │ ├── layout_defaults.js │ │ │ ├── plot.js │ │ │ ├── set_positions.js │ │ │ ├── style.js │ │ │ └── style_defaults.js │ │ │ ├── box │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── defaults.js │ │ │ ├── hover.js │ │ │ ├── index.js │ │ │ ├── layout_attributes.js │ │ │ ├── layout_defaults.js │ │ │ ├── plot.js │ │ │ ├── set_positions.js │ │ │ └── style.js │ │ │ ├── choropleth │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── defaults.js │ │ │ ├── index.js │ │ │ └── plot.js │ │ │ ├── contour │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── colorbar.js │ │ │ ├── defaults.js │ │ │ ├── hover.js │ │ │ ├── index.js │ │ │ ├── make_color_map.js │ │ │ ├── plot.js │ │ │ ├── style.js │ │ │ └── style_defaults.js │ │ │ ├── contourgl │ │ │ ├── convert.js │ │ │ └── index.js │ │ │ ├── heatmap │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── colorbar.js │ │ │ ├── convert_column_xyz.js │ │ │ ├── defaults.js │ │ │ ├── has_columns.js │ │ │ ├── hover.js │ │ │ ├── index.js │ │ │ ├── max_row_length.js │ │ │ ├── plot.js │ │ │ ├── style.js │ │ │ └── xyz_defaults.js │ │ │ ├── heatmapgl │ │ │ ├── attributes.js │ │ │ ├── convert.js │ │ │ └── index.js │ │ │ ├── histogram │ │ │ ├── attributes.js │ │ │ ├── average.js │ │ │ ├── bin_defaults.js │ │ │ ├── bin_functions.js │ │ │ ├── calc.js │ │ │ ├── defaults.js │ │ │ ├── index.js │ │ │ └── norm_functions.js │ │ │ ├── histogram2d │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── defaults.js │ │ │ ├── index.js │ │ │ └── sample_defaults.js │ │ │ ├── histogram2dcontour │ │ │ ├── attributes.js │ │ │ ├── defaults.js │ │ │ └── index.js │ │ │ ├── mesh3d │ │ │ ├── attributes.js │ │ │ ├── convert.js │ │ │ ├── defaults.js │ │ │ └── index.js │ │ │ ├── pie │ │ │ ├── attributes.js │ │ │ ├── base_plot.js │ │ │ ├── calc.js │ │ │ ├── defaults.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ ├── layout_attributes.js │ │ │ ├── layout_defaults.js │ │ │ ├── plot.js │ │ │ ├── style.js │ │ │ └── style_one.js │ │ │ ├── pointcloud │ │ │ ├── attributes.js │ │ │ ├── convert.js │ │ │ ├── defaults.js │ │ │ └── index.js │ │ │ ├── scatter │ │ │ ├── arrays_to_calcdata.js │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── clean_data.js │ │ │ ├── colorbar.js │ │ │ ├── colorscale_calc.js │ │ │ ├── constants.js │ │ │ ├── defaults.js │ │ │ ├── fillcolor_defaults.js │ │ │ ├── get_trace_color.js │ │ │ ├── hover.js │ │ │ ├── index.js │ │ │ ├── line_defaults.js │ │ │ ├── line_points.js │ │ │ ├── line_shape_defaults.js │ │ │ ├── link_traces.js │ │ │ ├── make_bubble_size_func.js │ │ │ ├── marker_defaults.js │ │ │ ├── plot.js │ │ │ ├── select.js │ │ │ ├── style.js │ │ │ ├── subtypes.js │ │ │ ├── text_defaults.js │ │ │ └── xy_defaults.js │ │ │ ├── scatter3d │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── calc_errors.js │ │ │ ├── convert.js │ │ │ ├── defaults.js │ │ │ └── index.js │ │ │ ├── scattergeo │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── defaults.js │ │ │ ├── index.js │ │ │ └── plot.js │ │ │ ├── scattergl │ │ │ ├── attributes.js │ │ │ ├── convert.js │ │ │ ├── defaults.js │ │ │ └── index.js │ │ │ ├── scattermapbox │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── convert.js │ │ │ ├── defaults.js │ │ │ ├── hover.js │ │ │ ├── index.js │ │ │ └── plot.js │ │ │ ├── scatterternary │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── defaults.js │ │ │ ├── hover.js │ │ │ ├── index.js │ │ │ ├── plot.js │ │ │ ├── select.js │ │ │ └── style.js │ │ │ └── surface │ │ │ ├── attributes.js │ │ │ ├── calc.js │ │ │ ├── colorbar.js │ │ │ ├── convert.js │ │ │ ├── defaults.js │ │ │ └── index.js │ │ └── venn.js │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── examples │ │ ├── boundingbox.html │ │ ├── css_styled.html │ │ ├── dynamic.html │ │ ├── interactive.html │ │ ├── intersection_tooltip.html │ │ ├── lastfm.jsonp │ │ ├── medical.html │ │ ├── medical.jsonp │ │ ├── orientation_order.html │ │ ├── simple.html │ │ ├── styled.html │ │ ├── sublabels.html │ │ ├── venn_venn.html │ │ └── weighted.html │ │ ├── index.js │ │ ├── package.json │ │ ├── src │ │ ├── circleintersection.js │ │ ├── diagram.js │ │ ├── fmin.js │ │ └── layout.js │ │ └── venn.js ├── task.py ├── templates │ ├── coge_clustermap.html │ ├── coge_embeddings.html │ ├── coge_heatmap1.html │ ├── coge_heatmap2.html │ ├── coge_journals.html │ ├── coge_kmeans.html │ ├── coge_kmeans2.html │ ├── coge_lda.html │ ├── coge_lsa.html │ ├── coge_scifi.html │ ├── coge_scifi2.html │ ├── coge_stats.html │ ├── coge_wordcloud.html │ ├── dashboard.html │ ├── graveyard_coge_embeddings.html │ ├── header.html │ ├── home.html │ ├── res_kmeans1.html │ ├── results.html │ ├── results_clustermap.html │ ├── results_clustermapH.html │ ├── results_embeddings.html │ ├── results_heatmap.html │ ├── results_journals.html │ ├── results_lda.html │ ├── results_lsa.html │ ├── results_scifi.html │ ├── results_stats.html │ ├── results_wordcloud.html │ └── test.html ├── test.py ├── tfidf_nps.py └── update_db.py └── pip_requirements.txt /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "flask/static/js/third-party" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/.gitignore -------------------------------------------------------------------------------- /CONFIGME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/CONFIGME.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/bower.json -------------------------------------------------------------------------------- /conda_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/conda_requirements.txt -------------------------------------------------------------------------------- /configExample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/configExample.cfg -------------------------------------------------------------------------------- /data/corpora/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/austen.txt -------------------------------------------------------------------------------- /data/corpora/bible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/bible.txt -------------------------------------------------------------------------------- /data/corpora/brain_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/brain_speech.txt -------------------------------------------------------------------------------- /data/corpora/darwin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/darwin.txt -------------------------------------------------------------------------------- /data/corpora/frankenstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/frankenstein.txt -------------------------------------------------------------------------------- /data/corpora/grecoroman_med.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/grecoroman_med.txt -------------------------------------------------------------------------------- /data/corpora/last_evolution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/last_evolution.txt -------------------------------------------------------------------------------- /data/corpora/mars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/mars.txt -------------------------------------------------------------------------------- /data/corpora/mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/mouse.txt -------------------------------------------------------------------------------- /data/corpora/sherlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/sherlock.txt -------------------------------------------------------------------------------- /data/corpora/startrek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/startrek.txt -------------------------------------------------------------------------------- /data/corpora/yeast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/yeast.txt -------------------------------------------------------------------------------- /data/corpora/youth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/corpora/youth.txt -------------------------------------------------------------------------------- /data/pmcids/lemma_samples_18952863+18269575.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/pmcids/lemma_samples_18952863+18269575.pickle -------------------------------------------------------------------------------- /data/pmcids/nes_18952863+18269575.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/pmcids/nes_18952863+18269575.pickle -------------------------------------------------------------------------------- /data/vis/journals/journals_18952863+18269575.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/vis/journals/journals_18952863+18269575.json -------------------------------------------------------------------------------- /data/vis/lda/lda_18952863_5_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/vis/lda/lda_18952863_5_7.json -------------------------------------------------------------------------------- /data/vis/lsa/lsa_18952863_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/data/vis/lsa/lsa_18952863_7.json -------------------------------------------------------------------------------- /flask/Entrez_IR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/Entrez_IR.py -------------------------------------------------------------------------------- /flask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/app.py -------------------------------------------------------------------------------- /flask/cache_lemma_nes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/cache_lemma_nes.py -------------------------------------------------------------------------------- /flask/celeryconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/celeryconfig.py -------------------------------------------------------------------------------- /flask/citation_venn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/citation_venn.py -------------------------------------------------------------------------------- /flask/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/client.py -------------------------------------------------------------------------------- /flask/configapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/configapp.py -------------------------------------------------------------------------------- /flask/content_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/content_management.py -------------------------------------------------------------------------------- /flask/database_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/database_management.py -------------------------------------------------------------------------------- /flask/fasttext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/fasttext.py -------------------------------------------------------------------------------- /flask/fgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/fgraph.py -------------------------------------------------------------------------------- /flask/fgraph2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/fgraph2json.py -------------------------------------------------------------------------------- /flask/jointxts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/jointxts.py -------------------------------------------------------------------------------- /flask/journalvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/journalvis.py -------------------------------------------------------------------------------- /flask/kmeans1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/kmeans1.py -------------------------------------------------------------------------------- /flask/lda1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/lda1.py -------------------------------------------------------------------------------- /flask/lsa1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/lsa1.py -------------------------------------------------------------------------------- /flask/multi_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/multi_preprocess.py -------------------------------------------------------------------------------- /flask/naive_cosineSim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/naive_cosineSim.py -------------------------------------------------------------------------------- /flask/naive_makeVecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/naive_makeVecs.py -------------------------------------------------------------------------------- /flask/nes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/nes.py -------------------------------------------------------------------------------- /flask/static/coge_embed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/coge_embed.json -------------------------------------------------------------------------------- /flask/static/coge_lda1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/coge_lda1.json -------------------------------------------------------------------------------- /flask/static/coge_lsa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/coge_lsa.json -------------------------------------------------------------------------------- /flask/static/coge_wcloud1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/coge_wcloud1.json -------------------------------------------------------------------------------- /flask/static/css/journal-publications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/css/journal-publications.json -------------------------------------------------------------------------------- /flask/static/css/journal-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/css/journal-style.css -------------------------------------------------------------------------------- /flask/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /flask/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /flask/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /flask/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /flask/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /flask/static/images/scke1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/scke1.png -------------------------------------------------------------------------------- /flask/static/images/scke2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/scke2.png -------------------------------------------------------------------------------- /flask/static/images/screenies/citation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/screenies/citation.png -------------------------------------------------------------------------------- /flask/static/images/screenies/embedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/screenies/embedding.png -------------------------------------------------------------------------------- /flask/static/images/screenies/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/screenies/heatmap.png -------------------------------------------------------------------------------- /flask/static/images/screenies/journals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/screenies/journals.png -------------------------------------------------------------------------------- /flask/static/images/screenies/kmeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/screenies/kmeans.png -------------------------------------------------------------------------------- /flask/static/images/screenies/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/screenies/statistics.png -------------------------------------------------------------------------------- /flask/static/images/screenies/textcompare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/screenies/textcompare.png -------------------------------------------------------------------------------- /flask/static/images/screenies/wordcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/images/screenies/wordcloud.png -------------------------------------------------------------------------------- /flask/static/js/d3-heatmap-dendro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/d3-heatmap-dendro.js -------------------------------------------------------------------------------- /flask/static/js/d3.layout.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/d3.layout.cloud.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/.bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/LICENSE -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/README.md -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/grunt/bs-lessdoc-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/grunt/bs-lessdoc-parser.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/grunt/bs-raw-files-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/grunt/bs-raw-files-generator.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/grunt/sauce_browsers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/grunt/sauce_browsers.yml -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/affix.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/alert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/button.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/modal.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/popover.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/tab.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/js/transition.js -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/badges.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/close.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/code.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/component-animations.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/forms.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/grid.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/labels.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/media.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/alerts.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/border-radius.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/buttons.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/center-block.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/clearfix.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/gradients.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/grid-framework.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/hide-text.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/labels.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/list-group.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/nav-divider.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/opacity.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/pagination.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/panels.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/progress-bar.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/reset-filter.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/resize.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/tab-focus.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/table-row.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/text-emphasis.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/text-overflow.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/modals.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/navs.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/pager.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/panels.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/print.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/responsive-embed.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/responsive-utilities.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/tables.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/theme.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/type.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/variables.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/less/wells.less -------------------------------------------------------------------------------- /flask/static/js/third-party/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/bootstrap/package.json -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-cloud/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-cloud/.bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-cloud/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-cloud/LICENSE -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-cloud/README.md -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-cloud/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-cloud/bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-cloud/build/d3.layout.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-cloud/build/d3.layout.cloud.js -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-dispatch/.bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-dispatch/.eslintrc -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-workspace 2 | .DS_Store 3 | build/ 4 | node_modules 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/.npmignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | build/*.zip 3 | test/ 4 | -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-dispatch/LICENSE -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-dispatch/README.md -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/d3-dispatch.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-dispatch/d3-dispatch.sublime-project -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-dispatch/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-dispatch/package.json -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/src/dispatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-dispatch/src/dispatch.js -------------------------------------------------------------------------------- /flask/static/js/third-party/d3-dispatch/test/dispatch-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3-dispatch/test/dispatch-test.js -------------------------------------------------------------------------------- /flask/static/js/third-party/d3.v4/d3.v4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3.v4/d3.v4.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/d3/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3/.bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/d3/.spmignore: -------------------------------------------------------------------------------- 1 | bin 2 | lib 3 | src 4 | test 5 | -------------------------------------------------------------------------------- /flask/static/js/third-party/d3/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3/CONTRIBUTING.md -------------------------------------------------------------------------------- /flask/static/js/third-party/d3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3/LICENSE -------------------------------------------------------------------------------- /flask/static/js/third-party/d3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3/README.md -------------------------------------------------------------------------------- /flask/static/js/third-party/d3/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3/bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/d3/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3/composer.json -------------------------------------------------------------------------------- /flask/static/js/third-party/d3/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3/d3.js -------------------------------------------------------------------------------- /flask/static/js/third-party/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/d3/d3.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/.bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/LICENSE.txt -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/README.md -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/dist/core.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/dist/jquery.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/external/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/external/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/external/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/external/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/external/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/external/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/.eslintrc.json -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/ajax.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/callbacks.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/access.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/init.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/ready-no-deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/ready-no-deferred.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/ready.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/readyException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/readyException.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/stripAndCollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/stripAndCollapse.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/support.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/support.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/var/isHiddenWithinTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/var/isHiddenWithinTree.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/data.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/data/Data.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/deferred.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/deferred/exceptionHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/deferred/exceptionHook.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/deprecated.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/dimensions.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/effects.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/event.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/event/alias.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/event/support.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/exports/global.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/jquery.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/manipulation.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/offset.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/queue.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/selector-native.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/serialize.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/traversing.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/ObjectFunctionString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/ObjectFunctionString.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/concat.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/document.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/fnToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/fnToString.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/push.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/rnothtmlwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/rnothtmlwhite.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/slice.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/support.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/var/toString.js -------------------------------------------------------------------------------- /flask/static/js/third-party/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/jquery/src/wrap.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/.bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/CHANGELOG.md -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/CONTRIBUTING.md -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/LICENSE -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/README.md -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/SECURITY.md -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/circle.yml -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/README.md -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/extras/mathjax/MathJax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/extras/mathjax/MathJax.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/extras/typedarray.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/extras/typedarray.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-basic.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-basic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-basic.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-cartesian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-cartesian.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-cartesian.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-cartesian.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-geo-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-geo-assets.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-geo.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-geo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-geo.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-gl2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-gl2d.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-gl2d.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-gl2d.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-gl3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-gl3d.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-gl3d.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-gl3d.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-mapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-mapbox.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-mapbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-mapbox.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly-with-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly-with-meta.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/plotly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/plotly.min.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/africa_110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/africa_110m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/africa_50m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/africa_50m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/asia_110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/asia_110m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/asia_50m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/asia_50m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/europe_110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/europe_110m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/europe_50m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/europe_50m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/usa_110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/usa_110m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/usa_50m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/usa_50m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/world_110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/world_110m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/dist/topojson/world_50m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/dist/topojson/world_50m.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/bar.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/box.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/choropleth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/choropleth.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/contour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/contour.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/contourgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/contourgl.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/core.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/heatmap.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/heatmapgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/heatmapgl.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/histogram.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/histogram2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/histogram2d.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/histogram2dcontour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/histogram2dcontour.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/index-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/index-basic.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/index-cartesian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/index-cartesian.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/index-geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/index-geo.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/index-gl2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/index-gl2d.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/index-gl3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/index-gl3d.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/index-mapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/index-mapbox.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/mesh3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/mesh3d.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/pie.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/pointcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/pointcloud.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/scatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/scatter.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/scatter3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/scatter3d.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/scattergeo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/scattergeo.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/scattergl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/scattergl.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/scattermapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/scattermapbox.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/scatterternary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/scatterternary.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/lib/surface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/lib/surface.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/package.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/assets/geo_assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/assets/geo_assets.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/annotations/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/annotations/draw.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/color/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/color/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/color/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/color/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/colorbar/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/colorbar/draw.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/colorbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/colorbar/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/colorscale/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/colorscale/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/colorscale/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/colorscale/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/drawing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/drawing/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/errorbars/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/errorbars/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/errorbars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/errorbars/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/errorbars/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/errorbars/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/errorbars/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/errorbars/style.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/images/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/images/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/images/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/images/draw.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/images/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/images/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/legend/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/legend/constants.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/legend/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/legend/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/legend/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/legend/draw.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/legend/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/legend/helpers.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/legend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/legend/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/legend/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/legend/style.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/modebar/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/modebar/buttons.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/modebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/modebar/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/modebar/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/modebar/manage.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/modebar/modebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/modebar/modebar.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/shapes/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/shapes/constants.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/shapes/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/shapes/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/shapes/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/shapes/draw.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/shapes/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/shapes/helpers.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/shapes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/shapes/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/titles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/titles/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/components/updatemenus/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/components/updatemenus/draw.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/constants/gl2d_dashes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/constants/gl2d_dashes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/constants/gl3d_dashes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/constants/gl3d_dashes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/constants/gl_markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/constants/gl_markers.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/constants/string_mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/constants/string_mappings.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/constants/xmlns_namespaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/constants/xmlns_namespaces.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/core.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/css/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/css/_base.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/css/_cursor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/css/_cursor.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/css/_drag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/css/_drag.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/css/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/css/_mixins.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/css/_modebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/css/_modebar.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/css/_notifier.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/css/_notifier.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/css/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/css/_tooltip.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/css/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/css/_vars.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/css/style.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/fonts/mathjax_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/fonts/mathjax_config.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/fonts/ploticon/_ploticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/fonts/ploticon/_ploticon.scss -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/fonts/ploticon/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/fonts/ploticon/config.json -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/fonts/ploticon/ploticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/fonts/ploticon/ploticon.eot -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/fonts/ploticon/ploticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/fonts/ploticon/ploticon.svg -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/fonts/ploticon/ploticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/fonts/ploticon/ploticon.ttf -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/fonts/ploticon/ploticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/fonts/ploticon/ploticon.woff -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/array_to_calc_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/array_to_calc_item.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/coerce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/coerce.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/dates.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/events.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/extend.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/filter_visible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/filter_visible.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/float32_truncate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/float32_truncate.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/geo_location_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/geo_location_utils.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/gl_format_color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/gl_format_color.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/html2unicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/html2unicode.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/is_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/is_array.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/is_plain_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/is_plain_object.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/loggers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/loggers.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/matrix.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/nested_property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/nested_property.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/notifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/notifier.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/polygon.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/queue.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/search.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/setcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/setcursor.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/show_no_webgl_msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/show_no_webgl_msg.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/stats.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/str2rgbarray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/str2rgbarray.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/svg_text_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/svg_text_utils.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/lib/topojson_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/lib/topojson_utils.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plot_api/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plot_api/helpers.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plot_api/plot_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plot_api/plot_api.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plot_api/plot_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plot_api/plot_config.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plot_api/plot_schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plot_api/plot_schema.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plot_api/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plot_api/register.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plot_api/set_plot_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plot_api/set_plot_config.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plot_api/subroutines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plot_api/subroutines.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plot_api/to_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plot_api/to_image.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plot_api/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plot_api/validate.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plotly.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/animation_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/animation_attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/cartesian/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/cartesian/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/cartesian/axes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/cartesian/axes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/cartesian/axis_ids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/cartesian/axis_ids.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/cartesian/clean_datum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/cartesian/clean_datum.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/cartesian/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/cartesian/constants.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/cartesian/dragbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/cartesian/dragbox.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/cartesian/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/cartesian/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/cartesian/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/cartesian/select.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/cartesian/set_convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/cartesian/set_convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/font_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/font_attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/frame_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/frame_attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/geo/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/geo/constants.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/geo/geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/geo/geo.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/geo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/geo/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/geo/layout/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/geo/layout/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/geo/layout/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/geo/layout/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/geo/projections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/geo/projections.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/geo/set_scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/geo/set_scale.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/geo/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/geo/zoom.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/geo/zoom_reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/geo/zoom_reset.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl2d/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl2d/camera.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl2d/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl2d/convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl2d/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl2d/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl2d/scene2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl2d/scene2d.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl3d/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl3d/camera.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl3d/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl3d/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl3d/layout/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl3d/layout/convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl3d/layout/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl3d/layout/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl3d/layout/spikes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl3d/layout/spikes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl3d/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl3d/project.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl3d/scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl3d/scene.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/gl3d/set_convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/gl3d/set_convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/layout_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/layout_attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/mapbox/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/mapbox/constants.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/mapbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/mapbox/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/mapbox/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/mapbox/layers.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/mapbox/mapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/mapbox/mapbox.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/plots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/plots.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/polar/area_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/polar/area_attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/polar/axis_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/polar/axis_attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/polar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/polar/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/polar/micropolar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/polar/micropolar.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/polar/undo_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/polar/undo_manager.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/subplot_defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/subplot_defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/ternary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/ternary/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/plots/ternary/ternary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/plots/ternary/ternary.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/registry.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/snapshot/cloneplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/snapshot/cloneplot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/snapshot/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/snapshot/download.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/snapshot/filesaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/snapshot/filesaver.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/snapshot/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/snapshot/helpers.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/snapshot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/snapshot/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/snapshot/svgtoimg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/snapshot/svgtoimg.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/snapshot/toimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/snapshot/toimage.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/snapshot/tosvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/snapshot/tosvg.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/hover.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/layout_defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/layout_defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/set_positions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/set_positions.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/style.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/bar/style_defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/bar/style_defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/box/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/box/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/box/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/box/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/box/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/box/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/box/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/box/hover.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/box/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/box/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/box/layout_defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/box/layout_defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/box/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/box/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/box/set_positions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/box/set_positions.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/box/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/box/style.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/choropleth/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/choropleth/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/choropleth/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/choropleth/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/choropleth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/choropleth/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/choropleth/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/choropleth/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contour/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contour/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contour/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contour/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contour/colorbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contour/colorbar.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contour/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contour/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contour/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contour/hover.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contour/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contour/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contour/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contour/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contour/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contour/style.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contourgl/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contourgl/convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/contourgl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/contourgl/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/colorbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/colorbar.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/has_columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/has_columns.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/hover.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/style.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmap/xyz_defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmap/xyz_defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmapgl/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmapgl/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmapgl/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmapgl/convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/heatmapgl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/heatmapgl/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/histogram/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/histogram/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/histogram/average.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/histogram/average.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/histogram/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/histogram/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/histogram/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/histogram/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/histogram/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/histogram/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/histogram2d/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/histogram2d/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/histogram2d/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/histogram2d/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/histogram2d/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/histogram2d/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/mesh3d/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/mesh3d/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/mesh3d/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/mesh3d/convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/mesh3d/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/mesh3d/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/mesh3d/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/mesh3d/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/base_plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/base_plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/helpers.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/layout_defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/layout_defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/style.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pie/style_one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pie/style_one.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pointcloud/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pointcloud/convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pointcloud/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pointcloud/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/pointcloud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/pointcloud/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/clean_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/clean_data.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/colorbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/colorbar.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/constants.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/hover.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/line_points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/line_points.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/link_traces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/link_traces.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/select.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/style.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/subtypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/subtypes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter/xy_defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter/xy_defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter3d/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter3d/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter3d/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter3d/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter3d/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter3d/convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter3d/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter3d/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatter3d/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatter3d/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattergeo/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattergeo/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattergeo/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattergeo/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattergeo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattergeo/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattergeo/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattergeo/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattergl/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattergl/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattergl/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattergl/convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattergl/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattergl/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattergl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattergl/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattermapbox/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattermapbox/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattermapbox/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattermapbox/hover.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattermapbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattermapbox/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scattermapbox/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scattermapbox/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatterternary/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatterternary/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatterternary/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatterternary/hover.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatterternary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatterternary/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatterternary/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatterternary/plot.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/scatterternary/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/scatterternary/style.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/surface/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/surface/attributes.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/surface/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/surface/calc.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/surface/colorbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/surface/colorbar.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/surface/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/surface/convert.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/surface/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/surface/defaults.js -------------------------------------------------------------------------------- /flask/static/js/third-party/plotly/src/traces/surface/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/plotly/src/traces/surface/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/.bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/LICENSE -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/README.md -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/bower.json -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/boundingbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/boundingbox.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/css_styled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/css_styled.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/dynamic.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/interactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/interactive.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/lastfm.jsonp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/lastfm.jsonp -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/medical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/medical.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/medical.jsonp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/medical.jsonp -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/orientation_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/orientation_order.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/simple.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/styled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/styled.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/sublabels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/sublabels.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/venn_venn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/venn_venn.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/examples/weighted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/examples/weighted.html -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/index.js -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/package.json -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/src/circleintersection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/src/circleintersection.js -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/src/diagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/src/diagram.js -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/src/fmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/src/fmin.js -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/src/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/src/layout.js -------------------------------------------------------------------------------- /flask/static/js/third-party/venn.js/venn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/static/js/third-party/venn.js/venn.js -------------------------------------------------------------------------------- /flask/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/task.py -------------------------------------------------------------------------------- /flask/templates/coge_clustermap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_clustermap.html -------------------------------------------------------------------------------- /flask/templates/coge_embeddings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_embeddings.html -------------------------------------------------------------------------------- /flask/templates/coge_heatmap1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_heatmap1.html -------------------------------------------------------------------------------- /flask/templates/coge_heatmap2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_heatmap2.html -------------------------------------------------------------------------------- /flask/templates/coge_journals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_journals.html -------------------------------------------------------------------------------- /flask/templates/coge_kmeans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_kmeans.html -------------------------------------------------------------------------------- /flask/templates/coge_kmeans2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_kmeans2.html -------------------------------------------------------------------------------- /flask/templates/coge_lda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_lda.html -------------------------------------------------------------------------------- /flask/templates/coge_lsa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_lsa.html -------------------------------------------------------------------------------- /flask/templates/coge_scifi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_scifi.html -------------------------------------------------------------------------------- /flask/templates/coge_scifi2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_scifi2.html -------------------------------------------------------------------------------- /flask/templates/coge_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_stats.html -------------------------------------------------------------------------------- /flask/templates/coge_wordcloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/coge_wordcloud.html -------------------------------------------------------------------------------- /flask/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/dashboard.html -------------------------------------------------------------------------------- /flask/templates/graveyard_coge_embeddings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/graveyard_coge_embeddings.html -------------------------------------------------------------------------------- /flask/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/header.html -------------------------------------------------------------------------------- /flask/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/home.html -------------------------------------------------------------------------------- /flask/templates/res_kmeans1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/res_kmeans1.html -------------------------------------------------------------------------------- /flask/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results.html -------------------------------------------------------------------------------- /flask/templates/results_clustermap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_clustermap.html -------------------------------------------------------------------------------- /flask/templates/results_clustermapH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_clustermapH.html -------------------------------------------------------------------------------- /flask/templates/results_embeddings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_embeddings.html -------------------------------------------------------------------------------- /flask/templates/results_heatmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_heatmap.html -------------------------------------------------------------------------------- /flask/templates/results_journals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_journals.html -------------------------------------------------------------------------------- /flask/templates/results_lda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_lda.html -------------------------------------------------------------------------------- /flask/templates/results_lsa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_lsa.html -------------------------------------------------------------------------------- /flask/templates/results_scifi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_scifi.html -------------------------------------------------------------------------------- /flask/templates/results_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_stats.html -------------------------------------------------------------------------------- /flask/templates/results_wordcloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/results_wordcloud.html -------------------------------------------------------------------------------- /flask/templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/templates/test.html -------------------------------------------------------------------------------- /flask/test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask/tfidf_nps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/tfidf_nps.py -------------------------------------------------------------------------------- /flask/update_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/flask/update_db.py -------------------------------------------------------------------------------- /pip_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hclent/Science-Citation-Knowledge-Extractor/HEAD/pip_requirements.txt --------------------------------------------------------------------------------