var webjars = {
    versions: {"marked":"0.3.6","typeaheadjs":"0.11.1","blazy":"1.8.0","numeral-js":"1.5.3-1","rangy":"1.3.0","jquery-ui":"1.11.4","recogito2":"2.2","openlayers":"4.6.4","velocity":"1.1.0","jquery":"3.6.0","dropzone":"4.2.0","timeago":"1.4.1","chartist":"0.9.8","js-grid":"1.4.1","plotly.js":"1.12.0","papa-parse":"4.1.0","cookieconsent":"3.0.6","requirejs":"2.3.3","leaflet":"1.3.1","bootstrap-colorpicker":"2.5.2","swagger-ui":"2.2.0","slick":"1.6.0"},
    path: function(webJarId, path) {
        console.error('The webjars.path() method of getting a WebJar path has been deprecated.  The RequireJS config in the ' + webJarId + ' WebJar may need to be updated.  Please file an issue: http://github.com/webjars/' + webJarId + '/issues/new');
        return ['/webjars/' + webJarId + '/' + webjars.versions[webJarId] + '/' + path];
    }
};

var require = {
    callback: function() {
        // Deprecated WebJars RequireJS plugin loader
        define('webjars', function() {
            return {
                load: function(name, req, onload, config) {
                    if (name.indexOf('.js') >= 0) {
                        console.warn('Detected a legacy file name (' + name + ') as the thing to load.  Loading via file name is no longer supported so the .js will be dropped in an effort to resolve the module name instead.');
                        name = name.replace('.js', '');
                    }
                    console.error('The webjars plugin loader (e.g. webjars!' + name + ') has been deprecated.  The RequireJS config in the ' + name + ' WebJar may need to be updated.  Please file an issue: http://github.com/webjars/webjars/issues/new');
                    req([name], function() {
                        onload();
                    });
                }
            }
        });

        // All of the WebJar configs


requirejs.config({"paths":{"marked":["/webjars/marked/0.3.6/lib/marked"]}});
requirejs.config({"paths":{"typeaheadjs":["/webjars/typeaheadjs/0.11.1/typeahead.jquery","typeahead.jquery"],"typeaheadjs-bundle":["/webjars/typeaheadjs/0.11.1/typeahead.bundle","typeahead.bundle"]},"shim":{"typeaheadjs":["jquery"],"typeaheadjs-bundle":["jquery"]},"packages":[]});
requirejs.config({"paths":{"bLazy":["/webjars/blazy/1.8.0/blazy"]}});
requirejs.config({"paths":{"numeral-js":["/webjars/numeral-js/1.5.3-1/numeral","numeral"]},"packages":[]});
requirejs.config({"paths":{"rangy":["/webjars/rangy/1.3.0/rangy-core"]}});
requirejs.config({"paths":{"jquery-ui":["/webjars/jquery-ui/1.11.4/jquery-ui","jquery-ui"],"jquery-ui-min":["/webjars/jquery-ui/1.11.4/jquery-ui.min","jquery-ui.min"]},"shim":{"jquery-ui":["jquery"],"jquery-ui-min":["jquery"]},"packages":[]});

requirejs.config({"paths":{"openlayers":["/webjars/openlayers/4.6.4/dist/ol"]}});
requirejs.config({"paths":{"velocity":["/webjars/velocity/1.1.0/velocity","velocity"]},"packages":[]});
requirejs.config({"paths":{"jquery":["/webjars/jquery/3.6.0/dist/jquery"]}});

requirejs.config({"paths":{"jquery-timeago":["/webjars/timeago/1.4.1/jquery.timeago"]}});
requirejs.config({"paths":{"chartist":["/webjars/chartist/0.9.8/dist/chartist"]}});
requirejs.config({"paths":{"jsgrid":["/webjars/js-grid/1.4.1/dist/jsgrid"]}});
requirejs.config({"paths":{"plotly-js":["/webjars/plotly.js/1.12.0/dist/plotly.min"]}});
requirejs.config({"paths":{"papa-parse":["/webjars/papa-parse/4.1.0/papaparse","papaparse"],"papaparse":["/webjars/papa-parse/4.1.0/papaparse","papaparse"]},"packages":[]});
requirejs.config({"paths":{"cookieconsent":["/webjars/cookieconsent/3.0.6/build/cookieconsent.min"]}});
requirejs.config({"paths":{},"packages":[]});
requirejs.config({"paths":{"leaflet":["/webjars/leaflet/1.3.1/leaflet","leaflet"]},"shim":{"leaflet":{"exports":"L"}},"packages":[]});
requirejs.config({"paths":{"bootstrap-colorpicker":["/webjars/bootstrap-colorpicker/2.5.2/dist/js/bootstrap-colorpicker"]}});
requirejs.config({"paths":{"swagger-ui":["/webjars/swagger-ui/2.2.0/swagger-ui","swagger-ui"]},"packages":[]});
    }
};