<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// Require.js Configurations
// -------------------------
require.config({

	// Sets the js folder as the base directory for all future relative paths
	baseUrl: "/static/",

	// expire at each reload
	// urlArgs: "bust=" + (new Date()).getTime(),	
	// enforceDefine: true,
    urlArgs: "bust=" + (new Date()).getTime(),
    cacheSuffix: ".buildNumberRelease1",
    waitSeconds: 1500,

	// 3rd party script alias names (Easier to type "jquery" than "libs/jquery, etc")
	// probably a good idea to keep version numbers in the file names for updates checking
	paths: {

		// Core Libraries
		// --------------
		"jquery": "vendors/jquery/dist/jquery.min",

		// Plugins
		// -------
		// "prefixfree": "vendors/prefixfree/prefixfree.min",
		"bootstrap" : "vendors/bootstrap/dist/js/bootstrap",
		"jquery-bridget" : "vendors/jquery-bridget/jquery.bridget",
		"jquery-scrollTo" : "vendors/jquery.scrollTo/jquery.scrollTo.min",
		"jquery-actual" : "vendors/jquery.actual/jquery.actual.min",
		"jquery.validation" : "vendors/jquery.validation/dist/jquery.validate.min",
		"jquery.validation.locale" : "vendors/jquery.validation/src/localization/messages_" + LANGUAGE_CODE,
		"jquery-maskedinput" : "vendors/jquery.maskedinput/dist/jquery.maskedinput.min",
		"jquery.nicescroll" : "vendors/jquery.nicescroll/jquery.nicescroll.min",
		"sticky" : "vendors/sticky/jquery.sticky",
		"sticky-kit" : "vendors/sticky-kit/jquery.sticky-kit.min",
		"isInViewport" : "vendors/isInViewport/lib/isInViewport.min",
		"packery" : "vendors/packery/dist/packery.pkgd",
		"imagesloaded" : "vendors/imagesloaded/imagesloaded.pkgd.min",
		"flickity" : "vendors/flickity/dist/flickity.pkgd",
		"blazy" : "vendors/blazy/blazy.min",
		"localforage" : "vendors/localforage/dist/localforage.min",
		"vide" : "vendors/vide/dist/jquery.vide",
		"history" : "vendors/history.js/scripts/bundled/html5/jquery.history",
		"jssha" : "vendors/jssha/src/sha",
		"bootstrap-datepicker" : "vendors/bootstrap-datepicker/js/bootstrap-datepicker",
		"select2" : "vendors/select2/dist/js/select2.full.min",
		"dropzone" : "vendors/dropzone/dist/dropzone-amd-module",
		"cropper" : "vendors/cropper/dist/cropper.min",
		"color-thief" : "vendors/color-thief/dist/color-thief.min",
		"fluidbox" : "vendors/fluidbox/jquery.fluidbox.min",
		"magnificPopup" : "vendors/magnific-popup/dist/jquery.magnific-popup.min",
		"matchheight" : "vendors/matchheight/jquery.matchHeight-min",
		"fitvids" : "vendors/fitvids/jquery.fitvids",
		"swiper" : "vendors/swiper/dist/js/swiper.jquery.umd.min",

		// Locales
		// ----------
		"bootstrap-datepicker-locale" : "vendors/bootstrap-datepicker/js/locales/bootstrap-datepicker." + LANGUAGE_CODE,

		// Components
		// ----------
		"components": "js/components/init",
		"components/nav": "js/components/nav",
		"components/page-loader": "js/components/page-loader",
		"components/favorites": "js/components/favorites",
		"components/like": "js/components/like",
		"components/search-filters": "js/components/search-filters",
		"components/video-player": "js/components/video-player",
		"components/sharer": "js/components/sharer",

		// Modules
		// -------
		"modules": "js/modules/init",
		"modules/ratio-grid": "js/modules/ratio-grid",
		"modules/figures": "js/modules/figures",
		"modules/inline-svg": "js/modules/inline-svg",
		"modules/push-state": "js/modules/push-state",
		"modules/scroll-areas": "js/modules/scroll-areas",
		"modules/utils": "js/modules/utils",

		// Sections
		// --------
		"sections/home": "js/sections/home",
		"sections/about": "js/sections/about",
		"sections/register": "js/sections/register",
		"sections/portfolio_payment": "js/sections/portfolio_payment",
		"sections/subscription_renewal": "js/sections/subscription_renewal",
		"sections/portfolios": "js/sections/portfolios",
		"sections/projects": "js/sections/projects",
		"sections/news": "js/sections/news",
		"sections/tools": "js/sections/tools"

	},

	// Sets the configuration for your third party scripts that are not AMD compatible
	shim: {
		'boostrap': {
			deps: ['jquery'],
			exports: 'Boostrap'
		},
		'jquery-actual': {
			deps: ['jquery'],
			exports: 'actual'
		},
		'jquery.validation.locale': {
			deps: ['jquery.validation'],
			exports: 'validateLocale'
		},
		'history': {
			deps: ['jquery'],
			exports: 'History'
		},
		'jssha': {
			exports: 'jsSHA'
		},
		'isInViewport': {
			deps: ['jquery'],
			exports: 'isInViewport'
		},
		'packery': {
			deps: ['jquery', 'jquery-bridget'],
			exports: 'Packery'
		},
		'flickity': {
			deps: ['jquery', 'jquery-bridget'],
			exports: 'Flickity'
		},
		'vide': {
			deps: ['jquery'],
			exports: 'vide'
		},
		'sticky': {
			deps: ['jquery'],
			exports: 'sticky'
		},
		'sticky-kit': {
			deps: ['jquery'],
			exports: 'stick_in_parent'
		},
		'bootstrap-datepicker': {
			deps: ['jquery'],
			exports: 'datepicker'
		},
		'bootstrap-datepicker-locale': {
			deps: ['bootstrap-datepicker']
		},
		'color-thief': {
			exports: "ColorThief"
		},
		'fluidbox': {
			exports: "fluidbox"
		},
		'matchheight' : {
			deps: ['jquery'],
			exports: "matchHeight"
		},
		'fitvids' : {
			deps: ['jquery'],
			exports: "fitVids"
		}
	}

});

// init app
requirejs(["components", "modules"], function(Components, Modules) {});
</pre></body></html>