├── wisual.cfg
├── run.py
├── wisual
├── __init__.py
├── static
│ ├── fonts
│ │ ├── hacked.eot
│ │ ├── hacked.ttf
│ │ ├── hacked.woff
│ │ ├── hacked.woff2
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── img
│ │ ├── logoWisual.png
│ │ ├── favicon
│ │ │ ├── favicon.ico
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon-16x16.png
│ │ │ ├── favicon-32x32.png
│ │ │ ├── favicon-96x96.png
│ │ │ ├── ms-icon-70x70.png
│ │ │ ├── apple-icon-57x57.png
│ │ │ ├── apple-icon-60x60.png
│ │ │ ├── apple-icon-72x72.png
│ │ │ ├── apple-icon-76x76.png
│ │ │ ├── ms-icon-144x144.png
│ │ │ ├── ms-icon-150x150.png
│ │ │ ├── ms-icon-310x310.png
│ │ │ ├── android-icon-36x36.png
│ │ │ ├── android-icon-48x48.png
│ │ │ ├── android-icon-72x72.png
│ │ │ ├── android-icon-96x96.png
│ │ │ ├── apple-icon-114x114.png
│ │ │ ├── apple-icon-120x120.png
│ │ │ ├── apple-icon-144x144.png
│ │ │ ├── apple-icon-152x152.png
│ │ │ ├── apple-icon-180x180.png
│ │ │ ├── android-icon-144x144.png
│ │ │ ├── android-icon-192x192.png
│ │ │ ├── apple-icon-precomposed.png
│ │ │ ├── browserconfig.xml
│ │ │ └── manifest.json
│ │ └── logoWisual.svg
│ ├── css
│ │ ├── notifyme.css
│ │ ├── main_test.css
│ │ ├── main.css
│ │ ├── font-awesome.min.css
│ │ └── font-awesome.css
│ └── js
│ │ ├── downloadChart.js
│ │ ├── browser.js
│ │ ├── startJob.js
│ │ ├── notifyme.js
│ │ ├── FileSaver.min.js
│ │ ├── canvasToBlob.js
│ │ └── bootstrap.min.js
├── templates
│ ├── results.html
│ ├── index.html
│ ├── jobs.html
│ ├── job.html
│ ├── result.html
│ └── base.html
├── QpsnrProcessor.py
└── views.py
├── README.md
├── .gitignore
├── results
├── result.xml
└── result2.xml
└── LICENSE
/wisual.cfg:
--------------------------------------------------------------------------------
1 | [MONGODB]
2 | hostname: localhost
3 | port: 27017
4 | dbName: wisual
5 | jobsTable: jobs
--------------------------------------------------------------------------------
/run.py:
--------------------------------------------------------------------------------
1 |
2 | import wisual
3 |
4 | if __name__ == '__main__':
5 | wisual.g_app.run( debug=True )
--------------------------------------------------------------------------------
/wisual/__init__.py:
--------------------------------------------------------------------------------
1 |
2 | from flask import Flask
3 |
4 | g_app = Flask(__name__)
5 |
6 | import views
--------------------------------------------------------------------------------
/wisual/static/fonts/hacked.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/fonts/hacked.eot
--------------------------------------------------------------------------------
/wisual/static/fonts/hacked.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/fonts/hacked.ttf
--------------------------------------------------------------------------------
/wisual/static/fonts/hacked.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/fonts/hacked.woff
--------------------------------------------------------------------------------
/wisual/static/fonts/hacked.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/fonts/hacked.woff2
--------------------------------------------------------------------------------
/wisual/static/img/logoWisual.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/logoWisual.png
--------------------------------------------------------------------------------
/wisual/static/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/wisual/static/img/favicon/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/favicon.ico
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon.png
--------------------------------------------------------------------------------
/wisual/static/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/wisual/static/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/wisual/static/img/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/favicon-96x96.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/ms-icon-70x70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/ms-icon-70x70.png
--------------------------------------------------------------------------------
/wisual/static/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/wisual/static/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-57x57.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-60x60.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-72x72.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-76x76.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/ms-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/ms-icon-144x144.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/ms-icon-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/ms-icon-150x150.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/ms-icon-310x310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/ms-icon-310x310.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/android-icon-36x36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/android-icon-36x36.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/android-icon-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/android-icon-48x48.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/android-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/android-icon-72x72.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/android-icon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/android-icon-96x96.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-114x114.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-120x120.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-144x144.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-152x152.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-180x180.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/android-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/android-icon-144x144.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/android-icon-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/android-icon-192x192.png
--------------------------------------------------------------------------------
/wisual/static/img/favicon/apple-icon-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarcAntoine-Arnaud/wisual/HEAD/wisual/static/img/favicon/apple-icon-precomposed.png
--------------------------------------------------------------------------------
/wisual/templates/results.html:
--------------------------------------------------------------------------------
1 | {% extends "base.html" %}
2 | {% block content %}
3 |
View results
4 | {% for resultFile in resultsFiles %}
5 |
8 | {% endfor %}
9 | {% endblock %}
--------------------------------------------------------------------------------
/wisual/static/img/favicon/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 | #ffffff
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Wisual
2 |
3 | Web Service for Visual Quality Assessment
4 |
5 | ## Why Wisual ?
6 |
7 | Wisual is an engine to process analysis between media to evaluate theire similarity.
8 |
9 | Similarity can be process using some differents algorithms like:
10 | * PSNR
11 | * SSIM
12 | * MS-SSIM
13 | * VQM
14 | * Blurring metric
15 | * Blocking metric
16 | * Drop frame metric
17 | * Noise Estimation metric
18 | * ...
19 |
20 | Wisual is an fully open-source service, which can be installed and used as a web service.
21 |
--------------------------------------------------------------------------------
/wisual/static/css/notifyme.css:
--------------------------------------------------------------------------------
1 | .notify{position:fixed;padding:20px;color:#fff}.notify[data-position="bottom"]{right:0;left:200px;bottom:0}.notify[data-position="top"]{right:0;left:0;top:0}.notify[data-position="right"]{right:0;bottom:0;top:0;max-width:300px}.notify[data-position="left"]{left:0;top:0;bottom:0;max-width:300px}.notify[data-notify='success']{background:#15cc1f}.notify[data-notify='info']{background:rgb(79,165,123)}.notify[data-notify='error']{background:#f32750}.notify[data-notify='default']{background:#cf80ad}.notify .notify-close{cursor:pointer;position:absolute;right:0;top:0;color:#fff;padding:10px 15px;font-size:20px;text-decoration:none}.notify h1{margin:5px 0 10px 0;text-transform:uppercase;font-weight:300;color:#fff}
2 |
--------------------------------------------------------------------------------
/wisual/static/js/downloadChart.js:
--------------------------------------------------------------------------------
1 |
2 | $("#downloadChart").submit(function( event ){
3 | format = $(this).find( "input[name='format']:checked" ).val();
4 | var canvas = document.getElementById("graphResult"); //.getContext("2d");
5 | var ctx = canvas.getContext("2d");
6 | event.preventDefault();
7 |
8 | switch(format){
9 | case "png":{
10 | canvas.toBlob(function(blob) {
11 | saveAs(blob, "chart.png");
12 | }, "image/png");
13 | break;
14 | }
15 | case "jpeg":{
16 | canvas.toBlob(function(blob) {
17 | saveAs(blob, "chart.jpg");
18 | }, "image/jpeg");
19 | break;
20 | }
21 | default:{
22 | console.log("unknown format");
23 | break;
24 | }
25 | }
26 | $("#downloadChart").modal("hide");
27 | });
28 |
--------------------------------------------------------------------------------
/wisual/templates/index.html:
--------------------------------------------------------------------------------
1 | {% extends "base.html" %}
2 | {% block content %}
3 | Fork me on Github
4 | Why Wisual ?
5 | Wisual is an engine to process analysis between media to evaluate theire similarity.
6 | Similarity can be process using some differents algorithms like:
7 |
8 | - PSNR
9 | - SSIM
10 | - MS-SSIM
11 | - VQM
12 | - Blurring metric
13 | - Blocking metric
14 | - Drop frame metric
15 | - Noise Estimation metric
16 | - ...
17 |
18 |
19 | Wisual is an fully open-source service, which can be installed and used as a web service.
20 |
21 | {% endblock %}
--------------------------------------------------------------------------------
/wisual/templates/jobs.html:
--------------------------------------------------------------------------------
1 | {% extends "base.html" %}
2 | {% block content %}
3 | List Analysis
4 |
5 |
6 |
7 |
8 | | Mode |
9 | Reference |
10 | Start |
11 | End |
12 | Result |
13 |
14 | {% for job in jobs %}
15 |
16 | |
17 | {% for analysisMode in analysisModes %}
18 | {% if analysisMode.id == job.analysisMode %}
19 | {{ analysisMode.name }}
20 | {% endif %}
21 | {% endfor %} |
22 | {{job.referenceVideo}} |
23 | {{job.startDate}} |
24 | {{job.endDate}} |
25 | {{job.status}} |
26 |
27 | {% endfor %}
28 |
29 |
30 |
31 | {% endblock %}
--------------------------------------------------------------------------------
/wisual/static/img/favicon/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "App",
3 | "icons": [
4 | {
5 | "src": "\/android-icon-36x36.png",
6 | "sizes": "36x36",
7 | "type": "image\/png",
8 | "density": "0.75"
9 | },
10 | {
11 | "src": "\/android-icon-48x48.png",
12 | "sizes": "48x48",
13 | "type": "image\/png",
14 | "density": "1.0"
15 | },
16 | {
17 | "src": "\/android-icon-72x72.png",
18 | "sizes": "72x72",
19 | "type": "image\/png",
20 | "density": "1.5"
21 | },
22 | {
23 | "src": "\/android-icon-96x96.png",
24 | "sizes": "96x96",
25 | "type": "image\/png",
26 | "density": "2.0"
27 | },
28 | {
29 | "src": "\/android-icon-144x144.png",
30 | "sizes": "144x144",
31 | "type": "image\/png",
32 | "density": "3.0"
33 | },
34 | {
35 | "src": "\/android-icon-192x192.png",
36 | "sizes": "192x192",
37 | "type": "image\/png",
38 | "density": "4.0"
39 | }
40 | ]
41 | }
--------------------------------------------------------------------------------
/wisual/static/js/browser.js:
--------------------------------------------------------------------------------
1 |
2 | $(function() {
3 |
4 | $.ajax("/ls")
5 | .done( function(data){
6 | $("#root").append( "" );
7 | $.each( data.directories, function(index, directory){
8 | $("#root ul").append( '- ' + directory + '
')
9 | });
10 | $.each( data.files, function(index, file){
11 | $("#root ul").append( '- ' + file + '
')
12 | })
13 | $("#root").append( "
" );
14 | $( ".browser-file" ).draggable({ helper: "clone" });
15 | })
16 | .error( function(){
17 | console.log("Error during listing on server.");
18 | });
19 |
20 | $( ".inputFile" ).droppable({
21 | activeClass: "ui-state-hover",
22 | hoverClass: "ui-state-active",
23 | drop: function( event, ui ) {
24 | $( this ).addClass( "ui-state-highlight" );
25 | $( this ).val( ui.draggable.context.innerText );
26 | }
27 | });
28 |
29 | });
--------------------------------------------------------------------------------
/wisual/static/js/startJob.js:
--------------------------------------------------------------------------------
1 |
2 | $("#startJob").submit(function( event ){
3 |
4 | data = { "videos": []}
5 |
6 | data["reference"] = $(this).find( "input[name='reference']" ).val();
7 | for( var i = 0; i < 5; ++i ){
8 | var elem = "input[name='video" + i + "']";
9 | var video = $(this).find( elem ).val();
10 | if( video == ""){break;}
11 | data.videos.push(video);
12 | }
13 | data["mode"] = $(this).find( "input[name='analysisMode']:checked" ).val();
14 | console.log(data);
15 | $.ajax({
16 | type: "POST",
17 | data: JSON.stringify(data),
18 | url: "/job",
19 | contentType: 'application/json; charset=utf-8'
20 | })
21 | .done(function(data){
22 | console.log(data);
23 | $(this).notifyMe(
24 | 'bottom',
25 | 'info',
26 | 'Analysis started',
27 | 'New analysis just started now.',
28 | 1000,
29 | 2000
30 | );
31 | })
32 | .error(function(data){
33 | console.log("error");
34 | })
35 |
36 | event.preventDefault();
37 | });
38 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
3 | # Byte-compiled / optimized / DLL files
4 | __pycache__/
5 | *.py[cod]
6 |
7 | # C extensions
8 | *.so
9 |
10 | # Distribution / packaging
11 | .Python
12 | env/
13 | build/
14 | develop-eggs/
15 | dist/
16 | downloads/
17 | eggs/
18 | .eggs/
19 | lib/
20 | lib64/
21 | parts/
22 | sdist/
23 | var/
24 | *.egg-info/
25 | .installed.cfg
26 | *.egg
27 |
28 | # PyInstaller
29 | # Usually these files are written by a python script from a template
30 | # before PyInstaller builds the exe, so as to inject date/other infos into it.
31 | *.manifest
32 | *.spec
33 |
34 | # Installer logs
35 | pip-log.txt
36 | pip-delete-this-directory.txt
37 |
38 | # Unit test / coverage reports
39 | htmlcov/
40 | .tox/
41 | .coverage
42 | .coverage.*
43 | .cache
44 | nosetests.xml
45 | coverage.xml
46 | *,cover
47 |
48 | # Translations
49 | *.mo
50 | *.pot
51 |
52 | # Django stuff:
53 | *.log
54 |
55 | # Sphinx documentation
56 | docs/_build/
57 |
58 | # PyBuilder
59 | target/
60 |
61 | results
62 |
--------------------------------------------------------------------------------
/wisual/QpsnrProcessor.py:
--------------------------------------------------------------------------------
1 | import os
2 | from qpsnr import qpsnr
3 | from datetime import datetime
4 |
5 | currentAppDir = os.path.dirname(__file__)
6 |
7 | class QpsnrProcessor(object):
8 | def __init__(self):
9 | self.analysisMode = "psnr"
10 | self.outputFile = ""
11 | self.referenceVideo = ""
12 | self.videos = []
13 | self.startDate = datetime.now().isoformat()
14 | self.endDate = ""
15 | self.status = "unknown"
16 |
17 | def run(self):
18 | self.status = "processing"
19 |
20 | referenceVideo = os.path.join( currentAppDir, "..", "media", self.referenceVideo)
21 |
22 | processor = qpsnr.Qpsnr( str(self.outputFile), str(referenceVideo) )
23 | for video in self.videos:
24 | absPathVideo = os.path.join( currentAppDir, "..", "media", video)
25 | processor.addVideo( str(absPathVideo) );
26 | options = {}
27 | processor.initAnalyser( str(self.analysisMode), options );
28 | processor.process();
29 | self.status = "complete"
30 | self.endDate = datetime.now().isoformat()
31 |
--------------------------------------------------------------------------------
/wisual/templates/job.html:
--------------------------------------------------------------------------------
1 | {% extends "base.html" %}
2 | {% block content %}
3 | Start an analyse
4 |
35 |
36 |
37 | {% endblock %}
38 |
39 | {% block rigthPanel %}
40 |
46 |
47 | {% endblock %}
--------------------------------------------------------------------------------
/wisual/static/js/notifyme.js:
--------------------------------------------------------------------------------
1 | // Notifications
2 | (function($){
3 | 'use strict';
4 |
5 | // Define plugin name and parameters
6 | $.fn.notifyMe = function($position, $type, $title, $content, $velocity, $delay){
7 | // Remove recent notification for appear new
8 | $('.notify').remove();
9 |
10 | // Create the content of Alert
11 | var close = "x";
12 | var header = "" + close + "" + $title + "
";
13 | var content = "" + $content + "
";
14 |
15 | var notifyModel = header + content;
16 |
17 | $('body').prepend(notifyModel);
18 |
19 | var notifyHeight = $('.notify').outerHeight();
20 |
21 | // Function to show notification
22 | function openNotification(position) {
23 | var close = {};
24 | var show = {};
25 | close[position] = '-' + notifyHeight;
26 | show[position] = '0px';
27 |
28 | // Show notification
29 | $('.notify').css(position, '-' + notifyHeight);
30 | $('.notify').animate(show,$velocity);
31 |
32 | // Close Notifications automatically
33 | if(typeof $delay !== 'undefined') {
34 | setTimeout(function(){
35 | $('.notify').animate(close,$velocity);
36 |
37 | // Remove item when close
38 | setTimeout(function(){
39 | $('.notify').remove();
40 | },$velocity + 100);
41 | },$delay);
42 | }
43 | }
44 |
45 | // Show notifications
46 | switch($position) {
47 | case "bottom":
48 | openNotification('bottom');
49 | break;
50 |
51 | case "top":
52 | openNotification('top');
53 | break;
54 |
55 | case "left":
56 | openNotification('left');
57 | break;
58 |
59 | case "right":
60 | openNotification('right');
61 | break;
62 | }
63 |
64 | // Function to close notifications
65 | function closeNotification(position) {
66 | var options = {};
67 | options[position] = '-' + notifyHeight;
68 | $('.notify').animate(options, $velocity);
69 |
70 | // Remove item when close
71 | setTimeout(function(){
72 | $('.notify').remove();
73 | },$velocity + 100);
74 | }
75 |
76 | // Close Notification
77 | $('.notify-close').click(function(){
78 | // Move notification
79 | switch($position) {
80 | case "bottom":
81 | closeNotification('bottom');
82 | break;
83 |
84 | case "top":
85 | closeNotification('top');
86 | break;
87 |
88 | case "left":
89 | closeNotification('left');
90 | break;
91 |
92 | case "right":
93 | closeNotification('right');
94 | break;
95 | }
96 | });
97 | }
98 | }(jQuery));
99 |
100 |
101 |
102 |
103 |
104 |
105 |
--------------------------------------------------------------------------------
/wisual/static/js/FileSaver.min.js:
--------------------------------------------------------------------------------
1 | /*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */
2 | var saveAs=saveAs||function(e){"use strict";if("undefined"==typeof navigator||!/MSIE [1-9]\./.test(navigator.userAgent)){var t=e.document,n=function(){return e.URL||e.webkitURL||e},o=t.createElementNS("http://www.w3.org/1999/xhtml","a"),r="download"in o,i=function(n){var o=t.createEvent("MouseEvents");o.initMouseEvent("click",!0,!1,e,0,0,0,0,0,!1,!1,!1,!1,0,null),n.dispatchEvent(o)},a=e.webkitRequestFileSystem,c=e.requestFileSystem||a||e.mozRequestFileSystem,u=function(t){(e.setImmediate||e.setTimeout)(function(){throw t},0)},f="application/octet-stream",s=0,d=500,l=function(t){var o=function(){"string"==typeof t?n().revokeObjectURL(t):t.remove()};e.chrome?o():setTimeout(o,d)},v=function(e,t,n){t=[].concat(t);for(var o=t.length;o--;){var r=e["on"+t[o]];if("function"==typeof r)try{r.call(e,n||e)}catch(i){u(i)}}},p=function(e){return/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob(["\ufeff",e],{type:e.type}):e},w=function(t,u){t=p(t);var d,w,y,m=this,S=t.type,h=!1,O=function(){v(m,"writestart progress write writeend".split(" "))},E=function(){if((h||!d)&&(d=n().createObjectURL(t)),w)w.location.href=d;else{var o=e.open(d,"_blank");void 0==o&&"undefined"!=typeof safari&&(e.location.href=d)}m.readyState=m.DONE,O(),l(d)},R=function(e){return function(){return m.readyState!==m.DONE?e.apply(this,arguments):void 0}},b={create:!0,exclusive:!1};return m.readyState=m.INIT,u||(u="download"),r?(d=n().createObjectURL(t),o.href=d,o.download=u,i(o),m.readyState=m.DONE,O(),void l(d)):(e.chrome&&S&&S!==f&&(y=t.slice||t.webkitSlice,t=y.call(t,0,t.size,f),h=!0),a&&"download"!==u&&(u+=".download"),(S===f||a)&&(w=e),c?(s+=t.size,void c(e.TEMPORARY,s,R(function(e){e.root.getDirectory("saved",b,R(function(e){var n=function(){e.getFile(u,b,R(function(e){e.createWriter(R(function(n){n.onwriteend=function(t){w.location.href=e.toURL(),m.readyState=m.DONE,v(m,"writeend",t),l(e)},n.onerror=function(){var e=n.error;e.code!==e.ABORT_ERR&&E()},"writestart progress write abort".split(" ").forEach(function(e){n["on"+e]=m["on"+e]}),n.write(t),m.abort=function(){n.abort(),m.readyState=m.DONE},m.readyState=m.WRITING}),E)}),E)};e.getFile(u,{create:!1},R(function(e){e.remove(),n()}),R(function(e){e.code===e.NOT_FOUND_ERR?n():E()}))}),E)}),E)):void E())},y=w.prototype,m=function(e,t){return new w(e,t)};return"undefined"!=typeof navigator&&navigator.msSaveOrOpenBlob?function(e,t){return navigator.msSaveOrOpenBlob(p(e),t)}:(y.abort=function(){var e=this;e.readyState=e.DONE,v(e,"abort")},y.readyState=y.INIT=0,y.WRITING=1,y.DONE=2,y.error=y.onwritestart=y.onprogress=y.onwrite=y.onabort=y.onerror=y.onwriteend=null,m)}}("undefined"!=typeof self&&self||"undefined"!=typeof window&&window||this.content);"undefined"!=typeof module&&module.exports?module.exports.saveAs=saveAs:"undefined"!=typeof define&&null!==define&&null!=define.amd&&define([],function(){return saveAs});
--------------------------------------------------------------------------------
/wisual/views.py:
--------------------------------------------------------------------------------
1 |
2 | import os
3 | import uuid
4 | import thread
5 | import xmltodict
6 | from wisual import g_app
7 | from flask import (
8 | render_template,
9 | request,
10 | jsonify,
11 | abort,
12 | )
13 |
14 | from QpsnrProcessor import QpsnrProcessor
15 |
16 | currentAppDir = os.path.dirname(__file__)
17 |
18 | navigation = [
19 | {
20 | "caption": "New analyse",
21 | "href" : "/job",
22 | "icon" : "arrow-circle-right"
23 | },
24 | {
25 | "caption": "List analysis",
26 | "href" : "/jobs",
27 | "icon" : "history"
28 | },
29 | {
30 | "caption": "View Results",
31 | "href" : "/results",
32 | "icon" : "bar-chart"
33 | }
34 | ]
35 |
36 | analysisModes = [
37 | {
38 | "id": "psnr",
39 | "name": "PSNR"
40 | },
41 | {
42 | "id": "ssim",
43 | "name": "SSIM"
44 | },
45 | {
46 | "id": "avg_psnr",
47 | "name": "Average PSNR"
48 | },
49 | {
50 | "id": "avg_ssim",
51 | "name": "Average SSIM"
52 | }
53 | ]
54 |
55 | processors = []
56 |
57 | @g_app.route("/")
58 | def index():
59 | return render_template('index.html', navigation=navigation)
60 |
61 | @g_app.route("/job")
62 | def newJob():
63 | return render_template('job.html', navigation=navigation, analysisModes=analysisModes)
64 |
65 | @g_app.route("/jobs")
66 | def listAllJobs():
67 | global processors
68 | return render_template('jobs.html', navigation=navigation, analysisModes=analysisModes, jobs=processors)
69 |
70 | @g_app.route("/job", methods=["POST"])
71 | def newAnalyse():
72 | global processors
73 |
74 | args = request.get_json()
75 | analysisMode = args.get( "mode", "psnr" )
76 | referenceVideo = args.get( "reference", None )
77 | videos = args.get( "videos", None )
78 |
79 | if referenceVideo == None or videos == None:
80 | abort( 400 )
81 |
82 | if not type( videos ) == list and len(video) > 0:
83 | abort( 400 )
84 |
85 | if not type( referenceVideo ) == unicode:
86 | abort( 400 )
87 |
88 | outputFile = os.path.join( "results", str(uuid.uuid4()) + ".xml" )
89 |
90 | processor = QpsnrProcessor()
91 | processor.analysisMode = analysisMode
92 | processor.outputFile = outputFile
93 | processor.referenceVideo = referenceVideo
94 | processor.videos = videos
95 |
96 | processors.append( processor )
97 |
98 | thread.start_new( processors[ len(processors) - 1 ].run, () )
99 | return jsonify(processor.__dict__)
100 |
101 | @g_app.route("/results")
102 | def getAllResults():
103 | resultsFiles = os.listdir("results")
104 | return render_template('results.html', navigation=navigation, resultsFiles=resultsFiles)
105 |
106 | @g_app.route("/results/")
107 | def getResult(resultFile):
108 | return render_template('result.html', navigation=navigation, resultFile=resultFile)
109 |
110 | @g_app.route("/ls")
111 | @g_app.route("/ls/")
112 | def ls(path = ""):
113 | files = []
114 | dirs = []
115 | try:
116 | filesAndDirs = os.listdir("media/" + path)
117 | for f in filesAndDirs:
118 | absPath = os.path.join("media/" + path, f)
119 | if os.path.isdir( absPath ):
120 | dirs.append(f)
121 | else:
122 | files.append(f)
123 | #print f, os.path.isdir(absPath)
124 | except:
125 | abort(404)
126 | return jsonify({"files":files, "directories": dirs, "path":path})
127 |
128 | @g_app.route("/results//data")
129 | def getResultData(path):
130 | f = open( os.path.join("results", path), 'r')
131 | output = xmltodict.parse(f, process_namespaces=False)
132 | f.close()
133 | return jsonify(**output)
134 |
--------------------------------------------------------------------------------
/wisual/templates/result.html:
--------------------------------------------------------------------------------
1 | {% extends "base.html" %}
2 | {% block content %}
3 |
4 |
5 |
6 |
7 |
8 |
34 |
35 |
36 |
37 |
38 |
39 |
104 |
105 | {% endblock %}
--------------------------------------------------------------------------------
/wisual/templates/base.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Wisual
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
43 |
44 |
51 |
52 |
53 | {% block content %}
54 | {% endblock %}
55 |
56 |
57 | {% block rigthPanel %}
58 | {% endblock %}
59 |
60 |
--------------------------------------------------------------------------------
/wisual/static/js/canvasToBlob.js:
--------------------------------------------------------------------------------
1 | /* canvas-toBlob.js
2 | * A canvas.toBlob() implementation.
3 | * 2013-12-27
4 | *
5 | * By Eli Grey, http://eligrey.com and Devin Samarin, https://github.com/eboyjr
6 | * License: X11/MIT
7 | * See https://github.com/eligrey/canvas-toBlob.js/blob/master/LICENSE.md
8 | */
9 |
10 | /*global self */
11 | /*jslint bitwise: true, regexp: true, confusion: true, es5: true, vars: true, white: true,
12 | plusplus: true */
13 |
14 | /*! @source http://purl.eligrey.com/github/canvas-toBlob.js/blob/master/canvas-toBlob.js */
15 |
16 | (function(view) {
17 | "use strict";
18 | var
19 | Uint8Array = view.Uint8Array
20 | , HTMLCanvasElement = view.HTMLCanvasElement
21 | , canvas_proto = HTMLCanvasElement && HTMLCanvasElement.prototype
22 | , is_base64_regex = /\s*;\s*base64\s*(?:;|$)/i
23 | , to_data_url = "toDataURL"
24 | , base64_ranks
25 | , decode_base64 = function(base64) {
26 | var
27 | len = base64.length
28 | , buffer = new Uint8Array(len / 4 * 3 | 0)
29 | , i = 0
30 | , outptr = 0
31 | , last = [0, 0]
32 | , state = 0
33 | , save = 0
34 | , rank
35 | , code
36 | , undef
37 | ;
38 | while (len--) {
39 | code = base64.charCodeAt(i++);
40 | rank = base64_ranks[code-43];
41 | if (rank !== 255 && rank !== undef) {
42 | last[1] = last[0];
43 | last[0] = code;
44 | save = (save << 6) | rank;
45 | state++;
46 | if (state === 4) {
47 | buffer[outptr++] = save >>> 16;
48 | if (last[1] !== 61 /* padding character */) {
49 | buffer[outptr++] = save >>> 8;
50 | }
51 | if (last[0] !== 61 /* padding character */) {
52 | buffer[outptr++] = save;
53 | }
54 | state = 0;
55 | }
56 | }
57 | }
58 | // 2/3 chance there's going to be some null bytes at the end, but that
59 | // doesn't really matter with most image formats.
60 | // If it somehow matters for you, truncate the buffer up outptr.
61 | return buffer;
62 | }
63 | ;
64 | if (Uint8Array) {
65 | base64_ranks = new Uint8Array([
66 | 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1
67 | , -1, -1, 0, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
68 | , 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25
69 | , -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35
70 | , 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
71 | ]);
72 | }
73 | if (HTMLCanvasElement && !canvas_proto.toBlob) {
74 | canvas_proto.toBlob = function(callback, type /*, ...args*/) {
75 | if (!type) {
76 | type = "image/png";
77 | } if (this.mozGetAsFile) {
78 | callback(this.mozGetAsFile("canvas", type));
79 | return;
80 | } if (this.msToBlob && /^\s*image\/png\s*(?:$|;)/i.test(type)) {
81 | callback(this.msToBlob());
82 | return;
83 | }
84 |
85 | var
86 | args = Array.prototype.slice.call(arguments, 1)
87 | , dataURI = this[to_data_url].apply(this, args)
88 | , header_end = dataURI.indexOf(",")
89 | , data = dataURI.substring(header_end + 1)
90 | , is_base64 = is_base64_regex.test(dataURI.substring(0, header_end))
91 | , blob
92 | ;
93 | if (Blob.fake) {
94 | // no reason to decode a data: URI that's just going to become a data URI again
95 | blob = new Blob
96 | if (is_base64) {
97 | blob.encoding = "base64";
98 | } else {
99 | blob.encoding = "URI";
100 | }
101 | blob.data = data;
102 | blob.size = data.length;
103 | } else if (Uint8Array) {
104 | if (is_base64) {
105 | blob = new Blob([decode_base64(data)], {type: type});
106 | } else {
107 | blob = new Blob([decodeURIComponent(data)], {type: type});
108 | }
109 | }
110 | callback(blob);
111 | };
112 |
113 | if (canvas_proto.toDataURLHD) {
114 | canvas_proto.toBlobHD = function() {
115 | to_data_url = "toDataURLHD";
116 | var blob = this.toBlob();
117 | to_data_url = "toDataURL";
118 | return blob;
119 | }
120 | } else {
121 | canvas_proto.toBlobHD = canvas_proto.toBlob;
122 | }
123 | }
124 | }(typeof self !== "undefined" && self || typeof window !== "undefined" && window || this.content || this));
--------------------------------------------------------------------------------
/wisual/static/img/logoWisual.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/wisual/static/css/main_test.css:
--------------------------------------------------------------------------------
1 | body{
2 | background-color: #343838;
3 | color: #FFFFFF;
4 | font-family: 'Open Sans', sans-serif;
5 | }
6 | .corps{
7 | margin-left: auto;
8 | margin-right: auto;
9 | }
10 | .bouton:hover
11 | {
12 | background-color: #00B4CC;
13 | text-shadow: 2px 2px 2px #005F6B;
14 | }
15 | #psnr{
16 | position: absolute;
17 | margin-left: -150px;
18 | height: 100px;
19 | width: 100px;
20 | font-size: 40px;
21 | padding: 100px;
22 | background-color: #00DFFC;
23 | -moz-box-shadow: 0 0 10px #00B4CC;
24 | -webkit-box-shadow: 0 0 10px #00B4CC;
25 | box-shadow: 0 0 10px #00B4CC;
26 | }
27 | #ssim{
28 | position: absolute;
29 | margin-left: -150px;
30 | height: 100px;
31 | width: 100px;
32 | font-size: 40px;
33 | padding: 100px;
34 | background-color: #00DFFC;
35 | -moz-box-shadow: 0 0 10px #00B4CC;
36 | -webkit-box-shadow: 0 0 10px #00B4CC;
37 | box-shadow: 0 0 10px #00B4CC;
38 | }
39 | .reste{
40 | position: absolute;
41 | height:2000px;
42 | background-color: #005F6B;
43 | -moz-box-shadow: 0 0 10px #008C9E;
44 | -webkit-box-shadow: 0 0 10px #008C9E;
45 | box-shadow: 0 0 10px #008C9E;
46 | }
47 | a{
48 | text-decoration: none;
49 | color:#fff !important;
50 | }
51 | .form div{
52 | padding-top: 5px;
53 | }
54 | .form div label{
55 | width: 150px;
56 | display: inline-block;
57 | }
58 | .form div input[type=text]{
59 | border-radius: 3px;
60 | padding: 4px;
61 | width: 50vw;
62 | background-color: #333;
63 | border: none;
64 | color: #fff;
65 | }
66 | .form div:first-child input[type=text]{
67 | background-color: #555;
68 | }
69 | input[type=submit]{
70 | position: absolute;
71 | right:10%;
72 | background-color: #0DDF0D;
73 | border: none;
74 | border-radius: 4px;
75 | padding:10px;
76 | cursor: pointer;
77 | }
78 | .tree {
79 | min-height:20px;
80 | padding:19px;
81 | margin-bottom:20px;
82 | background-color:#343838;
83 | border:1px solid #999;
84 | -webkit-border-radius:4px;
85 | -moz-border-radius:4px;
86 | border-radius:4px;
87 | -webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
88 | -moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
89 | box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)
90 | }
91 | .tree li {
92 | list-style-type:none;
93 | margin:0;
94 | padding:10px 5px 0 5px;
95 | position:relative
96 | }
97 | .tree li::before, .tree li::after {
98 | content:'';
99 | left:-20px;
100 | position:absolute;
101 | right:auto
102 | }
103 | .tree li::before {
104 | border-left:1px solid #999;
105 | bottom:50px;
106 | height:100%;
107 | top:0;
108 | width:1px
109 | }
110 | .tree li::after {
111 | border-top:1px solid #999;
112 | height:20px;
113 | top:25px;
114 | width:25px
115 | }
116 | .tree li span {
117 | -moz-border-radius:5px;
118 | -webkit-border-radius:5px;
119 | border:1px solid #999;
120 | border-radius:5px;
121 | display:inline-block;
122 | padding:3px 8px;
123 | text-decoration:none
124 | }
125 | .tree li.parent_li>span {
126 | cursor:pointer
127 | }
128 | .tree>ul>li::before, .tree>ul>li::after {
129 | border:0
130 | }
131 | .tree li:last-child::before {
132 | height:30px
133 | }
134 | .tree li.parent_li>span:hover, .tree li.parent_li>span:hover+ul li span {
135 | background:#343838;
136 | border:1px solid #94a0b4;
137 | color:#000
138 | }
139 |
140 | @media screen and (min-width:1070px)
141 | {
142 | .corps{
143 | width: 960px;
144 | height: 2800px;
145 | }
146 | #header{
147 | position: relative;
148 | height: 300px;
149 | width: 100%;
150 | }
151 | #psnr{
152 | left: 25%;
153 | }
154 | #ssim{
155 | left: 75%;
156 | }
157 | .reste{
158 | top: 400px;
159 | width:860px;
160 | padding: 50px;
161 | }
162 | }
163 | @media screen and (min-width:500px) and (max-width:1070px)
164 | {
165 | .corps{
166 | width: 90vw;
167 | }
168 | #psnr{
169 | left: 28%;
170 | }
171 | #ssim{
172 | left: 72%;
173 | }
174 | .reste{
175 | top:400px;
176 | width:80%;
177 | padding: 5%;
178 | }
179 | }
180 | @media screen and (max-width:500px)
181 | {
182 | .corps{
183 | width: 90vw;
184 | }
185 | #psnr{
186 | left: 50%;
187 | }
188 | #ssim{
189 | top: 400px;
190 | left: 50%;
191 | }
192 | .reste{
193 | top:710px;
194 | width:80%;
195 | padding: 5%;
196 | }
197 | }
--------------------------------------------------------------------------------
/results/result.xml:
--------------------------------------------------------------------------------
1 |
2 | 148.131
3 | 41.2468
4 | 32.7583
5 | 28.6255
6 | 25.9721
7 | 23.9773
8 | 22.376
9 | 21.0199
10 | 19.8337
11 | 18.7819
12 | 17.8861
13 | 17.0396
14 | 16.2684
15 | 15.5842
16 | 14.9998
17 | 14.7363
18 | 14.6996
19 | 14.6996
20 | 14.6996
21 | 14.6996
22 | 14.6972
23 | 14.6972
24 | 15.1545
25 | 16.0874
26 | 17.1467
27 | 18.3671
28 | 19.7041
29 | 21.2515
30 | 23.1355
31 | 25.2321
32 | 27.479
33 | 29.1081
34 | 29.2285
35 | 29.2277
36 | 29.2285
37 | 29.2284
38 | 29.2284
39 | 29.2284
40 | 29.2284
41 | 29.2283
42 | 29.2283
43 | 29.2283
44 | 29.2283
45 | 29.2283
46 | 29.2283
47 | 29.2283
48 | 29.2283
49 | 29.2283
50 | 29.2283
51 | 29.2283
52 | 29.2283
53 | 29.2283
54 | 29.2283
55 | 29.2283
56 | 29.2283
57 | 29.2283
58 | 29.2283
59 | 29.2283
60 | 29.2283
61 | 29.2283
62 | 29.2283
63 | 29.2283
64 | 29.2283
65 | 29.2283
66 | 29.2283
67 | 29.2283
68 | 29.2283
69 | 29.2283
70 | 29.2283
71 | 29.2283
72 | 29.2283
73 | 29.2283
74 | 29.2049
75 | 29.2049
76 | 29.2048
77 | 29.2048
78 | 29.2048
79 | 29.2051
80 | 29.2051
81 | 29.2052
82 | 29.2054
83 | 29.2054
84 | 29.2054
85 | 29.2057
86 | 29.2057
87 | 29.2057
88 | 29.2057
89 | 29.2057
90 | 29.2057
91 | 29.2057
92 | 29.2057
93 | 29.2057
94 | 29.2057
95 | 29.2057
96 | 29.2057
97 | 29.2057
98 | 29.2057
99 | 29.2057
100 | 29.2057
101 | 29.2057
102 |
103 |
--------------------------------------------------------------------------------
/results/result2.xml:
--------------------------------------------------------------------------------
1 |
2 | 50.131148.131
3 | 41.246841.2468
4 | 32.758332.7583
5 | 28.625528.6255
6 | 25.972125.9721
7 | 23.977323.9773
8 | 22.37622.376
9 | 21.019921.0199
10 | 19.833719.8337
11 | 18.781918.7819
12 | 17.886117.8861
13 | 17.039617.0396
14 | 16.268416.2684
15 | 15.584215.5842
16 | 14.999814.9998
17 | 14.736314.7363
18 | 14.699614.6996
19 | 14.699614.6996
20 | 14.699614.6996
21 | 14.699614.6996
22 | 14.697214.6972
23 | 14.697214.6972
24 | 15.154515.1545
25 | 16.087416.0874
26 | 17.146717.1467
27 | 18.367118.3671
28 | 19.704119.7041
29 | 21.251521.2515
30 | 23.135523.1355
31 | 25.232125.2321
32 | 27.47927.479
33 | 29.108129.1081
34 | 29.228529.2285
35 | 29.227729.2277
36 | 29.228529.2285
37 | 29.228429.2284
38 | 29.228429.2284
39 | 29.228429.2284
40 | 29.228429.2284
41 | 29.228329.2283
42 | 29.228329.2283
43 | 29.228329.2283
44 | 29.228329.2283
45 | 29.228329.2283
46 | 29.228329.2283
47 | 29.228329.2283
48 | 29.228329.2283
49 | 29.228329.2283
50 | 29.228329.2283
51 | 29.228329.2283
52 | 29.228329.2283
53 | 29.228329.2283
54 | 29.228329.2283
55 | 29.228329.2283
56 | 29.228329.2283
57 | 29.228329.2283
58 | 29.228329.2283
59 | 29.228329.2283
60 | 29.228329.2283
61 | 29.228329.2283
62 | 29.228329.2283
63 | 29.228329.2283
64 | 29.228329.2283
65 | 29.228329.2283
66 | 29.228329.2283
67 | 29.228329.2283
68 | 29.228329.2283
69 | 29.228329.2283
70 | 29.228329.2283
71 | 29.228329.2283
72 | 29.228329.2283
73 | 29.228329.2283
74 | 29.204929.2049
75 | 29.204929.2049
76 | 29.204829.2048
77 | 29.204829.2048
78 | 29.204829.2048
79 | 29.205129.2051
80 | 29.205129.2051
81 | 29.205229.2052
82 | 29.205429.2054
83 | 29.205429.2054
84 | 29.205429.2054
85 | 29.205729.2057
86 | 29.205729.2057
87 | 29.205729.2057
88 | 29.205729.2057
89 | 29.205729.2057
90 | 29.205729.2057
91 | 29.205729.2057
92 | 29.205729.2057
93 | 29.205729.2057
94 | 29.205729.2057
95 | 29.205729.2057
96 | 29.205729.2057
97 | 29.205729.2057
98 | 29.205729.2057
99 | 29.205729.2057
100 | 29.205729.2057
101 | 29.205729.2057
102 |
103 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU LESSER GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 |
9 | This version of the GNU Lesser General Public License incorporates
10 | the terms and conditions of version 3 of the GNU General Public
11 | License, supplemented by the additional permissions listed below.
12 |
13 | 0. Additional Definitions.
14 |
15 | As used herein, "this License" refers to version 3 of the GNU Lesser
16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU
17 | General Public License.
18 |
19 | "The Library" refers to a covered work governed by this License,
20 | other than an Application or a Combined Work as defined below.
21 |
22 | An "Application" is any work that makes use of an interface provided
23 | by the Library, but which is not otherwise based on the Library.
24 | Defining a subclass of a class defined by the Library is deemed a mode
25 | of using an interface provided by the Library.
26 |
27 | A "Combined Work" is a work produced by combining or linking an
28 | Application with the Library. The particular version of the Library
29 | with which the Combined Work was made is also called the "Linked
30 | Version".
31 |
32 | The "Minimal Corresponding Source" for a Combined Work means the
33 | Corresponding Source for the Combined Work, excluding any source code
34 | for portions of the Combined Work that, considered in isolation, are
35 | based on the Application, and not on the Linked Version.
36 |
37 | The "Corresponding Application Code" for a Combined Work means the
38 | object code and/or source code for the Application, including any data
39 | and utility programs needed for reproducing the Combined Work from the
40 | Application, but excluding the System Libraries of the Combined Work.
41 |
42 | 1. Exception to Section 3 of the GNU GPL.
43 |
44 | You may convey a covered work under sections 3 and 4 of this License
45 | without being bound by section 3 of the GNU GPL.
46 |
47 | 2. Conveying Modified Versions.
48 |
49 | If you modify a copy of the Library, and, in your modifications, a
50 | facility refers to a function or data to be supplied by an Application
51 | that uses the facility (other than as an argument passed when the
52 | facility is invoked), then you may convey a copy of the modified
53 | version:
54 |
55 | a) under this License, provided that you make a good faith effort to
56 | ensure that, in the event an Application does not supply the
57 | function or data, the facility still operates, and performs
58 | whatever part of its purpose remains meaningful, or
59 |
60 | b) under the GNU GPL, with none of the additional permissions of
61 | this License applicable to that copy.
62 |
63 | 3. Object Code Incorporating Material from Library Header Files.
64 |
65 | The object code form of an Application may incorporate material from
66 | a header file that is part of the Library. You may convey such object
67 | code under terms of your choice, provided that, if the incorporated
68 | material is not limited to numerical parameters, data structure
69 | layouts and accessors, or small macros, inline functions and templates
70 | (ten or fewer lines in length), you do both of the following:
71 |
72 | a) Give prominent notice with each copy of the object code that the
73 | Library is used in it and that the Library and its use are
74 | covered by this License.
75 |
76 | b) Accompany the object code with a copy of the GNU GPL and this license
77 | document.
78 |
79 | 4. Combined Works.
80 |
81 | You may convey a Combined Work under terms of your choice that,
82 | taken together, effectively do not restrict modification of the
83 | portions of the Library contained in the Combined Work and reverse
84 | engineering for debugging such modifications, if you also do each of
85 | the following:
86 |
87 | a) Give prominent notice with each copy of the Combined Work that
88 | the Library is used in it and that the Library and its use are
89 | covered by this License.
90 |
91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license
92 | document.
93 |
94 | c) For a Combined Work that displays copyright notices during
95 | execution, include the copyright notice for the Library among
96 | these notices, as well as a reference directing the user to the
97 | copies of the GNU GPL and this license document.
98 |
99 | d) Do one of the following:
100 |
101 | 0) Convey the Minimal Corresponding Source under the terms of this
102 | License, and the Corresponding Application Code in a form
103 | suitable for, and under terms that permit, the user to
104 | recombine or relink the Application with a modified version of
105 | the Linked Version to produce a modified Combined Work, in the
106 | manner specified by section 6 of the GNU GPL for conveying
107 | Corresponding Source.
108 |
109 | 1) Use a suitable shared library mechanism for linking with the
110 | Library. A suitable mechanism is one that (a) uses at run time
111 | a copy of the Library already present on the user's computer
112 | system, and (b) will operate properly with a modified version
113 | of the Library that is interface-compatible with the Linked
114 | Version.
115 |
116 | e) Provide Installation Information, but only if you would otherwise
117 | be required to provide such information under section 6 of the
118 | GNU GPL, and only to the extent that such information is
119 | necessary to install and execute a modified version of the
120 | Combined Work produced by recombining or relinking the
121 | Application with a modified version of the Linked Version. (If
122 | you use option 4d0, the Installation Information must accompany
123 | the Minimal Corresponding Source and Corresponding Application
124 | Code. If you use option 4d1, you must provide the Installation
125 | Information in the manner specified by section 6 of the GNU GPL
126 | for conveying Corresponding Source.)
127 |
128 | 5. Combined Libraries.
129 |
130 | You may place library facilities that are a work based on the
131 | Library side by side in a single library together with other library
132 | facilities that are not Applications and are not covered by this
133 | License, and convey such a combined library under terms of your
134 | choice, if you do both of the following:
135 |
136 | a) Accompany the combined library with a copy of the same work based
137 | on the Library, uncombined with any other library facilities,
138 | conveyed under the terms of this License.
139 |
140 | b) Give prominent notice with the combined library that part of it
141 | is a work based on the Library, and explaining where to find the
142 | accompanying uncombined form of the same work.
143 |
144 | 6. Revised Versions of the GNU Lesser General Public License.
145 |
146 | The Free Software Foundation may publish revised and/or new versions
147 | of the GNU Lesser General Public License from time to time. Such new
148 | versions will be similar in spirit to the present version, but may
149 | differ in detail to address new problems or concerns.
150 |
151 | Each version is given a distinguishing version number. If the
152 | Library as you received it specifies that a certain numbered version
153 | of the GNU Lesser General Public License "or any later version"
154 | applies to it, you have the option of following the terms and
155 | conditions either of that published version or of any later version
156 | published by the Free Software Foundation. If the Library as you
157 | received it does not specify a version number of the GNU Lesser
158 | General Public License, you may choose any version of the GNU Lesser
159 | General Public License ever published by the Free Software Foundation.
160 |
161 | If the Library as you received it specifies that a proxy can decide
162 | whether future versions of the GNU Lesser General Public License shall
163 | apply, that proxy's public statement of acceptance of any version is
164 | permanent authorization for you to choose that version for the
165 | Library.
166 |
167 |
--------------------------------------------------------------------------------
/wisual/static/css/main.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'hacked';
3 | src: url('../fonts/hacked.eot'); /* IE9 Compat Modes */
4 | src: url('../fonts/hacked.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
5 | url('../fonts/hacked.woff2') format('woff2'), /* Super Modern Browsers */
6 | url('../fonts/hacked.woff') format('woff'), /* Pretty Modern Browsers */
7 | url('../fonts/hacked.ttf') format('truetype'), /* Safari, Android, iOS */
8 | url('../fonts/hacked.svg#svgFontName') format('svg'); /* Legacy iOS */
9 | }
10 |
11 | body{
12 | background-color: #343838;
13 | color: #FFFFFF;
14 | font-family: 'Open Sans', sans-serif;
15 | margin: 0;
16 | }
17 |
18 | a{
19 | text-decoration: none;
20 | color:#fff !important;
21 | }
22 |
23 | h1{
24 | margin: 0;
25 | padding-left: 10px;
26 | padding-top: 5px;
27 | }
28 |
29 | h2{
30 | color:rgb(79, 165, 123);
31 | }
32 |
33 | h2 a{
34 | color:rgb(79, 165, 123) !important;
35 | }
36 |
37 | #header{
38 | position: fixed;
39 | width: 100vw;
40 | height: 80px;
41 | background-color: #141818;
42 | z-index: 10;
43 | }
44 | #header span{
45 | display: inline-block;
46 | vertical-align: middle;
47 | }
48 |
49 | #header a{
50 | color: rgb(79, 165, 123) !important;
51 | font-family: 'hacked', sans-serif;
52 | font-size: 2em;
53 | font-weight: normal;
54 | vertical-align: middle;
55 | }
56 |
57 | #header img{
58 | height: 60px;
59 | margin-top: 8px;
60 | margin-left: 10px;
61 | }
62 |
63 | #leftPanel{
64 | background-color: #242828;
65 | position: fixed;
66 | width: 200px;
67 | top: 80px;
68 | height: 100%;
69 | margin: 0px;
70 | padding: 3px;
71 | }
72 |
73 | #leftPanel li{
74 | list-style-type: none;
75 | }
76 |
77 | #navigation{
78 | padding: 0px;
79 | padding-left: 20px;
80 | }
81 |
82 | #navigation li{
83 | margin: 5px;
84 | }
85 |
86 | i{
87 | padding-right: 5px;
88 | }
89 |
90 | #mainContent{
91 | margin-left: 230px;
92 | padding-top: 80px;
93 | }
94 |
95 | #bandeauGithub{
96 | background-color: rgb(79, 165, 123);
97 | display: inline-block;
98 | transform: rotate(45deg);
99 | position: fixed;
100 | right: -70px;
101 | top: 120px;
102 | padding: 20px;
103 | padding-right: 70px;
104 | padding-left: 70px;
105 | border-width: 1px;
106 | border-color: #ddd;
107 | border-spacing: 20px 20px;
108 | border-top-style: dotted;
109 | border-bottom-style: dotted;
110 | }
111 |
112 | #rightPanel{
113 | position: fixed;
114 | right: 0px;
115 | top: 80px;
116 | background-color: #242828;
117 | height: 100vh;
118 | width: 300px;
119 | }
120 |
121 | #rightPanel h2{
122 | padding: 10px;
123 | }
124 |
125 | .form div{
126 | padding-top: 5px;
127 | }
128 | .form div label{
129 | width: 150px;
130 | display: inline-block;
131 | }
132 |
133 | .form div input[type=text]{
134 | border-radius: 0px;
135 | padding: 8px;
136 | width: 20vw;
137 | border: none;
138 | color: #fff;
139 | background-color: #242828;
140 | }
141 |
142 | .ui-state-hover{
143 | background: #646868;
144 | -webkit-linear-gradient(top, #343838 0%, #646868 100%);
145 | background: -webkit-linear-gradient(top, #343838 0%, #646868 100%);
146 | background: -moz-linear-gradient(top, #343838 0%, #646868 100%);
147 | background: -o-linear-gradient(top, #343838 0%, #646868 100%);
148 | background: -ms-linear-gradient(top, #343838 0%, #646868 100%);
149 | background: linear-gradient(top, #343838 0%, #646868 100%);
150 | }
151 |
152 | .ui-state-active,
153 | .ui-state-highlight {
154 | background: #141818;
155 | -webkit-linear-gradient(top, #343838 0%, #141818 100%);
156 | background: -webkit-linear-gradient(top, #343838 0%, #141818 100%);
157 | background: -moz-linear-gradient(top, #343838 0%, #141818 100%);
158 | background: -o-linear-gradient(top, #343838 0%, #141818 100%);
159 | background: -ms-linear-gradient(top, #343838 0%, #141818 100%);
160 | background: linear-gradient(top, #343838 0%, #141818 100%);
161 | }
162 |
163 | .modal-content{
164 | margin-top: 120px;
165 | }
166 |
167 | .modal-content{
168 | background-color: #343838;
169 | }
170 |
171 | .modal-body{
172 | background-color: #343838;
173 | }
174 |
175 | input[type=submit]{
176 | position: absolute;
177 | right: 330px;
178 | }
179 |
180 | .btn,
181 | .btn:visited,
182 | .btn:active,
183 | input[type=submit]{
184 | background-color: rgb(79, 165, 123) !important;
185 | border: none;
186 | border-radius: 4px;
187 | padding:10px;
188 | cursor: pointer;
189 | }
190 |
191 | .btn:hover,
192 | input[type=submit]:hover{
193 | background-color: rgb(59, 145, 103);
194 | }
195 |
196 | input[type=radio] {
197 | visibility: hidden;
198 | }
199 |
200 | .roundedOne {
201 | margin-left: 155px;
202 | width: 210px;
203 | height: 28px;
204 | background: #242828;
205 | -webkit-linear-gradient(top, #343838 0%, #242828 100%);
206 | background: -webkit-linear-gradient(top, #343838 0%, #242828 100%);
207 | background: -moz-linear-gradient(top, #343838 0%, #242828 100%);
208 | background: -o-linear-gradient(top, #343838 0%, #242828 100%);
209 | background: -ms-linear-gradient(top, #343838 0%, #242828 100%);
210 | background: linear-gradient(top, #343838 0%, #242828 100%);
211 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#343838', endColorstr='#242828',GradientType=0 );
212 | /*margin: 20px auto;*/
213 | padding: 0 !important;
214 |
215 | -webkit-border-radius: 50px;
216 | -moz-border-radius: 50px;
217 | border-radius: 0px;
218 | position: relative;
219 | }
220 |
221 | .roundedOne label {
222 | cursor: pointer;
223 | position: absolute;
224 | width: 200px !important;
225 | height: 20px;
226 | text-indent: 30px;
227 |
228 | -webkit-border-radius: 50px;
229 | -moz-border-radius: 50px;
230 | border-radius: 2px;
231 | left: 4px;
232 | top: 4px;
233 | }
234 |
235 | .roundedOne label:after {
236 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
237 | filter: alpha(opacity=0);
238 | opacity: 0;
239 | content: '';
240 | position: absolute;
241 | width: 16px;
242 | height: 16px;
243 | background: #4FA57B;
244 |
245 | background: -webkit-linear-gradient(top, #4FA57B 0%, #4FA57B 100%);
246 | background: -moz-linear-gradient(top, #4FA57B 0%, #4FA57B 100%);
247 | background: -o-linear-gradient(top, #4FA57B 0%, #4FA57B 100%);
248 | background: -ms-linear-gradient(top, #4FA57B 0%, #4FA57B 100%);
249 | background: linear-gradient(top, #4FA57B 0%, #4FA57B 100%);
250 |
251 | -webkit-border-radius: 50px;
252 | -moz-border-radius: 50px;
253 | border-radius: 2px;
254 | top: 2px;
255 | left: 2px;
256 | }
257 |
258 | .roundedOne label:hover::after {
259 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
260 | filter: alpha(opacity=30);
261 | opacity: 0.3;
262 | }
263 |
264 | .roundedOne input[type=radio]:checked + label:after {
265 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
266 | filter: alpha(opacity=100);
267 | opacity: 1;
268 | }
269 |
270 | #job-listing table {
271 | border-spacing: 0px;
272 | width: 80%;
273 | }
274 |
275 | #job-listing th,
276 | #job-listing td {
277 | padding: 5px;
278 | }
279 |
280 | #job-listing tr:nth-child(1) {
281 | background-color: #222;
282 | }
283 |
284 | #job-listing tr:nth-child(2n) {
285 | background-color: #444;
286 | }
287 |
288 | #browser h2 {
289 | margin-bottom: 0;
290 | padding-bottom: 0;
291 | }
292 |
293 | #browser #root ul {
294 | margin-top: 0;
295 | padding-top: 0;
296 | }
297 |
298 | #browser span {
299 | -moz-border-radius:5px;
300 | -webkit-border-radius:5px;
301 | border:1px solid #777;
302 | border-radius:5px;
303 | display:inline-block;
304 | padding:3px 8px;
305 | text-decoration:none
306 | }
307 |
308 | #browser span:hover {
309 | background: rgb(79, 165, 123);
310 | }
311 |
312 | #browser li {
313 | list-style-type:none;
314 | margin:0;
315 | padding:10px 5px 0 5px;
316 | position:relative
317 | }
318 |
319 | #browser li::before,
320 | #browser li::after {
321 | content:'';
322 | left:-20px;
323 | position:absolute;
324 | right:auto
325 | }
326 |
327 | #browser li::before {
328 | border-left:1px solid #777;
329 | bottom:50px;
330 | height:100%;
331 | top:0;
332 | width:1px
333 | }
334 |
335 | #browser li::after {
336 | border-top:1px solid #777;
337 | height:20px;
338 | top:25px;
339 | width:25px
340 | }
341 |
342 | @media screen and (min-width:1070px)
343 | {
344 | }
345 | @media screen and (min-width:500px) and (max-width:1070px)
346 | {
347 | }
348 | @media screen and (max-width:500px)
349 | {
350 | }
--------------------------------------------------------------------------------
/wisual/static/css/font-awesome.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}
--------------------------------------------------------------------------------
/wisual/static/js/bootstrap.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v3.3.4 (http://getbootstrap.com)
3 | * Copyright 2011-2015 Twitter, Inc.
4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5 | */
6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-mp.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
--------------------------------------------------------------------------------
/wisual/static/css/font-awesome.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 | /* FONT PATH
6 | * -------------------------- */
7 | @font-face {
8 | font-family: 'FontAwesome';
9 | src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
10 | src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
11 | font-weight: normal;
12 | font-style: normal;
13 | }
14 | .fa {
15 | display: inline-block;
16 | font: normal normal normal 14px/1 FontAwesome;
17 | font-size: inherit;
18 | text-rendering: auto;
19 | -webkit-font-smoothing: antialiased;
20 | -moz-osx-font-smoothing: grayscale;
21 | transform: translate(0, 0);
22 | }
23 | /* makes the font 33% larger relative to the icon container */
24 | .fa-lg {
25 | font-size: 1.33333333em;
26 | line-height: 0.75em;
27 | vertical-align: -15%;
28 | }
29 | .fa-2x {
30 | font-size: 2em;
31 | }
32 | .fa-3x {
33 | font-size: 3em;
34 | }
35 | .fa-4x {
36 | font-size: 4em;
37 | }
38 | .fa-5x {
39 | font-size: 5em;
40 | }
41 | .fa-fw {
42 | width: 1.28571429em;
43 | text-align: center;
44 | }
45 | .fa-ul {
46 | padding-left: 0;
47 | margin-left: 2.14285714em;
48 | list-style-type: none;
49 | }
50 | .fa-ul > li {
51 | position: relative;
52 | }
53 | .fa-li {
54 | position: absolute;
55 | left: -2.14285714em;
56 | width: 2.14285714em;
57 | top: 0.14285714em;
58 | text-align: center;
59 | }
60 | .fa-li.fa-lg {
61 | left: -1.85714286em;
62 | }
63 | .fa-border {
64 | padding: .2em .25em .15em;
65 | border: solid 0.08em #eeeeee;
66 | border-radius: .1em;
67 | }
68 | .pull-right {
69 | float: right;
70 | }
71 | .pull-left {
72 | float: left;
73 | }
74 | .fa.pull-left {
75 | margin-right: .3em;
76 | }
77 | .fa.pull-right {
78 | margin-left: .3em;
79 | }
80 | .fa-spin {
81 | -webkit-animation: fa-spin 2s infinite linear;
82 | animation: fa-spin 2s infinite linear;
83 | }
84 | .fa-pulse {
85 | -webkit-animation: fa-spin 1s infinite steps(8);
86 | animation: fa-spin 1s infinite steps(8);
87 | }
88 | @-webkit-keyframes fa-spin {
89 | 0% {
90 | -webkit-transform: rotate(0deg);
91 | transform: rotate(0deg);
92 | }
93 | 100% {
94 | -webkit-transform: rotate(359deg);
95 | transform: rotate(359deg);
96 | }
97 | }
98 | @keyframes fa-spin {
99 | 0% {
100 | -webkit-transform: rotate(0deg);
101 | transform: rotate(0deg);
102 | }
103 | 100% {
104 | -webkit-transform: rotate(359deg);
105 | transform: rotate(359deg);
106 | }
107 | }
108 | .fa-rotate-90 {
109 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
110 | -webkit-transform: rotate(90deg);
111 | -ms-transform: rotate(90deg);
112 | transform: rotate(90deg);
113 | }
114 | .fa-rotate-180 {
115 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
116 | -webkit-transform: rotate(180deg);
117 | -ms-transform: rotate(180deg);
118 | transform: rotate(180deg);
119 | }
120 | .fa-rotate-270 {
121 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
122 | -webkit-transform: rotate(270deg);
123 | -ms-transform: rotate(270deg);
124 | transform: rotate(270deg);
125 | }
126 | .fa-flip-horizontal {
127 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
128 | -webkit-transform: scale(-1, 1);
129 | -ms-transform: scale(-1, 1);
130 | transform: scale(-1, 1);
131 | }
132 | .fa-flip-vertical {
133 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
134 | -webkit-transform: scale(1, -1);
135 | -ms-transform: scale(1, -1);
136 | transform: scale(1, -1);
137 | }
138 | :root .fa-rotate-90,
139 | :root .fa-rotate-180,
140 | :root .fa-rotate-270,
141 | :root .fa-flip-horizontal,
142 | :root .fa-flip-vertical {
143 | filter: none;
144 | }
145 | .fa-stack {
146 | position: relative;
147 | display: inline-block;
148 | width: 2em;
149 | height: 2em;
150 | line-height: 2em;
151 | vertical-align: middle;
152 | }
153 | .fa-stack-1x,
154 | .fa-stack-2x {
155 | position: absolute;
156 | left: 0;
157 | width: 100%;
158 | text-align: center;
159 | }
160 | .fa-stack-1x {
161 | line-height: inherit;
162 | }
163 | .fa-stack-2x {
164 | font-size: 2em;
165 | }
166 | .fa-inverse {
167 | color: #ffffff;
168 | }
169 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
170 | readers do not read off random characters that represent icons */
171 | .fa-glass:before {
172 | content: "\f000";
173 | }
174 | .fa-music:before {
175 | content: "\f001";
176 | }
177 | .fa-search:before {
178 | content: "\f002";
179 | }
180 | .fa-envelope-o:before {
181 | content: "\f003";
182 | }
183 | .fa-heart:before {
184 | content: "\f004";
185 | }
186 | .fa-star:before {
187 | content: "\f005";
188 | }
189 | .fa-star-o:before {
190 | content: "\f006";
191 | }
192 | .fa-user:before {
193 | content: "\f007";
194 | }
195 | .fa-film:before {
196 | content: "\f008";
197 | }
198 | .fa-th-large:before {
199 | content: "\f009";
200 | }
201 | .fa-th:before {
202 | content: "\f00a";
203 | }
204 | .fa-th-list:before {
205 | content: "\f00b";
206 | }
207 | .fa-check:before {
208 | content: "\f00c";
209 | }
210 | .fa-remove:before,
211 | .fa-close:before,
212 | .fa-times:before {
213 | content: "\f00d";
214 | }
215 | .fa-search-plus:before {
216 | content: "\f00e";
217 | }
218 | .fa-search-minus:before {
219 | content: "\f010";
220 | }
221 | .fa-power-off:before {
222 | content: "\f011";
223 | }
224 | .fa-signal:before {
225 | content: "\f012";
226 | }
227 | .fa-gear:before,
228 | .fa-cog:before {
229 | content: "\f013";
230 | }
231 | .fa-trash-o:before {
232 | content: "\f014";
233 | }
234 | .fa-home:before {
235 | content: "\f015";
236 | }
237 | .fa-file-o:before {
238 | content: "\f016";
239 | }
240 | .fa-clock-o:before {
241 | content: "\f017";
242 | }
243 | .fa-road:before {
244 | content: "\f018";
245 | }
246 | .fa-download:before {
247 | content: "\f019";
248 | }
249 | .fa-arrow-circle-o-down:before {
250 | content: "\f01a";
251 | }
252 | .fa-arrow-circle-o-up:before {
253 | content: "\f01b";
254 | }
255 | .fa-inbox:before {
256 | content: "\f01c";
257 | }
258 | .fa-play-circle-o:before {
259 | content: "\f01d";
260 | }
261 | .fa-rotate-right:before,
262 | .fa-repeat:before {
263 | content: "\f01e";
264 | }
265 | .fa-refresh:before {
266 | content: "\f021";
267 | }
268 | .fa-list-alt:before {
269 | content: "\f022";
270 | }
271 | .fa-lock:before {
272 | content: "\f023";
273 | }
274 | .fa-flag:before {
275 | content: "\f024";
276 | }
277 | .fa-headphones:before {
278 | content: "\f025";
279 | }
280 | .fa-volume-off:before {
281 | content: "\f026";
282 | }
283 | .fa-volume-down:before {
284 | content: "\f027";
285 | }
286 | .fa-volume-up:before {
287 | content: "\f028";
288 | }
289 | .fa-qrcode:before {
290 | content: "\f029";
291 | }
292 | .fa-barcode:before {
293 | content: "\f02a";
294 | }
295 | .fa-tag:before {
296 | content: "\f02b";
297 | }
298 | .fa-tags:before {
299 | content: "\f02c";
300 | }
301 | .fa-book:before {
302 | content: "\f02d";
303 | }
304 | .fa-bookmark:before {
305 | content: "\f02e";
306 | }
307 | .fa-print:before {
308 | content: "\f02f";
309 | }
310 | .fa-camera:before {
311 | content: "\f030";
312 | }
313 | .fa-font:before {
314 | content: "\f031";
315 | }
316 | .fa-bold:before {
317 | content: "\f032";
318 | }
319 | .fa-italic:before {
320 | content: "\f033";
321 | }
322 | .fa-text-height:before {
323 | content: "\f034";
324 | }
325 | .fa-text-width:before {
326 | content: "\f035";
327 | }
328 | .fa-align-left:before {
329 | content: "\f036";
330 | }
331 | .fa-align-center:before {
332 | content: "\f037";
333 | }
334 | .fa-align-right:before {
335 | content: "\f038";
336 | }
337 | .fa-align-justify:before {
338 | content: "\f039";
339 | }
340 | .fa-list:before {
341 | content: "\f03a";
342 | }
343 | .fa-dedent:before,
344 | .fa-outdent:before {
345 | content: "\f03b";
346 | }
347 | .fa-indent:before {
348 | content: "\f03c";
349 | }
350 | .fa-video-camera:before {
351 | content: "\f03d";
352 | }
353 | .fa-photo:before,
354 | .fa-image:before,
355 | .fa-picture-o:before {
356 | content: "\f03e";
357 | }
358 | .fa-pencil:before {
359 | content: "\f040";
360 | }
361 | .fa-map-marker:before {
362 | content: "\f041";
363 | }
364 | .fa-adjust:before {
365 | content: "\f042";
366 | }
367 | .fa-tint:before {
368 | content: "\f043";
369 | }
370 | .fa-edit:before,
371 | .fa-pencil-square-o:before {
372 | content: "\f044";
373 | }
374 | .fa-share-square-o:before {
375 | content: "\f045";
376 | }
377 | .fa-check-square-o:before {
378 | content: "\f046";
379 | }
380 | .fa-arrows:before {
381 | content: "\f047";
382 | }
383 | .fa-step-backward:before {
384 | content: "\f048";
385 | }
386 | .fa-fast-backward:before {
387 | content: "\f049";
388 | }
389 | .fa-backward:before {
390 | content: "\f04a";
391 | }
392 | .fa-play:before {
393 | content: "\f04b";
394 | }
395 | .fa-pause:before {
396 | content: "\f04c";
397 | }
398 | .fa-stop:before {
399 | content: "\f04d";
400 | }
401 | .fa-forward:before {
402 | content: "\f04e";
403 | }
404 | .fa-fast-forward:before {
405 | content: "\f050";
406 | }
407 | .fa-step-forward:before {
408 | content: "\f051";
409 | }
410 | .fa-eject:before {
411 | content: "\f052";
412 | }
413 | .fa-chevron-left:before {
414 | content: "\f053";
415 | }
416 | .fa-chevron-right:before {
417 | content: "\f054";
418 | }
419 | .fa-plus-circle:before {
420 | content: "\f055";
421 | }
422 | .fa-minus-circle:before {
423 | content: "\f056";
424 | }
425 | .fa-times-circle:before {
426 | content: "\f057";
427 | }
428 | .fa-check-circle:before {
429 | content: "\f058";
430 | }
431 | .fa-question-circle:before {
432 | content: "\f059";
433 | }
434 | .fa-info-circle:before {
435 | content: "\f05a";
436 | }
437 | .fa-crosshairs:before {
438 | content: "\f05b";
439 | }
440 | .fa-times-circle-o:before {
441 | content: "\f05c";
442 | }
443 | .fa-check-circle-o:before {
444 | content: "\f05d";
445 | }
446 | .fa-ban:before {
447 | content: "\f05e";
448 | }
449 | .fa-arrow-left:before {
450 | content: "\f060";
451 | }
452 | .fa-arrow-right:before {
453 | content: "\f061";
454 | }
455 | .fa-arrow-up:before {
456 | content: "\f062";
457 | }
458 | .fa-arrow-down:before {
459 | content: "\f063";
460 | }
461 | .fa-mail-forward:before,
462 | .fa-share:before {
463 | content: "\f064";
464 | }
465 | .fa-expand:before {
466 | content: "\f065";
467 | }
468 | .fa-compress:before {
469 | content: "\f066";
470 | }
471 | .fa-plus:before {
472 | content: "\f067";
473 | }
474 | .fa-minus:before {
475 | content: "\f068";
476 | }
477 | .fa-asterisk:before {
478 | content: "\f069";
479 | }
480 | .fa-exclamation-circle:before {
481 | content: "\f06a";
482 | }
483 | .fa-gift:before {
484 | content: "\f06b";
485 | }
486 | .fa-leaf:before {
487 | content: "\f06c";
488 | }
489 | .fa-fire:before {
490 | content: "\f06d";
491 | }
492 | .fa-eye:before {
493 | content: "\f06e";
494 | }
495 | .fa-eye-slash:before {
496 | content: "\f070";
497 | }
498 | .fa-warning:before,
499 | .fa-exclamation-triangle:before {
500 | content: "\f071";
501 | }
502 | .fa-plane:before {
503 | content: "\f072";
504 | }
505 | .fa-calendar:before {
506 | content: "\f073";
507 | }
508 | .fa-random:before {
509 | content: "\f074";
510 | }
511 | .fa-comment:before {
512 | content: "\f075";
513 | }
514 | .fa-magnet:before {
515 | content: "\f076";
516 | }
517 | .fa-chevron-up:before {
518 | content: "\f077";
519 | }
520 | .fa-chevron-down:before {
521 | content: "\f078";
522 | }
523 | .fa-retweet:before {
524 | content: "\f079";
525 | }
526 | .fa-shopping-cart:before {
527 | content: "\f07a";
528 | }
529 | .fa-folder:before {
530 | content: "\f07b";
531 | }
532 | .fa-folder-open:before {
533 | content: "\f07c";
534 | }
535 | .fa-arrows-v:before {
536 | content: "\f07d";
537 | }
538 | .fa-arrows-h:before {
539 | content: "\f07e";
540 | }
541 | .fa-bar-chart-o:before,
542 | .fa-bar-chart:before {
543 | content: "\f080";
544 | }
545 | .fa-twitter-square:before {
546 | content: "\f081";
547 | }
548 | .fa-facebook-square:before {
549 | content: "\f082";
550 | }
551 | .fa-camera-retro:before {
552 | content: "\f083";
553 | }
554 | .fa-key:before {
555 | content: "\f084";
556 | }
557 | .fa-gears:before,
558 | .fa-cogs:before {
559 | content: "\f085";
560 | }
561 | .fa-comments:before {
562 | content: "\f086";
563 | }
564 | .fa-thumbs-o-up:before {
565 | content: "\f087";
566 | }
567 | .fa-thumbs-o-down:before {
568 | content: "\f088";
569 | }
570 | .fa-star-half:before {
571 | content: "\f089";
572 | }
573 | .fa-heart-o:before {
574 | content: "\f08a";
575 | }
576 | .fa-sign-out:before {
577 | content: "\f08b";
578 | }
579 | .fa-linkedin-square:before {
580 | content: "\f08c";
581 | }
582 | .fa-thumb-tack:before {
583 | content: "\f08d";
584 | }
585 | .fa-external-link:before {
586 | content: "\f08e";
587 | }
588 | .fa-sign-in:before {
589 | content: "\f090";
590 | }
591 | .fa-trophy:before {
592 | content: "\f091";
593 | }
594 | .fa-github-square:before {
595 | content: "\f092";
596 | }
597 | .fa-upload:before {
598 | content: "\f093";
599 | }
600 | .fa-lemon-o:before {
601 | content: "\f094";
602 | }
603 | .fa-phone:before {
604 | content: "\f095";
605 | }
606 | .fa-square-o:before {
607 | content: "\f096";
608 | }
609 | .fa-bookmark-o:before {
610 | content: "\f097";
611 | }
612 | .fa-phone-square:before {
613 | content: "\f098";
614 | }
615 | .fa-twitter:before {
616 | content: "\f099";
617 | }
618 | .fa-facebook-f:before,
619 | .fa-facebook:before {
620 | content: "\f09a";
621 | }
622 | .fa-github:before {
623 | content: "\f09b";
624 | }
625 | .fa-unlock:before {
626 | content: "\f09c";
627 | }
628 | .fa-credit-card:before {
629 | content: "\f09d";
630 | }
631 | .fa-rss:before {
632 | content: "\f09e";
633 | }
634 | .fa-hdd-o:before {
635 | content: "\f0a0";
636 | }
637 | .fa-bullhorn:before {
638 | content: "\f0a1";
639 | }
640 | .fa-bell:before {
641 | content: "\f0f3";
642 | }
643 | .fa-certificate:before {
644 | content: "\f0a3";
645 | }
646 | .fa-hand-o-right:before {
647 | content: "\f0a4";
648 | }
649 | .fa-hand-o-left:before {
650 | content: "\f0a5";
651 | }
652 | .fa-hand-o-up:before {
653 | content: "\f0a6";
654 | }
655 | .fa-hand-o-down:before {
656 | content: "\f0a7";
657 | }
658 | .fa-arrow-circle-left:before {
659 | content: "\f0a8";
660 | }
661 | .fa-arrow-circle-right:before {
662 | content: "\f0a9";
663 | }
664 | .fa-arrow-circle-up:before {
665 | content: "\f0aa";
666 | }
667 | .fa-arrow-circle-down:before {
668 | content: "\f0ab";
669 | }
670 | .fa-globe:before {
671 | content: "\f0ac";
672 | }
673 | .fa-wrench:before {
674 | content: "\f0ad";
675 | }
676 | .fa-tasks:before {
677 | content: "\f0ae";
678 | }
679 | .fa-filter:before {
680 | content: "\f0b0";
681 | }
682 | .fa-briefcase:before {
683 | content: "\f0b1";
684 | }
685 | .fa-arrows-alt:before {
686 | content: "\f0b2";
687 | }
688 | .fa-group:before,
689 | .fa-users:before {
690 | content: "\f0c0";
691 | }
692 | .fa-chain:before,
693 | .fa-link:before {
694 | content: "\f0c1";
695 | }
696 | .fa-cloud:before {
697 | content: "\f0c2";
698 | }
699 | .fa-flask:before {
700 | content: "\f0c3";
701 | }
702 | .fa-cut:before,
703 | .fa-scissors:before {
704 | content: "\f0c4";
705 | }
706 | .fa-copy:before,
707 | .fa-files-o:before {
708 | content: "\f0c5";
709 | }
710 | .fa-paperclip:before {
711 | content: "\f0c6";
712 | }
713 | .fa-save:before,
714 | .fa-floppy-o:before {
715 | content: "\f0c7";
716 | }
717 | .fa-square:before {
718 | content: "\f0c8";
719 | }
720 | .fa-navicon:before,
721 | .fa-reorder:before,
722 | .fa-bars:before {
723 | content: "\f0c9";
724 | }
725 | .fa-list-ul:before {
726 | content: "\f0ca";
727 | }
728 | .fa-list-ol:before {
729 | content: "\f0cb";
730 | }
731 | .fa-strikethrough:before {
732 | content: "\f0cc";
733 | }
734 | .fa-underline:before {
735 | content: "\f0cd";
736 | }
737 | .fa-table:before {
738 | content: "\f0ce";
739 | }
740 | .fa-magic:before {
741 | content: "\f0d0";
742 | }
743 | .fa-truck:before {
744 | content: "\f0d1";
745 | }
746 | .fa-pinterest:before {
747 | content: "\f0d2";
748 | }
749 | .fa-pinterest-square:before {
750 | content: "\f0d3";
751 | }
752 | .fa-google-plus-square:before {
753 | content: "\f0d4";
754 | }
755 | .fa-google-plus:before {
756 | content: "\f0d5";
757 | }
758 | .fa-money:before {
759 | content: "\f0d6";
760 | }
761 | .fa-caret-down:before {
762 | content: "\f0d7";
763 | }
764 | .fa-caret-up:before {
765 | content: "\f0d8";
766 | }
767 | .fa-caret-left:before {
768 | content: "\f0d9";
769 | }
770 | .fa-caret-right:before {
771 | content: "\f0da";
772 | }
773 | .fa-columns:before {
774 | content: "\f0db";
775 | }
776 | .fa-unsorted:before,
777 | .fa-sort:before {
778 | content: "\f0dc";
779 | }
780 | .fa-sort-down:before,
781 | .fa-sort-desc:before {
782 | content: "\f0dd";
783 | }
784 | .fa-sort-up:before,
785 | .fa-sort-asc:before {
786 | content: "\f0de";
787 | }
788 | .fa-envelope:before {
789 | content: "\f0e0";
790 | }
791 | .fa-linkedin:before {
792 | content: "\f0e1";
793 | }
794 | .fa-rotate-left:before,
795 | .fa-undo:before {
796 | content: "\f0e2";
797 | }
798 | .fa-legal:before,
799 | .fa-gavel:before {
800 | content: "\f0e3";
801 | }
802 | .fa-dashboard:before,
803 | .fa-tachometer:before {
804 | content: "\f0e4";
805 | }
806 | .fa-comment-o:before {
807 | content: "\f0e5";
808 | }
809 | .fa-comments-o:before {
810 | content: "\f0e6";
811 | }
812 | .fa-flash:before,
813 | .fa-bolt:before {
814 | content: "\f0e7";
815 | }
816 | .fa-sitemap:before {
817 | content: "\f0e8";
818 | }
819 | .fa-umbrella:before {
820 | content: "\f0e9";
821 | }
822 | .fa-paste:before,
823 | .fa-clipboard:before {
824 | content: "\f0ea";
825 | }
826 | .fa-lightbulb-o:before {
827 | content: "\f0eb";
828 | }
829 | .fa-exchange:before {
830 | content: "\f0ec";
831 | }
832 | .fa-cloud-download:before {
833 | content: "\f0ed";
834 | }
835 | .fa-cloud-upload:before {
836 | content: "\f0ee";
837 | }
838 | .fa-user-md:before {
839 | content: "\f0f0";
840 | }
841 | .fa-stethoscope:before {
842 | content: "\f0f1";
843 | }
844 | .fa-suitcase:before {
845 | content: "\f0f2";
846 | }
847 | .fa-bell-o:before {
848 | content: "\f0a2";
849 | }
850 | .fa-coffee:before {
851 | content: "\f0f4";
852 | }
853 | .fa-cutlery:before {
854 | content: "\f0f5";
855 | }
856 | .fa-file-text-o:before {
857 | content: "\f0f6";
858 | }
859 | .fa-building-o:before {
860 | content: "\f0f7";
861 | }
862 | .fa-hospital-o:before {
863 | content: "\f0f8";
864 | }
865 | .fa-ambulance:before {
866 | content: "\f0f9";
867 | }
868 | .fa-medkit:before {
869 | content: "\f0fa";
870 | }
871 | .fa-fighter-jet:before {
872 | content: "\f0fb";
873 | }
874 | .fa-beer:before {
875 | content: "\f0fc";
876 | }
877 | .fa-h-square:before {
878 | content: "\f0fd";
879 | }
880 | .fa-plus-square:before {
881 | content: "\f0fe";
882 | }
883 | .fa-angle-double-left:before {
884 | content: "\f100";
885 | }
886 | .fa-angle-double-right:before {
887 | content: "\f101";
888 | }
889 | .fa-angle-double-up:before {
890 | content: "\f102";
891 | }
892 | .fa-angle-double-down:before {
893 | content: "\f103";
894 | }
895 | .fa-angle-left:before {
896 | content: "\f104";
897 | }
898 | .fa-angle-right:before {
899 | content: "\f105";
900 | }
901 | .fa-angle-up:before {
902 | content: "\f106";
903 | }
904 | .fa-angle-down:before {
905 | content: "\f107";
906 | }
907 | .fa-desktop:before {
908 | content: "\f108";
909 | }
910 | .fa-laptop:before {
911 | content: "\f109";
912 | }
913 | .fa-tablet:before {
914 | content: "\f10a";
915 | }
916 | .fa-mobile-phone:before,
917 | .fa-mobile:before {
918 | content: "\f10b";
919 | }
920 | .fa-circle-o:before {
921 | content: "\f10c";
922 | }
923 | .fa-quote-left:before {
924 | content: "\f10d";
925 | }
926 | .fa-quote-right:before {
927 | content: "\f10e";
928 | }
929 | .fa-spinner:before {
930 | content: "\f110";
931 | }
932 | .fa-circle:before {
933 | content: "\f111";
934 | }
935 | .fa-mail-reply:before,
936 | .fa-reply:before {
937 | content: "\f112";
938 | }
939 | .fa-github-alt:before {
940 | content: "\f113";
941 | }
942 | .fa-folder-o:before {
943 | content: "\f114";
944 | }
945 | .fa-folder-open-o:before {
946 | content: "\f115";
947 | }
948 | .fa-smile-o:before {
949 | content: "\f118";
950 | }
951 | .fa-frown-o:before {
952 | content: "\f119";
953 | }
954 | .fa-meh-o:before {
955 | content: "\f11a";
956 | }
957 | .fa-gamepad:before {
958 | content: "\f11b";
959 | }
960 | .fa-keyboard-o:before {
961 | content: "\f11c";
962 | }
963 | .fa-flag-o:before {
964 | content: "\f11d";
965 | }
966 | .fa-flag-checkered:before {
967 | content: "\f11e";
968 | }
969 | .fa-terminal:before {
970 | content: "\f120";
971 | }
972 | .fa-code:before {
973 | content: "\f121";
974 | }
975 | .fa-mail-reply-all:before,
976 | .fa-reply-all:before {
977 | content: "\f122";
978 | }
979 | .fa-star-half-empty:before,
980 | .fa-star-half-full:before,
981 | .fa-star-half-o:before {
982 | content: "\f123";
983 | }
984 | .fa-location-arrow:before {
985 | content: "\f124";
986 | }
987 | .fa-crop:before {
988 | content: "\f125";
989 | }
990 | .fa-code-fork:before {
991 | content: "\f126";
992 | }
993 | .fa-unlink:before,
994 | .fa-chain-broken:before {
995 | content: "\f127";
996 | }
997 | .fa-question:before {
998 | content: "\f128";
999 | }
1000 | .fa-info:before {
1001 | content: "\f129";
1002 | }
1003 | .fa-exclamation:before {
1004 | content: "\f12a";
1005 | }
1006 | .fa-superscript:before {
1007 | content: "\f12b";
1008 | }
1009 | .fa-subscript:before {
1010 | content: "\f12c";
1011 | }
1012 | .fa-eraser:before {
1013 | content: "\f12d";
1014 | }
1015 | .fa-puzzle-piece:before {
1016 | content: "\f12e";
1017 | }
1018 | .fa-microphone:before {
1019 | content: "\f130";
1020 | }
1021 | .fa-microphone-slash:before {
1022 | content: "\f131";
1023 | }
1024 | .fa-shield:before {
1025 | content: "\f132";
1026 | }
1027 | .fa-calendar-o:before {
1028 | content: "\f133";
1029 | }
1030 | .fa-fire-extinguisher:before {
1031 | content: "\f134";
1032 | }
1033 | .fa-rocket:before {
1034 | content: "\f135";
1035 | }
1036 | .fa-maxcdn:before {
1037 | content: "\f136";
1038 | }
1039 | .fa-chevron-circle-left:before {
1040 | content: "\f137";
1041 | }
1042 | .fa-chevron-circle-right:before {
1043 | content: "\f138";
1044 | }
1045 | .fa-chevron-circle-up:before {
1046 | content: "\f139";
1047 | }
1048 | .fa-chevron-circle-down:before {
1049 | content: "\f13a";
1050 | }
1051 | .fa-html5:before {
1052 | content: "\f13b";
1053 | }
1054 | .fa-css3:before {
1055 | content: "\f13c";
1056 | }
1057 | .fa-anchor:before {
1058 | content: "\f13d";
1059 | }
1060 | .fa-unlock-alt:before {
1061 | content: "\f13e";
1062 | }
1063 | .fa-bullseye:before {
1064 | content: "\f140";
1065 | }
1066 | .fa-ellipsis-h:before {
1067 | content: "\f141";
1068 | }
1069 | .fa-ellipsis-v:before {
1070 | content: "\f142";
1071 | }
1072 | .fa-rss-square:before {
1073 | content: "\f143";
1074 | }
1075 | .fa-play-circle:before {
1076 | content: "\f144";
1077 | }
1078 | .fa-ticket:before {
1079 | content: "\f145";
1080 | }
1081 | .fa-minus-square:before {
1082 | content: "\f146";
1083 | }
1084 | .fa-minus-square-o:before {
1085 | content: "\f147";
1086 | }
1087 | .fa-level-up:before {
1088 | content: "\f148";
1089 | }
1090 | .fa-level-down:before {
1091 | content: "\f149";
1092 | }
1093 | .fa-check-square:before {
1094 | content: "\f14a";
1095 | }
1096 | .fa-pencil-square:before {
1097 | content: "\f14b";
1098 | }
1099 | .fa-external-link-square:before {
1100 | content: "\f14c";
1101 | }
1102 | .fa-share-square:before {
1103 | content: "\f14d";
1104 | }
1105 | .fa-compass:before {
1106 | content: "\f14e";
1107 | }
1108 | .fa-toggle-down:before,
1109 | .fa-caret-square-o-down:before {
1110 | content: "\f150";
1111 | }
1112 | .fa-toggle-up:before,
1113 | .fa-caret-square-o-up:before {
1114 | content: "\f151";
1115 | }
1116 | .fa-toggle-right:before,
1117 | .fa-caret-square-o-right:before {
1118 | content: "\f152";
1119 | }
1120 | .fa-euro:before,
1121 | .fa-eur:before {
1122 | content: "\f153";
1123 | }
1124 | .fa-gbp:before {
1125 | content: "\f154";
1126 | }
1127 | .fa-dollar:before,
1128 | .fa-usd:before {
1129 | content: "\f155";
1130 | }
1131 | .fa-rupee:before,
1132 | .fa-inr:before {
1133 | content: "\f156";
1134 | }
1135 | .fa-cny:before,
1136 | .fa-rmb:before,
1137 | .fa-yen:before,
1138 | .fa-jpy:before {
1139 | content: "\f157";
1140 | }
1141 | .fa-ruble:before,
1142 | .fa-rouble:before,
1143 | .fa-rub:before {
1144 | content: "\f158";
1145 | }
1146 | .fa-won:before,
1147 | .fa-krw:before {
1148 | content: "\f159";
1149 | }
1150 | .fa-bitcoin:before,
1151 | .fa-btc:before {
1152 | content: "\f15a";
1153 | }
1154 | .fa-file:before {
1155 | content: "\f15b";
1156 | }
1157 | .fa-file-text:before {
1158 | content: "\f15c";
1159 | }
1160 | .fa-sort-alpha-asc:before {
1161 | content: "\f15d";
1162 | }
1163 | .fa-sort-alpha-desc:before {
1164 | content: "\f15e";
1165 | }
1166 | .fa-sort-amount-asc:before {
1167 | content: "\f160";
1168 | }
1169 | .fa-sort-amount-desc:before {
1170 | content: "\f161";
1171 | }
1172 | .fa-sort-numeric-asc:before {
1173 | content: "\f162";
1174 | }
1175 | .fa-sort-numeric-desc:before {
1176 | content: "\f163";
1177 | }
1178 | .fa-thumbs-up:before {
1179 | content: "\f164";
1180 | }
1181 | .fa-thumbs-down:before {
1182 | content: "\f165";
1183 | }
1184 | .fa-youtube-square:before {
1185 | content: "\f166";
1186 | }
1187 | .fa-youtube:before {
1188 | content: "\f167";
1189 | }
1190 | .fa-xing:before {
1191 | content: "\f168";
1192 | }
1193 | .fa-xing-square:before {
1194 | content: "\f169";
1195 | }
1196 | .fa-youtube-play:before {
1197 | content: "\f16a";
1198 | }
1199 | .fa-dropbox:before {
1200 | content: "\f16b";
1201 | }
1202 | .fa-stack-overflow:before {
1203 | content: "\f16c";
1204 | }
1205 | .fa-instagram:before {
1206 | content: "\f16d";
1207 | }
1208 | .fa-flickr:before {
1209 | content: "\f16e";
1210 | }
1211 | .fa-adn:before {
1212 | content: "\f170";
1213 | }
1214 | .fa-bitbucket:before {
1215 | content: "\f171";
1216 | }
1217 | .fa-bitbucket-square:before {
1218 | content: "\f172";
1219 | }
1220 | .fa-tumblr:before {
1221 | content: "\f173";
1222 | }
1223 | .fa-tumblr-square:before {
1224 | content: "\f174";
1225 | }
1226 | .fa-long-arrow-down:before {
1227 | content: "\f175";
1228 | }
1229 | .fa-long-arrow-up:before {
1230 | content: "\f176";
1231 | }
1232 | .fa-long-arrow-left:before {
1233 | content: "\f177";
1234 | }
1235 | .fa-long-arrow-right:before {
1236 | content: "\f178";
1237 | }
1238 | .fa-apple:before {
1239 | content: "\f179";
1240 | }
1241 | .fa-windows:before {
1242 | content: "\f17a";
1243 | }
1244 | .fa-android:before {
1245 | content: "\f17b";
1246 | }
1247 | .fa-linux:before {
1248 | content: "\f17c";
1249 | }
1250 | .fa-dribbble:before {
1251 | content: "\f17d";
1252 | }
1253 | .fa-skype:before {
1254 | content: "\f17e";
1255 | }
1256 | .fa-foursquare:before {
1257 | content: "\f180";
1258 | }
1259 | .fa-trello:before {
1260 | content: "\f181";
1261 | }
1262 | .fa-female:before {
1263 | content: "\f182";
1264 | }
1265 | .fa-male:before {
1266 | content: "\f183";
1267 | }
1268 | .fa-gittip:before,
1269 | .fa-gratipay:before {
1270 | content: "\f184";
1271 | }
1272 | .fa-sun-o:before {
1273 | content: "\f185";
1274 | }
1275 | .fa-moon-o:before {
1276 | content: "\f186";
1277 | }
1278 | .fa-archive:before {
1279 | content: "\f187";
1280 | }
1281 | .fa-bug:before {
1282 | content: "\f188";
1283 | }
1284 | .fa-vk:before {
1285 | content: "\f189";
1286 | }
1287 | .fa-weibo:before {
1288 | content: "\f18a";
1289 | }
1290 | .fa-renren:before {
1291 | content: "\f18b";
1292 | }
1293 | .fa-pagelines:before {
1294 | content: "\f18c";
1295 | }
1296 | .fa-stack-exchange:before {
1297 | content: "\f18d";
1298 | }
1299 | .fa-arrow-circle-o-right:before {
1300 | content: "\f18e";
1301 | }
1302 | .fa-arrow-circle-o-left:before {
1303 | content: "\f190";
1304 | }
1305 | .fa-toggle-left:before,
1306 | .fa-caret-square-o-left:before {
1307 | content: "\f191";
1308 | }
1309 | .fa-dot-circle-o:before {
1310 | content: "\f192";
1311 | }
1312 | .fa-wheelchair:before {
1313 | content: "\f193";
1314 | }
1315 | .fa-vimeo-square:before {
1316 | content: "\f194";
1317 | }
1318 | .fa-turkish-lira:before,
1319 | .fa-try:before {
1320 | content: "\f195";
1321 | }
1322 | .fa-plus-square-o:before {
1323 | content: "\f196";
1324 | }
1325 | .fa-space-shuttle:before {
1326 | content: "\f197";
1327 | }
1328 | .fa-slack:before {
1329 | content: "\f198";
1330 | }
1331 | .fa-envelope-square:before {
1332 | content: "\f199";
1333 | }
1334 | .fa-wordpress:before {
1335 | content: "\f19a";
1336 | }
1337 | .fa-openid:before {
1338 | content: "\f19b";
1339 | }
1340 | .fa-institution:before,
1341 | .fa-bank:before,
1342 | .fa-university:before {
1343 | content: "\f19c";
1344 | }
1345 | .fa-mortar-board:before,
1346 | .fa-graduation-cap:before {
1347 | content: "\f19d";
1348 | }
1349 | .fa-yahoo:before {
1350 | content: "\f19e";
1351 | }
1352 | .fa-google:before {
1353 | content: "\f1a0";
1354 | }
1355 | .fa-reddit:before {
1356 | content: "\f1a1";
1357 | }
1358 | .fa-reddit-square:before {
1359 | content: "\f1a2";
1360 | }
1361 | .fa-stumbleupon-circle:before {
1362 | content: "\f1a3";
1363 | }
1364 | .fa-stumbleupon:before {
1365 | content: "\f1a4";
1366 | }
1367 | .fa-delicious:before {
1368 | content: "\f1a5";
1369 | }
1370 | .fa-digg:before {
1371 | content: "\f1a6";
1372 | }
1373 | .fa-pied-piper:before {
1374 | content: "\f1a7";
1375 | }
1376 | .fa-pied-piper-alt:before {
1377 | content: "\f1a8";
1378 | }
1379 | .fa-drupal:before {
1380 | content: "\f1a9";
1381 | }
1382 | .fa-joomla:before {
1383 | content: "\f1aa";
1384 | }
1385 | .fa-language:before {
1386 | content: "\f1ab";
1387 | }
1388 | .fa-fax:before {
1389 | content: "\f1ac";
1390 | }
1391 | .fa-building:before {
1392 | content: "\f1ad";
1393 | }
1394 | .fa-child:before {
1395 | content: "\f1ae";
1396 | }
1397 | .fa-paw:before {
1398 | content: "\f1b0";
1399 | }
1400 | .fa-spoon:before {
1401 | content: "\f1b1";
1402 | }
1403 | .fa-cube:before {
1404 | content: "\f1b2";
1405 | }
1406 | .fa-cubes:before {
1407 | content: "\f1b3";
1408 | }
1409 | .fa-behance:before {
1410 | content: "\f1b4";
1411 | }
1412 | .fa-behance-square:before {
1413 | content: "\f1b5";
1414 | }
1415 | .fa-steam:before {
1416 | content: "\f1b6";
1417 | }
1418 | .fa-steam-square:before {
1419 | content: "\f1b7";
1420 | }
1421 | .fa-recycle:before {
1422 | content: "\f1b8";
1423 | }
1424 | .fa-automobile:before,
1425 | .fa-car:before {
1426 | content: "\f1b9";
1427 | }
1428 | .fa-cab:before,
1429 | .fa-taxi:before {
1430 | content: "\f1ba";
1431 | }
1432 | .fa-tree:before {
1433 | content: "\f1bb";
1434 | }
1435 | .fa-spotify:before {
1436 | content: "\f1bc";
1437 | }
1438 | .fa-deviantart:before {
1439 | content: "\f1bd";
1440 | }
1441 | .fa-soundcloud:before {
1442 | content: "\f1be";
1443 | }
1444 | .fa-database:before {
1445 | content: "\f1c0";
1446 | }
1447 | .fa-file-pdf-o:before {
1448 | content: "\f1c1";
1449 | }
1450 | .fa-file-word-o:before {
1451 | content: "\f1c2";
1452 | }
1453 | .fa-file-excel-o:before {
1454 | content: "\f1c3";
1455 | }
1456 | .fa-file-powerpoint-o:before {
1457 | content: "\f1c4";
1458 | }
1459 | .fa-file-photo-o:before,
1460 | .fa-file-picture-o:before,
1461 | .fa-file-image-o:before {
1462 | content: "\f1c5";
1463 | }
1464 | .fa-file-zip-o:before,
1465 | .fa-file-archive-o:before {
1466 | content: "\f1c6";
1467 | }
1468 | .fa-file-sound-o:before,
1469 | .fa-file-audio-o:before {
1470 | content: "\f1c7";
1471 | }
1472 | .fa-file-movie-o:before,
1473 | .fa-file-video-o:before {
1474 | content: "\f1c8";
1475 | }
1476 | .fa-file-code-o:before {
1477 | content: "\f1c9";
1478 | }
1479 | .fa-vine:before {
1480 | content: "\f1ca";
1481 | }
1482 | .fa-codepen:before {
1483 | content: "\f1cb";
1484 | }
1485 | .fa-jsfiddle:before {
1486 | content: "\f1cc";
1487 | }
1488 | .fa-life-bouy:before,
1489 | .fa-life-buoy:before,
1490 | .fa-life-saver:before,
1491 | .fa-support:before,
1492 | .fa-life-ring:before {
1493 | content: "\f1cd";
1494 | }
1495 | .fa-circle-o-notch:before {
1496 | content: "\f1ce";
1497 | }
1498 | .fa-ra:before,
1499 | .fa-rebel:before {
1500 | content: "\f1d0";
1501 | }
1502 | .fa-ge:before,
1503 | .fa-empire:before {
1504 | content: "\f1d1";
1505 | }
1506 | .fa-git-square:before {
1507 | content: "\f1d2";
1508 | }
1509 | .fa-git:before {
1510 | content: "\f1d3";
1511 | }
1512 | .fa-hacker-news:before {
1513 | content: "\f1d4";
1514 | }
1515 | .fa-tencent-weibo:before {
1516 | content: "\f1d5";
1517 | }
1518 | .fa-qq:before {
1519 | content: "\f1d6";
1520 | }
1521 | .fa-wechat:before,
1522 | .fa-weixin:before {
1523 | content: "\f1d7";
1524 | }
1525 | .fa-send:before,
1526 | .fa-paper-plane:before {
1527 | content: "\f1d8";
1528 | }
1529 | .fa-send-o:before,
1530 | .fa-paper-plane-o:before {
1531 | content: "\f1d9";
1532 | }
1533 | .fa-history:before {
1534 | content: "\f1da";
1535 | }
1536 | .fa-genderless:before,
1537 | .fa-circle-thin:before {
1538 | content: "\f1db";
1539 | }
1540 | .fa-header:before {
1541 | content: "\f1dc";
1542 | }
1543 | .fa-paragraph:before {
1544 | content: "\f1dd";
1545 | }
1546 | .fa-sliders:before {
1547 | content: "\f1de";
1548 | }
1549 | .fa-share-alt:before {
1550 | content: "\f1e0";
1551 | }
1552 | .fa-share-alt-square:before {
1553 | content: "\f1e1";
1554 | }
1555 | .fa-bomb:before {
1556 | content: "\f1e2";
1557 | }
1558 | .fa-soccer-ball-o:before,
1559 | .fa-futbol-o:before {
1560 | content: "\f1e3";
1561 | }
1562 | .fa-tty:before {
1563 | content: "\f1e4";
1564 | }
1565 | .fa-binoculars:before {
1566 | content: "\f1e5";
1567 | }
1568 | .fa-plug:before {
1569 | content: "\f1e6";
1570 | }
1571 | .fa-slideshare:before {
1572 | content: "\f1e7";
1573 | }
1574 | .fa-twitch:before {
1575 | content: "\f1e8";
1576 | }
1577 | .fa-yelp:before {
1578 | content: "\f1e9";
1579 | }
1580 | .fa-newspaper-o:before {
1581 | content: "\f1ea";
1582 | }
1583 | .fa-wifi:before {
1584 | content: "\f1eb";
1585 | }
1586 | .fa-calculator:before {
1587 | content: "\f1ec";
1588 | }
1589 | .fa-paypal:before {
1590 | content: "\f1ed";
1591 | }
1592 | .fa-google-wallet:before {
1593 | content: "\f1ee";
1594 | }
1595 | .fa-cc-visa:before {
1596 | content: "\f1f0";
1597 | }
1598 | .fa-cc-mastercard:before {
1599 | content: "\f1f1";
1600 | }
1601 | .fa-cc-discover:before {
1602 | content: "\f1f2";
1603 | }
1604 | .fa-cc-amex:before {
1605 | content: "\f1f3";
1606 | }
1607 | .fa-cc-paypal:before {
1608 | content: "\f1f4";
1609 | }
1610 | .fa-cc-stripe:before {
1611 | content: "\f1f5";
1612 | }
1613 | .fa-bell-slash:before {
1614 | content: "\f1f6";
1615 | }
1616 | .fa-bell-slash-o:before {
1617 | content: "\f1f7";
1618 | }
1619 | .fa-trash:before {
1620 | content: "\f1f8";
1621 | }
1622 | .fa-copyright:before {
1623 | content: "\f1f9";
1624 | }
1625 | .fa-at:before {
1626 | content: "\f1fa";
1627 | }
1628 | .fa-eyedropper:before {
1629 | content: "\f1fb";
1630 | }
1631 | .fa-paint-brush:before {
1632 | content: "\f1fc";
1633 | }
1634 | .fa-birthday-cake:before {
1635 | content: "\f1fd";
1636 | }
1637 | .fa-area-chart:before {
1638 | content: "\f1fe";
1639 | }
1640 | .fa-pie-chart:before {
1641 | content: "\f200";
1642 | }
1643 | .fa-line-chart:before {
1644 | content: "\f201";
1645 | }
1646 | .fa-lastfm:before {
1647 | content: "\f202";
1648 | }
1649 | .fa-lastfm-square:before {
1650 | content: "\f203";
1651 | }
1652 | .fa-toggle-off:before {
1653 | content: "\f204";
1654 | }
1655 | .fa-toggle-on:before {
1656 | content: "\f205";
1657 | }
1658 | .fa-bicycle:before {
1659 | content: "\f206";
1660 | }
1661 | .fa-bus:before {
1662 | content: "\f207";
1663 | }
1664 | .fa-ioxhost:before {
1665 | content: "\f208";
1666 | }
1667 | .fa-angellist:before {
1668 | content: "\f209";
1669 | }
1670 | .fa-cc:before {
1671 | content: "\f20a";
1672 | }
1673 | .fa-shekel:before,
1674 | .fa-sheqel:before,
1675 | .fa-ils:before {
1676 | content: "\f20b";
1677 | }
1678 | .fa-meanpath:before {
1679 | content: "\f20c";
1680 | }
1681 | .fa-buysellads:before {
1682 | content: "\f20d";
1683 | }
1684 | .fa-connectdevelop:before {
1685 | content: "\f20e";
1686 | }
1687 | .fa-dashcube:before {
1688 | content: "\f210";
1689 | }
1690 | .fa-forumbee:before {
1691 | content: "\f211";
1692 | }
1693 | .fa-leanpub:before {
1694 | content: "\f212";
1695 | }
1696 | .fa-sellsy:before {
1697 | content: "\f213";
1698 | }
1699 | .fa-shirtsinbulk:before {
1700 | content: "\f214";
1701 | }
1702 | .fa-simplybuilt:before {
1703 | content: "\f215";
1704 | }
1705 | .fa-skyatlas:before {
1706 | content: "\f216";
1707 | }
1708 | .fa-cart-plus:before {
1709 | content: "\f217";
1710 | }
1711 | .fa-cart-arrow-down:before {
1712 | content: "\f218";
1713 | }
1714 | .fa-diamond:before {
1715 | content: "\f219";
1716 | }
1717 | .fa-ship:before {
1718 | content: "\f21a";
1719 | }
1720 | .fa-user-secret:before {
1721 | content: "\f21b";
1722 | }
1723 | .fa-motorcycle:before {
1724 | content: "\f21c";
1725 | }
1726 | .fa-street-view:before {
1727 | content: "\f21d";
1728 | }
1729 | .fa-heartbeat:before {
1730 | content: "\f21e";
1731 | }
1732 | .fa-venus:before {
1733 | content: "\f221";
1734 | }
1735 | .fa-mars:before {
1736 | content: "\f222";
1737 | }
1738 | .fa-mercury:before {
1739 | content: "\f223";
1740 | }
1741 | .fa-transgender:before {
1742 | content: "\f224";
1743 | }
1744 | .fa-transgender-alt:before {
1745 | content: "\f225";
1746 | }
1747 | .fa-venus-double:before {
1748 | content: "\f226";
1749 | }
1750 | .fa-mars-double:before {
1751 | content: "\f227";
1752 | }
1753 | .fa-venus-mars:before {
1754 | content: "\f228";
1755 | }
1756 | .fa-mars-stroke:before {
1757 | content: "\f229";
1758 | }
1759 | .fa-mars-stroke-v:before {
1760 | content: "\f22a";
1761 | }
1762 | .fa-mars-stroke-h:before {
1763 | content: "\f22b";
1764 | }
1765 | .fa-neuter:before {
1766 | content: "\f22c";
1767 | }
1768 | .fa-facebook-official:before {
1769 | content: "\f230";
1770 | }
1771 | .fa-pinterest-p:before {
1772 | content: "\f231";
1773 | }
1774 | .fa-whatsapp:before {
1775 | content: "\f232";
1776 | }
1777 | .fa-server:before {
1778 | content: "\f233";
1779 | }
1780 | .fa-user-plus:before {
1781 | content: "\f234";
1782 | }
1783 | .fa-user-times:before {
1784 | content: "\f235";
1785 | }
1786 | .fa-hotel:before,
1787 | .fa-bed:before {
1788 | content: "\f236";
1789 | }
1790 | .fa-viacoin:before {
1791 | content: "\f237";
1792 | }
1793 | .fa-train:before {
1794 | content: "\f238";
1795 | }
1796 | .fa-subway:before {
1797 | content: "\f239";
1798 | }
1799 | .fa-medium:before {
1800 | content: "\f23a";
1801 | }
1802 |
--------------------------------------------------------------------------------