instance trees (trac-13180)
+ cur.nodeType &&
+
+ // Support: Firefox <=42
+ // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
+ // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
+ // Support: IE 11 only
+ // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
+ !( event.type === "click" && event.button >= 1 ) ) {
+
+ for ( ; cur !== this; cur = cur.parentNode || this ) {
+
+ // Don't check non-elements (#13208)
+ // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
+ if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
+ matchedHandlers = [];
+ matchedSelectors = {};
+ for ( i = 0; i < delegateCount; i++ ) {
+ handleObj = handlers[ i ];
+
+ // Don't conflict with Object.prototype properties (#13203)
+ sel = handleObj.selector + " ";
+
+ if ( matchedSelectors[ sel ] === undefined ) {
+ matchedSelectors[ sel ] = handleObj.needsContext ?
+ jQuery( sel, this ).index( cur ) > -1 :
+ jQuery.find( sel, this, null, [ cur ] ).length;
+ }
+ if ( matchedSelectors[ sel ] ) {
+ matchedHandlers.push( handleObj );
+ }
+ }
+ if ( matchedHandlers.length ) {
+ handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
+ }
+ }
+ }
+ }
+
+ // Add the remaining (directly-bound) handlers
+ cur = this;
+ if ( delegateCount < handlers.length ) {
+ handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
+ }
+
+ return handlerQueue;
+ },
+
+ addProp: function( name, hook ) {
+ Object.defineProperty( jQuery.Event.prototype, name, {
+ enumerable: true,
+ configurable: true,
+
+ get: isFunction( hook ) ?
+ function() {
+ if ( this.originalEvent ) {
+ return hook( this.originalEvent );
+ }
+ } :
+ function() {
+ if ( this.originalEvent ) {
+ return this.originalEvent[ name ];
+ }
+ },
+
+ set: function( value ) {
+ Object.defineProperty( this, name, {
+ enumerable: true,
+ configurable: true,
+ writable: true,
+ value: value
+ } );
+ }
+ } );
+ },
+
+ fix: function( originalEvent ) {
+ return originalEvent[ jQuery.expando ] ?
+ originalEvent :
+ new jQuery.Event( originalEvent );
+ },
+
+ special: {
+ load: {
+
+ // Prevent triggered image.load events from bubbling to window.load
+ noBubble: true
+ },
+ click: {
+
+ // Utilize native event to ensure correct state for checkable inputs
+ setup: function( data ) {
+
+ // For mutual compressibility with _default, replace `this` access with a local var.
+ // `|| data` is dead code meant only to preserve the variable through minification.
+ var el = this || data;
+
+ // Claim the first handler
+ if ( rcheckableType.test( el.type ) &&
+ el.click && nodeName( el, "input" ) ) {
+
+ // dataPriv.set( el, "click", ... )
+ leverageNative( el, "click", returnTrue );
+ }
+
+ // Return false to allow normal processing in the caller
+ return false;
+ },
+ trigger: function( data ) {
+
+ // For mutual compressibility with _default, replace `this` access with a local var.
+ // `|| data` is dead code meant only to preserve the variable through minification.
+ var el = this || data;
+
+ // Force setup before triggering a click
+ if ( rcheckableType.test( el.type ) &&
+ el.click && nodeName( el, "input" ) ) {
+
+ leverageNative( el, "click" );
+ }
+
+ // Return non-false to allow normal event-path propagation
+ return true;
+ },
+
+ // For cross-browser consistency, suppress native .click() on links
+ // Also prevent it if we're currently inside a leveraged native-event stack
+ _default: function( event ) {
+ var target = event.target;
+ return rcheckableType.test( target.type ) &&
+ target.click && nodeName( target, "input" ) &&
+ dataPriv.get( target, "click" ) ||
+ nodeName( target, "a" );
+ }
+ },
+
+ beforeunload: {
+ postDispatch: function( event ) {
+
+ // Support: Firefox 20+
+ // Firefox doesn't alert if the returnValue field is not set.
+ if ( event.result !== undefined && event.originalEvent ) {
+ event.originalEvent.returnValue = event.result;
+ }
+ }
+ }
+ }
+};
+
+// Ensure the presence of an event listener that handles manually-triggered
+// synthetic events by interrupting progress until reinvoked in response to
+// *native* events that it fires directly, ensuring that state changes have
+// already occurred before other listeners are invoked.
+function leverageNative( el, type, expectSync ) {
+
+ // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
+ if ( !expectSync ) {
+ if ( dataPriv.get( el, type ) === undefined ) {
+ jQuery.event.add( el, type, returnTrue );
+ }
+ return;
+ }
+
+ // Register the controller as a special universal handler for all event namespaces
+ dataPriv.set( el, type, false );
+ jQuery.event.add( el, type, {
+ namespace: false,
+ handler: function( event ) {
+ var notAsync, result,
+ saved = dataPriv.get( this, type );
+
+ if ( ( event.isTrigger & 1 ) && this[ type ] ) {
+
+ // Interrupt processing of the outer synthetic .trigger()ed event
+ // Saved data should be false in such cases, but might be a leftover capture object
+ // from an async native handler (gh-4350)
+ if ( !saved.length ) {
+
+ // Store arguments for use when handling the inner native event
+ // There will always be at least one argument (an event object), so this array
+ // will not be confused with a leftover capture object.
+ saved = slice.call( arguments );
+ dataPriv.set( this, type, saved );
+
+ // Trigger the native event and capture its result
+ // Support: IE <=9 - 11+
+ // focus() and blur() are asynchronous
+ notAsync = expectSync( this, type );
+ this[ type ]();
+ result = dataPriv.get( this, type );
+ if ( saved !== result || notAsync ) {
+ dataPriv.set( this, type, false );
+ } else {
+ result = {};
+ }
+ if ( saved !== result ) {
+
+ // Cancel the outer synthetic event
+ event.stopImmediatePropagation();
+ event.preventDefault();
+
+ // Support: Chrome 86+
+ // In Chrome, if an element having a focusout handler is blurred by
+ // clicking outside of it, it invokes the handler synchronously. If
+ // that handler calls `.remove()` on the element, the data is cleared,
+ // leaving `result` undefined. We need to guard against this.
+ return result && result.value;
+ }
+
+ // If this is an inner synthetic event for an event with a bubbling surrogate
+ // (focus or blur), assume that the surrogate already propagated from triggering the
+ // native event and prevent that from happening again here.
+ // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the
+ // bubbling surrogate propagates *after* the non-bubbling base), but that seems
+ // less bad than duplication.
+ } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {
+ event.stopPropagation();
+ }
+
+ // If this is a native event triggered above, everything is now in order
+ // Fire an inner synthetic event with the original arguments
+ } else if ( saved.length ) {
+
+ // ...and capture the result
+ dataPriv.set( this, type, {
+ value: jQuery.event.trigger(
+
+ // Support: IE <=9 - 11+
+ // Extend with the prototype to reset the above stopImmediatePropagation()
+ jQuery.extend( saved[ 0 ], jQuery.Event.prototype ),
+ saved.slice( 1 ),
+ this
+ )
+ } );
+
+ // Abort handling of the native event
+ event.stopImmediatePropagation();
+ }
+ }
+ } );
+}
+
+jQuery.removeEvent = function( elem, type, handle ) {
+
+ // This "if" is needed for plain objects
+ if ( elem.removeEventListener ) {
+ elem.removeEventListener( type, handle );
+ }
+};
+
+jQuery.Event = function( src, props ) {
+
+ // Allow instantiation without the 'new' keyword
+ if ( !( this instanceof jQuery.Event ) ) {
+ return new jQuery.Event( src, props );
+ }
+
+ // Event object
+ if ( src && src.type ) {
+ this.originalEvent = src;
+ this.type = src.type;
+
+ // Events bubbling up the document may have been marked as prevented
+ // by a handler lower down the tree; reflect the correct value.
+ this.isDefaultPrevented = src.defaultPrevented ||
+ src.defaultPrevented === undefined &&
+
+ // Support: Android <=2.3 only
+ src.returnValue === false ?
+ returnTrue :
+ returnFalse;
+
+ // Create target properties
+ // Support: Safari <=6 - 7 only
+ // Target should not be a text node (#504, #13143)
+ this.target = ( src.target && src.target.nodeType === 3 ) ?
+ src.target.parentNode :
+ src.target;
+
+ this.currentTarget = src.currentTarget;
+ this.relatedTarget = src.relatedTarget;
+
+ // Event type
+ } else {
+ this.type = src;
+ }
+
+ // Put explicitly provided properties onto the event object
+ if ( props ) {
+ jQuery.extend( this, props );
+ }
+
+ // Create a timestamp if incoming event doesn't have one
+ this.timeStamp = src && src.timeStamp || Date.now();
+
+ // Mark it as fixed
+ this[ jQuery.expando ] = true;
+};
+
+// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
+// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
+jQuery.Event.prototype = {
+ constructor: jQuery.Event,
+ isDefaultPrevented: returnFalse,
+ isPropagationStopped: returnFalse,
+ isImmediatePropagationStopped: returnFalse,
+ isSimulated: false,
+
+ preventDefault: function() {
+ var e = this.originalEvent;
+
+ this.isDefaultPrevented = returnTrue;
+
+ if ( e && !this.isSimulated ) {
+ e.preventDefault();
+ }
+ },
+ stopPropagation: function() {
+ var e = this.originalEvent;
+
+ this.isPropagationStopped = returnTrue;
+
+ if ( e && !this.isSimulated ) {
+ e.stopPropagation();
+ }
+ },
+ stopImmediatePropagation: function() {
+ var e = this.originalEvent;
+
+ this.isImmediatePropagationStopped = returnTrue;
+
+ if ( e && !this.isSimulated ) {
+ e.stopImmediatePropagation();
+ }
+
+ this.stopPropagation();
+ }
+};
+
+// Includes all common event props including KeyEvent and MouseEvent specific props
+jQuery.each( {
+ altKey: true,
+ bubbles: true,
+ cancelable: true,
+ changedTouches: true,
+ ctrlKey: true,
+ detail: true,
+ eventPhase: true,
+ metaKey: true,
+ pageX: true,
+ pageY: true,
+ shiftKey: true,
+ view: true,
+ "char": true,
+ code: true,
+ charCode: true,
+ key: true,
+ keyCode: true,
+ button: true,
+ buttons: true,
+ clientX: true,
+ clientY: true,
+ offsetX: true,
+ offsetY: true,
+ pointerId: true,
+ pointerType: true,
+ screenX: true,
+ screenY: true,
+ targetTouches: true,
+ toElement: true,
+ touches: true,
+ which: true
+}, jQuery.event.addProp );
+
+jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) {
+ jQuery.event.special[ type ] = {
+
+ // Utilize native event if possible so blur/focus sequence is correct
+ setup: function() {
+
+ // Claim the first handler
+ // dataPriv.set( this, "focus", ... )
+ // dataPriv.set( this, "blur", ... )
+ leverageNative( this, type, expectSync );
+
+ // Return false to allow normal processing in the caller
+ return false;
+ },
+ trigger: function() {
+
+ // Force setup before trigger
+ leverageNative( this, type );
+
+ // Return non-false to allow normal event-path propagation
+ return true;
+ },
+
+ // Suppress native focus or blur as it's already being fired
+ // in leverageNative.
+ _default: function() {
+ return true;
+ },
+
+ delegateType: delegateType
+ };
+} );
+
+// Create mouseenter/leave events using mouseover/out and event-time checks
+// so that event delegation works in jQuery.
+// Do the same for pointerenter/pointerleave and pointerover/pointerout
+//
+// Support: Safari 7 only
+// Safari sends mouseenter too often; see:
+// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
+// for the description of the bug (it existed in older Chrome versions as well).
+jQuery.each( {
+ mouseenter: "mouseover",
+ mouseleave: "mouseout",
+ pointerenter: "pointerover",
+ pointerleave: "pointerout"
+}, function( orig, fix ) {
+ jQuery.event.special[ orig ] = {
+ delegateType: fix,
+ bindType: fix,
+
+ handle: function( event ) {
+ var ret,
+ target = this,
+ related = event.relatedTarget,
+ handleObj = event.handleObj;
+
+ // For mouseenter/leave call the handler if related is outside the target.
+ // NB: No relatedTarget if the mouse left/entered the browser window
+ if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
+ event.type = handleObj.origType;
+ ret = handleObj.handler.apply( this, arguments );
+ event.type = fix;
+ }
+ return ret;
+ }
+ };
+} );
+
+jQuery.fn.extend( {
+
+ on: function( types, selector, data, fn ) {
+ return on( this, types, selector, data, fn );
+ },
+ one: function( types, selector, data, fn ) {
+ return on( this, types, selector, data, fn, 1 );
+ },
+ off: function( types, selector, fn ) {
+ var handleObj, type;
+ if ( types && types.preventDefault && types.handleObj ) {
+
+ // ( event ) dispatched jQuery.Event
+ handleObj = types.handleObj;
+ jQuery( types.delegateTarget ).off(
+ handleObj.namespace ?
+ handleObj.origType + "." + handleObj.namespace :
+ handleObj.origType,
+ handleObj.selector,
+ handleObj.handler
+ );
+ return this;
+ }
+ if ( typeof types === "object" ) {
+
+ // ( types-object [, selector] )
+ for ( type in types ) {
+ this.off( type, selector, types[ type ] );
+ }
+ return this;
+ }
+ if ( selector === false || typeof selector === "function" ) {
+
+ // ( types [, fn] )
+ fn = selector;
+ selector = undefined;
+ }
+ if ( fn === false ) {
+ fn = returnFalse;
+ }
+ return this.each( function() {
+ jQuery.event.remove( this, types, fn, selector );
+ } );
+ }
+} );
+
+
+var
+
+ // Support: IE <=10 - 11, Edge 12 - 13 only
+ // In IE/Edge using regex groups here causes severe slowdowns.
+ // See https://connect.microsoft.com/IE/feedback/details/1736512/
+ rnoInnerhtml = /
-
-
-
- @await RenderSectionAsync("Scripts", required: false)
-
-
diff --git a/Pages/Shared/_Layout.cshtml.css b/Pages/Shared/_Layout.cshtml.css
deleted file mode 100644
index c04d2df..0000000
--- a/Pages/Shared/_Layout.cshtml.css
+++ /dev/null
@@ -1,48 +0,0 @@
-/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
-for details on configuring this project to bundle and minify static web assets. */
-
-a.navbar-brand {
- white-space: normal;
- text-align: center;
- word-break: break-all;
-}
-
-a {
- color: #0077cc;
-}
-
-.btn-primary {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.border-top {
- border-top: 1px solid #e5e5e5;
-}
-.border-bottom {
- border-bottom: 1px solid #e5e5e5;
-}
-
-.box-shadow {
- box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
-}
-
-button.accept-policy {
- font-size: 1rem;
- line-height: inherit;
-}
-
-.footer {
- position: absolute;
- bottom: 0;
- width: 100%;
- white-space: nowrap;
- line-height: 60px;
-}
diff --git a/Pages/Shared/_ValidationScriptsPartial.cshtml b/Pages/Shared/_ValidationScriptsPartial.cshtml
deleted file mode 100644
index ff9c793..0000000
--- a/Pages/Shared/_ValidationScriptsPartial.cshtml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/Pages/Technologies.cshtml b/Pages/Technologies.cshtml
deleted file mode 100644
index f6ec953..0000000
--- a/Pages/Technologies.cshtml
+++ /dev/null
@@ -1,9 +0,0 @@
-@page
-@model MyApp.Namespace.TechnologiesModel
-@{
-}
-
-
-
Technologies
-
-
diff --git a/Pages/Technologies.cshtml.cs b/Pages/Technologies.cshtml.cs
deleted file mode 100644
index 353bba4..0000000
--- a/Pages/Technologies.cshtml.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.AspNetCore.Mvc.RazorPages;
-
-namespace MyApp.Namespace
-{
- public class TechnologiesModel : PageModel
- {
- public void OnGet()
- {
- }
- }
-}
diff --git a/Pages/_ViewImports.cshtml b/Pages/_ViewImports.cshtml
deleted file mode 100644
index d420d84..0000000
--- a/Pages/_ViewImports.cshtml
+++ /dev/null
@@ -1,3 +0,0 @@
-@using MyWebsite
-@namespace MyWebsite.Pages
-@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
diff --git a/Pages/_ViewStart.cshtml b/Pages/_ViewStart.cshtml
deleted file mode 100644
index 6e88aa3..0000000
--- a/Pages/_ViewStart.cshtml
+++ /dev/null
@@ -1,3 +0,0 @@
-@{
- Layout = "_Layout";
-}
diff --git a/Program.cs b/Program.cs
deleted file mode 100644
index b580f44..0000000
--- a/Program.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-var builder = WebApplication.CreateBuilder(args);
-
-// Add services to the container.
-builder.Services.AddRazorPages();
-
-var app = builder.Build();
-
-// Configure the HTTP request pipeline.
-if (!app.Environment.IsDevelopment())
-{
- app.UseExceptionHandler("/Error");
- // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
- app.UseHsts();
-}
-
-app.UseHttpsRedirection();
-app.UseStaticFiles();
-
-app.UseRouting();
-
-app.UseAuthorization();
-
-app.MapRazorPages();
-
-app.Run();
diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json
deleted file mode 100644
index 32b78cc..0000000
--- a/Properties/launchSettings.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "iisSettings": {
- "windowsAuthentication": false,
- "anonymousAuthentication": true,
- "iisExpress": {
- "applicationUrl": "http://localhost:30359",
- "sslPort": 44377
- }
- },
- "profiles": {
- "http": {
- "commandName": "Project",
- "dotnetRunMessages": true,
- "launchBrowser": true,
- "applicationUrl": "http://localhost:5244",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- },
- "https": {
- "commandName": "Project",
- "dotnetRunMessages": true,
- "launchBrowser": true,
- "applicationUrl": "https://localhost:7040;http://localhost:5244",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- },
- "IIS Express": {
- "commandName": "IISExpress",
- "launchBrowser": true,
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- }
- }
-}
diff --git a/Views/Contact.html b/Views/Contact.html
new file mode 100644
index 0000000..9fbf9b3
--- /dev/null
+++ b/Views/Contact.html
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+ Me contacter
+
+
+
+
+
+
+
+
+
+
+
Me contacter
+
+
+
+
Vous pouvez me contacter par téléphone et par courrier électronique
+
(450)278-0433
+
merlinge@tutanota.com
+
**Prévoir de 3 à 5 jours ouvrables pour recevoir une réponse**
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Views/Objectif.html b/Views/Objectif.html
new file mode 100644
index 0000000..3746e2e
--- /dev/null
+++ b/Views/Objectif.html
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+ Mes objectifs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Views/Portfolio.html b/Views/Portfolio.html
new file mode 100644
index 0000000..be0ded6
--- /dev/null
+++ b/Views/Portfolio.html
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+ Mes projets
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Views/Technologies.html b/Views/Technologies.html
new file mode 100644
index 0000000..9be808a
--- /dev/null
+++ b/Views/Technologies.html
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+ Technologies
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Views/footer.html b/Views/footer.html
new file mode 100644
index 0000000..934c09d
--- /dev/null
+++ b/Views/footer.html
@@ -0,0 +1,35 @@
+
\ No newline at end of file
diff --git a/Views/header.html b/Views/header.html
new file mode 100644
index 0000000..54f33f1
--- /dev/null
+++ b/Views/header.html
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/appsettings.Development.json b/appsettings.Development.json
deleted file mode 100644
index f042c67..0000000
--- a/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DetailedErrors": true,
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- }
-}
diff --git a/appsettings.json b/appsettings.json
deleted file mode 100644
index 4d56694..0000000
--- a/appsettings.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/bin/Debug/net7.0/MyWebsite b/bin/Debug/net7.0/MyWebsite
deleted file mode 100755
index 20dda4e..0000000
Binary files a/bin/Debug/net7.0/MyWebsite and /dev/null differ
diff --git a/bin/Debug/net7.0/MyWebsite.deps.json b/bin/Debug/net7.0/MyWebsite.deps.json
deleted file mode 100644
index d706b1b..0000000
--- a/bin/Debug/net7.0/MyWebsite.deps.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v7.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v7.0": {
- "MyWebsite/1.0.0": {
- "runtime": {
- "MyWebsite.dll": {}
- }
- }
- }
- },
- "libraries": {
- "MyWebsite/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/bin/Debug/net7.0/MyWebsite.dll b/bin/Debug/net7.0/MyWebsite.dll
deleted file mode 100644
index 6ece758..0000000
Binary files a/bin/Debug/net7.0/MyWebsite.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/MyWebsite.pdb b/bin/Debug/net7.0/MyWebsite.pdb
deleted file mode 100644
index 2361ee2..0000000
Binary files a/bin/Debug/net7.0/MyWebsite.pdb and /dev/null differ
diff --git a/bin/Debug/net7.0/MyWebsite.runtimeconfig.json b/bin/Debug/net7.0/MyWebsite.runtimeconfig.json
deleted file mode 100644
index f784548..0000000
--- a/bin/Debug/net7.0/MyWebsite.runtimeconfig.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net7.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "7.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "7.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/bin/Debug/net7.0/MyWebsite.staticwebassets.runtime.json b/bin/Debug/net7.0/MyWebsite.staticwebassets.runtime.json
deleted file mode 100644
index 49e7936..0000000
--- a/bin/Debug/net7.0/MyWebsite.staticwebassets.runtime.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["/home/merlin/MyWebsite/wwwroot/","/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/bundle/"],"Root":{"Children":{"Content":{"Children":{"Logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Content/Logo.png"},"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"Fonts":{"Children":{"JetBrainsMono-Regular.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Fonts/JetBrainsMono-Regular.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"FontAwesome":{"Children":{"css":{"Children":{"all.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/all.css"},"Patterns":null},"all.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/all.min.css"},"Patterns":null},"brands.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/brands.css"},"Patterns":null},"brands.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/brands.min.css"},"Patterns":null},"fontawesome.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/fontawesome.css"},"Patterns":null},"fontawesome.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/fontawesome.min.css"},"Patterns":null},"regular.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/regular.css"},"Patterns":null},"regular.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/regular.min.css"},"Patterns":null},"solid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/solid.css"},"Patterns":null},"solid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/solid.min.css"},"Patterns":null},"svg-with-js.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/svg-with-js.css"},"Patterns":null},"svg-with-js.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/svg-with-js.min.css"},"Patterns":null},"v4-font-face.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v4-font-face.css"},"Patterns":null},"v4-font-face.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v4-font-face.min.css"},"Patterns":null},"v4-shims.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v4-shims.css"},"Patterns":null},"v4-shims.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v4-shims.min.css"},"Patterns":null},"v5-font-face.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v5-font-face.css"},"Patterns":null},"v5-font-face.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v5-font-face.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"all.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/all.js"},"Patterns":null},"all.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/all.min.js"},"Patterns":null},"brands.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/brands.js"},"Patterns":null},"brands.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/brands.min.js"},"Patterns":null},"conflict-detection.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/conflict-detection.js"},"Patterns":null},"conflict-detection.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/conflict-detection.min.js"},"Patterns":null},"fontawesome.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/fontawesome.js"},"Patterns":null},"fontawesome.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/fontawesome.min.js"},"Patterns":null},"regular.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/regular.js"},"Patterns":null},"regular.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/regular.min.js"},"Patterns":null},"solid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/solid.js"},"Patterns":null},"solid.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/solid.min.js"},"Patterns":null},"v4-shims.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/v4-shims.js"},"Patterns":null},"v4-shims.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/v4-shims.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"less":{"Children":{"brands.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/brands.less"},"Patterns":null},"fontawesome.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/fontawesome.less"},"Patterns":null},"regular.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/regular.less"},"Patterns":null},"solid.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/solid.less"},"Patterns":null},"v4-shims.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/v4-shims.less"},"Patterns":null},"_animated.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_animated.less"},"Patterns":null},"_bordered-pulled.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_bordered-pulled.less"},"Patterns":null},"_core.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_core.less"},"Patterns":null},"_fixed-width.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_fixed-width.less"},"Patterns":null},"_icons.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_icons.less"},"Patterns":null},"_list.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_list.less"},"Patterns":null},"_mixins.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_mixins.less"},"Patterns":null},"_rotated-flipped.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_rotated-flipped.less"},"Patterns":null},"_screen-reader.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_screen-reader.less"},"Patterns":null},"_shims.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_shims.less"},"Patterns":null},"_sizing.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_sizing.less"},"Patterns":null},"_stacked.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_stacked.less"},"Patterns":null},"_variables.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_variables.less"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/LICENSE.txt"},"Patterns":null},"metadata":{"Children":{"categories.yml":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/categories.yml"},"Patterns":null},"icons.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/icons.json"},"Patterns":null},"icons.yml":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/icons.yml"},"Patterns":null},"shims.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/shims.json"},"Patterns":null},"shims.yml":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/shims.yml"},"Patterns":null},"sponsors.yml":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/sponsors.yml"},"Patterns":null}},"Asset":null,"Patterns":null},"scss":{"Children":{"brands.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/brands.scss"},"Patterns":null},"fontawesome.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/fontawesome.scss"},"Patterns":null},"regular.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/regular.scss"},"Patterns":null},"solid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/solid.scss"},"Patterns":null},"v4-shims.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/v4-shims.scss"},"Patterns":null},"_animated.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_animated.scss"},"Patterns":null},"_bordered-pulled.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_bordered-pulled.scss"},"Patterns":null},"_core.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_core.scss"},"Patterns":null},"_fixed-width.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_fixed-width.scss"},"Patterns":null},"_functions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_functions.scss"},"Patterns":null},"_icons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_icons.scss"},"Patterns":null},"_list.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_list.scss"},"Patterns":null},"_mixins.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_mixins.scss"},"Patterns":null},"_rotated-flipped.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_rotated-flipped.scss"},"Patterns":null},"_screen-reader.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_screen-reader.scss"},"Patterns":null},"_shims.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_shims.scss"},"Patterns":null},"_sizing.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_sizing.scss"},"Patterns":null},"_stacked.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_stacked.scss"},"Patterns":null},"_variables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_variables.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"sprites":{"Children":{"brands.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/sprites/brands.svg"},"Patterns":null},"regular.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/sprites/regular.svg"},"Patterns":null},"solid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/sprites/solid.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"svgs":{"Children":{"brands":{"Children":{"42-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/42-group.svg"},"Patterns":null},"500px.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/500px.svg"},"Patterns":null},"accessible-icon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/accessible-icon.svg"},"Patterns":null},"accusoft.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/accusoft.svg"},"Patterns":null},"adn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/adn.svg"},"Patterns":null},"adversal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/adversal.svg"},"Patterns":null},"affiliatetheme.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/affiliatetheme.svg"},"Patterns":null},"airbnb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/airbnb.svg"},"Patterns":null},"algolia.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/algolia.svg"},"Patterns":null},"alipay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/alipay.svg"},"Patterns":null},"amazon-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/amazon-pay.svg"},"Patterns":null},"amazon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/amazon.svg"},"Patterns":null},"amilia.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/amilia.svg"},"Patterns":null},"android.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/android.svg"},"Patterns":null},"angellist.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/angellist.svg"},"Patterns":null},"angrycreative.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/angrycreative.svg"},"Patterns":null},"angular.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/angular.svg"},"Patterns":null},"app-store-ios.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/app-store-ios.svg"},"Patterns":null},"app-store.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/app-store.svg"},"Patterns":null},"apper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/apper.svg"},"Patterns":null},"apple-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/apple-pay.svg"},"Patterns":null},"apple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/apple.svg"},"Patterns":null},"artstation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/artstation.svg"},"Patterns":null},"asymmetrik.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/asymmetrik.svg"},"Patterns":null},"atlassian.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/atlassian.svg"},"Patterns":null},"audible.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/audible.svg"},"Patterns":null},"autoprefixer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/autoprefixer.svg"},"Patterns":null},"avianex.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/avianex.svg"},"Patterns":null},"aviato.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/aviato.svg"},"Patterns":null},"aws.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/aws.svg"},"Patterns":null},"bandcamp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bandcamp.svg"},"Patterns":null},"battle-net.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/battle-net.svg"},"Patterns":null},"behance-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/behance-square.svg"},"Patterns":null},"behance.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/behance.svg"},"Patterns":null},"bilibili.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bilibili.svg"},"Patterns":null},"bimobject.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bimobject.svg"},"Patterns":null},"bitbucket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bitbucket.svg"},"Patterns":null},"bitcoin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bitcoin.svg"},"Patterns":null},"bity.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bity.svg"},"Patterns":null},"black-tie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/black-tie.svg"},"Patterns":null},"blackberry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/blackberry.svg"},"Patterns":null},"blogger-b.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/blogger-b.svg"},"Patterns":null},"blogger.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/blogger.svg"},"Patterns":null},"bluetooth-b.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bluetooth-b.svg"},"Patterns":null},"bluetooth.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bluetooth.svg"},"Patterns":null},"bootstrap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bootstrap.svg"},"Patterns":null},"bots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bots.svg"},"Patterns":null},"btc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/btc.svg"},"Patterns":null},"buffer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/buffer.svg"},"Patterns":null},"buromobelexperte.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/buromobelexperte.svg"},"Patterns":null},"buy-n-large.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/buy-n-large.svg"},"Patterns":null},"buysellads.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/buysellads.svg"},"Patterns":null},"canadian-maple-leaf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/canadian-maple-leaf.svg"},"Patterns":null},"cc-amazon-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-amazon-pay.svg"},"Patterns":null},"cc-amex.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-amex.svg"},"Patterns":null},"cc-apple-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-apple-pay.svg"},"Patterns":null},"cc-diners-club.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-diners-club.svg"},"Patterns":null},"cc-discover.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-discover.svg"},"Patterns":null},"cc-jcb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-jcb.svg"},"Patterns":null},"cc-mastercard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-mastercard.svg"},"Patterns":null},"cc-paypal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-paypal.svg"},"Patterns":null},"cc-stripe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-stripe.svg"},"Patterns":null},"cc-visa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-visa.svg"},"Patterns":null},"centercode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/centercode.svg"},"Patterns":null},"centos.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/centos.svg"},"Patterns":null},"chrome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/chrome.svg"},"Patterns":null},"chromecast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/chromecast.svg"},"Patterns":null},"cloudflare.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cloudflare.svg"},"Patterns":null},"cloudscale.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cloudscale.svg"},"Patterns":null},"cloudsmith.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cloudsmith.svg"},"Patterns":null},"cloudversify.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cloudversify.svg"},"Patterns":null},"cmplid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cmplid.svg"},"Patterns":null},"codepen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/codepen.svg"},"Patterns":null},"codiepie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/codiepie.svg"},"Patterns":null},"confluence.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/confluence.svg"},"Patterns":null},"connectdevelop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/connectdevelop.svg"},"Patterns":null},"contao.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/contao.svg"},"Patterns":null},"cotton-bureau.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cotton-bureau.svg"},"Patterns":null},"cpanel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cpanel.svg"},"Patterns":null},"creative-commons-by.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-by.svg"},"Patterns":null},"creative-commons-nc-eu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-nc-eu.svg"},"Patterns":null},"creative-commons-nc-jp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-nc-jp.svg"},"Patterns":null},"creative-commons-nc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-nc.svg"},"Patterns":null},"creative-commons-nd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-nd.svg"},"Patterns":null},"creative-commons-pd-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-pd-alt.svg"},"Patterns":null},"creative-commons-pd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-pd.svg"},"Patterns":null},"creative-commons-remix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-remix.svg"},"Patterns":null},"creative-commons-sa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-sa.svg"},"Patterns":null},"creative-commons-sampling-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-sampling-plus.svg"},"Patterns":null},"creative-commons-sampling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-sampling.svg"},"Patterns":null},"creative-commons-share.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-share.svg"},"Patterns":null},"creative-commons-zero.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-zero.svg"},"Patterns":null},"creative-commons.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons.svg"},"Patterns":null},"critical-role.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/critical-role.svg"},"Patterns":null},"css3-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/css3-alt.svg"},"Patterns":null},"css3.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/css3.svg"},"Patterns":null},"cuttlefish.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cuttlefish.svg"},"Patterns":null},"d-and-d-beyond.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/d-and-d-beyond.svg"},"Patterns":null},"d-and-d.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/d-and-d.svg"},"Patterns":null},"dailymotion.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dailymotion.svg"},"Patterns":null},"dashcube.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dashcube.svg"},"Patterns":null},"deezer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/deezer.svg"},"Patterns":null},"delicious.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/delicious.svg"},"Patterns":null},"deploydog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/deploydog.svg"},"Patterns":null},"deskpro.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/deskpro.svg"},"Patterns":null},"dev.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dev.svg"},"Patterns":null},"deviantart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/deviantart.svg"},"Patterns":null},"dhl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dhl.svg"},"Patterns":null},"diaspora.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/diaspora.svg"},"Patterns":null},"digg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/digg.svg"},"Patterns":null},"digital-ocean.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/digital-ocean.svg"},"Patterns":null},"discord.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/discord.svg"},"Patterns":null},"discourse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/discourse.svg"},"Patterns":null},"dochub.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dochub.svg"},"Patterns":null},"docker.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/docker.svg"},"Patterns":null},"draft2digital.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/draft2digital.svg"},"Patterns":null},"dribbble-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dribbble-square.svg"},"Patterns":null},"dribbble.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dribbble.svg"},"Patterns":null},"dropbox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dropbox.svg"},"Patterns":null},"drupal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/drupal.svg"},"Patterns":null},"dyalog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dyalog.svg"},"Patterns":null},"earlybirds.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/earlybirds.svg"},"Patterns":null},"ebay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ebay.svg"},"Patterns":null},"edge-legacy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/edge-legacy.svg"},"Patterns":null},"edge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/edge.svg"},"Patterns":null},"elementor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/elementor.svg"},"Patterns":null},"ello.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ello.svg"},"Patterns":null},"ember.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ember.svg"},"Patterns":null},"empire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/empire.svg"},"Patterns":null},"envira.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/envira.svg"},"Patterns":null},"erlang.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/erlang.svg"},"Patterns":null},"ethereum.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ethereum.svg"},"Patterns":null},"etsy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/etsy.svg"},"Patterns":null},"evernote.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/evernote.svg"},"Patterns":null},"expeditedssl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/expeditedssl.svg"},"Patterns":null},"facebook-f.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/facebook-f.svg"},"Patterns":null},"facebook-messenger.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/facebook-messenger.svg"},"Patterns":null},"facebook-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/facebook-square.svg"},"Patterns":null},"facebook.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/facebook.svg"},"Patterns":null},"fantasy-flight-games.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fantasy-flight-games.svg"},"Patterns":null},"fedex.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fedex.svg"},"Patterns":null},"fedora.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fedora.svg"},"Patterns":null},"figma.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/figma.svg"},"Patterns":null},"firefox-browser.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/firefox-browser.svg"},"Patterns":null},"firefox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/firefox.svg"},"Patterns":null},"first-order-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/first-order-alt.svg"},"Patterns":null},"first-order.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/first-order.svg"},"Patterns":null},"firstdraft.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/firstdraft.svg"},"Patterns":null},"flickr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/flickr.svg"},"Patterns":null},"flipboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/flipboard.svg"},"Patterns":null},"fly.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fly.svg"},"Patterns":null},"font-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/font-awesome.svg"},"Patterns":null},"fonticons-fi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fonticons-fi.svg"},"Patterns":null},"fonticons.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fonticons.svg"},"Patterns":null},"fort-awesome-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fort-awesome-alt.svg"},"Patterns":null},"fort-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fort-awesome.svg"},"Patterns":null},"forumbee.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/forumbee.svg"},"Patterns":null},"foursquare.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/foursquare.svg"},"Patterns":null},"free-code-camp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/free-code-camp.svg"},"Patterns":null},"freebsd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/freebsd.svg"},"Patterns":null},"fulcrum.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fulcrum.svg"},"Patterns":null},"galactic-republic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/galactic-republic.svg"},"Patterns":null},"galactic-senate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/galactic-senate.svg"},"Patterns":null},"get-pocket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/get-pocket.svg"},"Patterns":null},"gg-circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gg-circle.svg"},"Patterns":null},"gg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gg.svg"},"Patterns":null},"git-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/git-alt.svg"},"Patterns":null},"git-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/git-square.svg"},"Patterns":null},"git.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/git.svg"},"Patterns":null},"github-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/github-alt.svg"},"Patterns":null},"github-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/github-square.svg"},"Patterns":null},"github.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/github.svg"},"Patterns":null},"gitkraken.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gitkraken.svg"},"Patterns":null},"gitlab.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gitlab.svg"},"Patterns":null},"gitter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gitter.svg"},"Patterns":null},"glide-g.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/glide-g.svg"},"Patterns":null},"glide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/glide.svg"},"Patterns":null},"gofore.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gofore.svg"},"Patterns":null},"golang.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/golang.svg"},"Patterns":null},"goodreads-g.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/goodreads-g.svg"},"Patterns":null},"goodreads.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/goodreads.svg"},"Patterns":null},"google-drive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-drive.svg"},"Patterns":null},"google-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-pay.svg"},"Patterns":null},"google-play.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-play.svg"},"Patterns":null},"google-plus-g.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-plus-g.svg"},"Patterns":null},"google-plus-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-plus-square.svg"},"Patterns":null},"google-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-plus.svg"},"Patterns":null},"google-wallet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-wallet.svg"},"Patterns":null},"google.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google.svg"},"Patterns":null},"gratipay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gratipay.svg"},"Patterns":null},"grav.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/grav.svg"},"Patterns":null},"gripfire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gripfire.svg"},"Patterns":null},"grunt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/grunt.svg"},"Patterns":null},"guilded.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/guilded.svg"},"Patterns":null},"gulp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gulp.svg"},"Patterns":null},"hacker-news-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hacker-news-square.svg"},"Patterns":null},"hacker-news.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hacker-news.svg"},"Patterns":null},"hackerrank.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hackerrank.svg"},"Patterns":null},"hashnode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hashnode.svg"},"Patterns":null},"hips.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hips.svg"},"Patterns":null},"hire-a-helper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hire-a-helper.svg"},"Patterns":null},"hive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hive.svg"},"Patterns":null},"hooli.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hooli.svg"},"Patterns":null},"hornbill.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hornbill.svg"},"Patterns":null},"hotjar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hotjar.svg"},"Patterns":null},"houzz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/houzz.svg"},"Patterns":null},"html5.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/html5.svg"},"Patterns":null},"hubspot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hubspot.svg"},"Patterns":null},"ideal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ideal.svg"},"Patterns":null},"imdb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/imdb.svg"},"Patterns":null},"instagram-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/instagram-square.svg"},"Patterns":null},"instagram.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/instagram.svg"},"Patterns":null},"instalod.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/instalod.svg"},"Patterns":null},"intercom.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/intercom.svg"},"Patterns":null},"internet-explorer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/internet-explorer.svg"},"Patterns":null},"invision.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/invision.svg"},"Patterns":null},"ioxhost.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ioxhost.svg"},"Patterns":null},"itch-io.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/itch-io.svg"},"Patterns":null},"itunes-note.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/itunes-note.svg"},"Patterns":null},"itunes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/itunes.svg"},"Patterns":null},"java.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/java.svg"},"Patterns":null},"jedi-order.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/jedi-order.svg"},"Patterns":null},"jenkins.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/jenkins.svg"},"Patterns":null},"jira.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/jira.svg"},"Patterns":null},"joget.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/joget.svg"},"Patterns":null},"joomla.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/joomla.svg"},"Patterns":null},"js-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/js-square.svg"},"Patterns":null},"js.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/js.svg"},"Patterns":null},"jsfiddle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/jsfiddle.svg"},"Patterns":null},"kaggle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/kaggle.svg"},"Patterns":null},"keybase.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/keybase.svg"},"Patterns":null},"keycdn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/keycdn.svg"},"Patterns":null},"kickstarter-k.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/kickstarter-k.svg"},"Patterns":null},"kickstarter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/kickstarter.svg"},"Patterns":null},"korvue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/korvue.svg"},"Patterns":null},"laravel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/laravel.svg"},"Patterns":null},"lastfm-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/lastfm-square.svg"},"Patterns":null},"lastfm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/lastfm.svg"},"Patterns":null},"leanpub.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/leanpub.svg"},"Patterns":null},"less.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/less.svg"},"Patterns":null},"line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/line.svg"},"Patterns":null},"linkedin-in.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/linkedin-in.svg"},"Patterns":null},"linkedin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/linkedin.svg"},"Patterns":null},"linode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/linode.svg"},"Patterns":null},"linux.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/linux.svg"},"Patterns":null},"lyft.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/lyft.svg"},"Patterns":null},"magento.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/magento.svg"},"Patterns":null},"mailchimp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mailchimp.svg"},"Patterns":null},"mandalorian.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mandalorian.svg"},"Patterns":null},"markdown.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/markdown.svg"},"Patterns":null},"mastodon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mastodon.svg"},"Patterns":null},"maxcdn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/maxcdn.svg"},"Patterns":null},"mdb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mdb.svg"},"Patterns":null},"medapps.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/medapps.svg"},"Patterns":null},"medium.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/medium.svg"},"Patterns":null},"medrt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/medrt.svg"},"Patterns":null},"meetup.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/meetup.svg"},"Patterns":null},"megaport.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/megaport.svg"},"Patterns":null},"mendeley.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mendeley.svg"},"Patterns":null},"microblog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/microblog.svg"},"Patterns":null},"microsoft.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/microsoft.svg"},"Patterns":null},"mix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mix.svg"},"Patterns":null},"mixcloud.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mixcloud.svg"},"Patterns":null},"mixer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mixer.svg"},"Patterns":null},"mizuni.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mizuni.svg"},"Patterns":null},"modx.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/modx.svg"},"Patterns":null},"monero.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/monero.svg"},"Patterns":null},"napster.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/napster.svg"},"Patterns":null},"neos.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/neos.svg"},"Patterns":null},"nfc-directional.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/nfc-directional.svg"},"Patterns":null},"nfc-symbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/nfc-symbol.svg"},"Patterns":null},"nimblr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/nimblr.svg"},"Patterns":null},"node-js.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/node-js.svg"},"Patterns":null},"node.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/node.svg"},"Patterns":null},"npm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/npm.svg"},"Patterns":null},"ns8.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ns8.svg"},"Patterns":null},"nutritionix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/nutritionix.svg"},"Patterns":null},"octopus-deploy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/octopus-deploy.svg"},"Patterns":null},"odnoklassniki-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/odnoklassniki-square.svg"},"Patterns":null},"odnoklassniki.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/odnoklassniki.svg"},"Patterns":null},"old-republic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/old-republic.svg"},"Patterns":null},"opencart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/opencart.svg"},"Patterns":null},"openid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/openid.svg"},"Patterns":null},"opera.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/opera.svg"},"Patterns":null},"optin-monster.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/optin-monster.svg"},"Patterns":null},"orcid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/orcid.svg"},"Patterns":null},"osi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/osi.svg"},"Patterns":null},"padlet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/padlet.svg"},"Patterns":null},"page4.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/page4.svg"},"Patterns":null},"pagelines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pagelines.svg"},"Patterns":null},"palfed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/palfed.svg"},"Patterns":null},"patreon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/patreon.svg"},"Patterns":null},"paypal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/paypal.svg"},"Patterns":null},"perbyte.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/perbyte.svg"},"Patterns":null},"periscope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/periscope.svg"},"Patterns":null},"phabricator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/phabricator.svg"},"Patterns":null},"phoenix-framework.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/phoenix-framework.svg"},"Patterns":null},"phoenix-squadron.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/phoenix-squadron.svg"},"Patterns":null},"php.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/php.svg"},"Patterns":null},"pied-piper-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper-alt.svg"},"Patterns":null},"pied-piper-hat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper-hat.svg"},"Patterns":null},"pied-piper-pp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper-pp.svg"},"Patterns":null},"pied-piper-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper-square.svg"},"Patterns":null},"pied-piper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper.svg"},"Patterns":null},"pinterest-p.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pinterest-p.svg"},"Patterns":null},"pinterest-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pinterest-square.svg"},"Patterns":null},"pinterest.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pinterest.svg"},"Patterns":null},"pix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pix.svg"},"Patterns":null},"playstation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/playstation.svg"},"Patterns":null},"product-hunt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/product-hunt.svg"},"Patterns":null},"pushed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pushed.svg"},"Patterns":null},"python.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/python.svg"},"Patterns":null},"qq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/qq.svg"},"Patterns":null},"quinscape.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/quinscape.svg"},"Patterns":null},"quora.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/quora.svg"},"Patterns":null},"r-project.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/r-project.svg"},"Patterns":null},"raspberry-pi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/raspberry-pi.svg"},"Patterns":null},"ravelry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ravelry.svg"},"Patterns":null},"react.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/react.svg"},"Patterns":null},"reacteurope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/reacteurope.svg"},"Patterns":null},"readme.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/readme.svg"},"Patterns":null},"rebel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rebel.svg"},"Patterns":null},"red-river.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/red-river.svg"},"Patterns":null},"reddit-alien.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/reddit-alien.svg"},"Patterns":null},"reddit-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/reddit-square.svg"},"Patterns":null},"reddit.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/reddit.svg"},"Patterns":null},"redhat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/redhat.svg"},"Patterns":null},"renren.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/renren.svg"},"Patterns":null},"replyd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/replyd.svg"},"Patterns":null},"researchgate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/researchgate.svg"},"Patterns":null},"resolving.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/resolving.svg"},"Patterns":null},"rev.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rev.svg"},"Patterns":null},"rocketchat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rocketchat.svg"},"Patterns":null},"rockrms.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rockrms.svg"},"Patterns":null},"rust.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rust.svg"},"Patterns":null},"safari.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/safari.svg"},"Patterns":null},"salesforce.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/salesforce.svg"},"Patterns":null},"sass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sass.svg"},"Patterns":null},"schlix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/schlix.svg"},"Patterns":null},"screenpal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/screenpal.svg"},"Patterns":null},"scribd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/scribd.svg"},"Patterns":null},"searchengin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/searchengin.svg"},"Patterns":null},"sellcast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sellcast.svg"},"Patterns":null},"sellsy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sellsy.svg"},"Patterns":null},"servicestack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/servicestack.svg"},"Patterns":null},"shirtsinbulk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/shirtsinbulk.svg"},"Patterns":null},"shopify.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/shopify.svg"},"Patterns":null},"shopware.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/shopware.svg"},"Patterns":null},"simplybuilt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/simplybuilt.svg"},"Patterns":null},"sistrix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sistrix.svg"},"Patterns":null},"sith.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sith.svg"},"Patterns":null},"sitrox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sitrox.svg"},"Patterns":null},"sketch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sketch.svg"},"Patterns":null},"skyatlas.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/skyatlas.svg"},"Patterns":null},"skype.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/skype.svg"},"Patterns":null},"slack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/slack.svg"},"Patterns":null},"slideshare.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/slideshare.svg"},"Patterns":null},"snapchat-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/snapchat-square.svg"},"Patterns":null},"snapchat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/snapchat.svg"},"Patterns":null},"soundcloud.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/soundcloud.svg"},"Patterns":null},"sourcetree.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sourcetree.svg"},"Patterns":null},"speakap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/speakap.svg"},"Patterns":null},"speaker-deck.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/speaker-deck.svg"},"Patterns":null},"spotify.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/spotify.svg"},"Patterns":null},"square-font-awesome-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/square-font-awesome-stroke.svg"},"Patterns":null},"square-font-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/square-font-awesome.svg"},"Patterns":null},"squarespace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/squarespace.svg"},"Patterns":null},"stack-exchange.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stack-exchange.svg"},"Patterns":null},"stack-overflow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stack-overflow.svg"},"Patterns":null},"stackpath.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stackpath.svg"},"Patterns":null},"staylinked.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/staylinked.svg"},"Patterns":null},"steam-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/steam-square.svg"},"Patterns":null},"steam-symbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/steam-symbol.svg"},"Patterns":null},"steam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/steam.svg"},"Patterns":null},"sticker-mule.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sticker-mule.svg"},"Patterns":null},"strava.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/strava.svg"},"Patterns":null},"stripe-s.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stripe-s.svg"},"Patterns":null},"stripe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stripe.svg"},"Patterns":null},"studiovinari.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/studiovinari.svg"},"Patterns":null},"stumbleupon-circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stumbleupon-circle.svg"},"Patterns":null},"stumbleupon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stumbleupon.svg"},"Patterns":null},"superpowers.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/superpowers.svg"},"Patterns":null},"supple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/supple.svg"},"Patterns":null},"suse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/suse.svg"},"Patterns":null},"swift.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/swift.svg"},"Patterns":null},"symfony.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/symfony.svg"},"Patterns":null},"teamspeak.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/teamspeak.svg"},"Patterns":null},"telegram.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/telegram.svg"},"Patterns":null},"tencent-weibo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/tencent-weibo.svg"},"Patterns":null},"the-red-yeti.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/the-red-yeti.svg"},"Patterns":null},"themeco.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/themeco.svg"},"Patterns":null},"themeisle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/themeisle.svg"},"Patterns":null},"think-peaks.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/think-peaks.svg"},"Patterns":null},"tiktok.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/tiktok.svg"},"Patterns":null},"trade-federation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/trade-federation.svg"},"Patterns":null},"trello.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/trello.svg"},"Patterns":null},"tumblr-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/tumblr-square.svg"},"Patterns":null},"tumblr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/tumblr.svg"},"Patterns":null},"twitch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/twitch.svg"},"Patterns":null},"twitter-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/twitter-square.svg"},"Patterns":null},"twitter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/twitter.svg"},"Patterns":null},"typo3.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/typo3.svg"},"Patterns":null},"uber.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/uber.svg"},"Patterns":null},"ubuntu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ubuntu.svg"},"Patterns":null},"uikit.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/uikit.svg"},"Patterns":null},"umbraco.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/umbraco.svg"},"Patterns":null},"uncharted.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/uncharted.svg"},"Patterns":null},"uniregistry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/uniregistry.svg"},"Patterns":null},"unity.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/unity.svg"},"Patterns":null},"unsplash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/unsplash.svg"},"Patterns":null},"untappd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/untappd.svg"},"Patterns":null},"ups.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ups.svg"},"Patterns":null},"usb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/usb.svg"},"Patterns":null},"usps.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/usps.svg"},"Patterns":null},"ussunnah.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ussunnah.svg"},"Patterns":null},"vaadin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vaadin.svg"},"Patterns":null},"viacoin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/viacoin.svg"},"Patterns":null},"viadeo-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/viadeo-square.svg"},"Patterns":null},"viadeo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/viadeo.svg"},"Patterns":null},"viber.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/viber.svg"},"Patterns":null},"vimeo-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vimeo-square.svg"},"Patterns":null},"vimeo-v.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vimeo-v.svg"},"Patterns":null},"vimeo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vimeo.svg"},"Patterns":null},"vine.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vine.svg"},"Patterns":null},"vk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vk.svg"},"Patterns":null},"vnv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vnv.svg"},"Patterns":null},"vuejs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vuejs.svg"},"Patterns":null},"watchman-monitoring.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/watchman-monitoring.svg"},"Patterns":null},"waze.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/waze.svg"},"Patterns":null},"weebly.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/weebly.svg"},"Patterns":null},"weibo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/weibo.svg"},"Patterns":null},"weixin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/weixin.svg"},"Patterns":null},"whatsapp-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/whatsapp-square.svg"},"Patterns":null},"whatsapp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/whatsapp.svg"},"Patterns":null},"whmcs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/whmcs.svg"},"Patterns":null},"wikipedia-w.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wikipedia-w.svg"},"Patterns":null},"windows.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/windows.svg"},"Patterns":null},"wirsindhandwerk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wirsindhandwerk.svg"},"Patterns":null},"wix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wix.svg"},"Patterns":null},"wizards-of-the-coast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wizards-of-the-coast.svg"},"Patterns":null},"wodu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wodu.svg"},"Patterns":null},"wolf-pack-battalion.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wolf-pack-battalion.svg"},"Patterns":null},"wordpress-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wordpress-simple.svg"},"Patterns":null},"wordpress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wordpress.svg"},"Patterns":null},"wpbeginner.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wpbeginner.svg"},"Patterns":null},"wpexplorer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wpexplorer.svg"},"Patterns":null},"wpforms.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wpforms.svg"},"Patterns":null},"wpressr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wpressr.svg"},"Patterns":null},"xbox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/xbox.svg"},"Patterns":null},"xing-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/xing-square.svg"},"Patterns":null},"xing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/xing.svg"},"Patterns":null},"y-combinator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/y-combinator.svg"},"Patterns":null},"yahoo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yahoo.svg"},"Patterns":null},"yammer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yammer.svg"},"Patterns":null},"yandex-international.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yandex-international.svg"},"Patterns":null},"yandex.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yandex.svg"},"Patterns":null},"yarn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yarn.svg"},"Patterns":null},"yelp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yelp.svg"},"Patterns":null},"yoast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yoast.svg"},"Patterns":null},"youtube-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/youtube-square.svg"},"Patterns":null},"youtube.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/youtube.svg"},"Patterns":null},"zhihu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/zhihu.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"regular":{"Children":{"address-book.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/address-book.svg"},"Patterns":null},"address-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/address-card.svg"},"Patterns":null},"bell-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/bell-slash.svg"},"Patterns":null},"bell.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/bell.svg"},"Patterns":null},"bookmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/bookmark.svg"},"Patterns":null},"building.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/building.svg"},"Patterns":null},"calendar-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-check.svg"},"Patterns":null},"calendar-days.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-days.svg"},"Patterns":null},"calendar-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-minus.svg"},"Patterns":null},"calendar-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-plus.svg"},"Patterns":null},"calendar-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-xmark.svg"},"Patterns":null},"calendar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar.svg"},"Patterns":null},"chart-bar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chart-bar.svg"},"Patterns":null},"chess-bishop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-bishop.svg"},"Patterns":null},"chess-king.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-king.svg"},"Patterns":null},"chess-knight.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-knight.svg"},"Patterns":null},"chess-pawn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-pawn.svg"},"Patterns":null},"chess-queen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-queen.svg"},"Patterns":null},"chess-rook.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-rook.svg"},"Patterns":null},"circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-check.svg"},"Patterns":null},"circle-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-dot.svg"},"Patterns":null},"circle-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-down.svg"},"Patterns":null},"circle-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-left.svg"},"Patterns":null},"circle-pause.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-pause.svg"},"Patterns":null},"circle-play.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-play.svg"},"Patterns":null},"circle-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-question.svg"},"Patterns":null},"circle-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-right.svg"},"Patterns":null},"circle-stop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-stop.svg"},"Patterns":null},"circle-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-up.svg"},"Patterns":null},"circle-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-user.svg"},"Patterns":null},"circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-xmark.svg"},"Patterns":null},"circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle.svg"},"Patterns":null},"clipboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/clipboard.svg"},"Patterns":null},"clock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/clock.svg"},"Patterns":null},"clone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/clone.svg"},"Patterns":null},"closed-captioning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/closed-captioning.svg"},"Patterns":null},"comment-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/comment-dots.svg"},"Patterns":null},"comment.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/comment.svg"},"Patterns":null},"comments.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/comments.svg"},"Patterns":null},"compass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/compass.svg"},"Patterns":null},"copy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/copy.svg"},"Patterns":null},"copyright.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/copyright.svg"},"Patterns":null},"credit-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/credit-card.svg"},"Patterns":null},"envelope-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/envelope-open.svg"},"Patterns":null},"envelope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/envelope.svg"},"Patterns":null},"eye-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/eye-slash.svg"},"Patterns":null},"eye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/eye.svg"},"Patterns":null},"face-angry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-angry.svg"},"Patterns":null},"face-dizzy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-dizzy.svg"},"Patterns":null},"face-flushed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-flushed.svg"},"Patterns":null},"face-frown-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-frown-open.svg"},"Patterns":null},"face-frown.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-frown.svg"},"Patterns":null},"face-grimace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grimace.svg"},"Patterns":null},"face-grin-beam-sweat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-beam-sweat.svg"},"Patterns":null},"face-grin-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-beam.svg"},"Patterns":null},"face-grin-hearts.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-hearts.svg"},"Patterns":null},"face-grin-squint-tears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-squint-tears.svg"},"Patterns":null},"face-grin-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-squint.svg"},"Patterns":null},"face-grin-stars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-stars.svg"},"Patterns":null},"face-grin-tears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-tears.svg"},"Patterns":null},"face-grin-tongue-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-tongue-squint.svg"},"Patterns":null},"face-grin-tongue-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-tongue-wink.svg"},"Patterns":null},"face-grin-tongue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-tongue.svg"},"Patterns":null},"face-grin-wide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-wide.svg"},"Patterns":null},"face-grin-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-wink.svg"},"Patterns":null},"face-grin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin.svg"},"Patterns":null},"face-kiss-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-kiss-beam.svg"},"Patterns":null},"face-kiss-wink-heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-kiss-wink-heart.svg"},"Patterns":null},"face-kiss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-kiss.svg"},"Patterns":null},"face-laugh-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-laugh-beam.svg"},"Patterns":null},"face-laugh-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-laugh-squint.svg"},"Patterns":null},"face-laugh-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-laugh-wink.svg"},"Patterns":null},"face-laugh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-laugh.svg"},"Patterns":null},"face-meh-blank.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-meh-blank.svg"},"Patterns":null},"face-meh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-meh.svg"},"Patterns":null},"face-rolling-eyes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-rolling-eyes.svg"},"Patterns":null},"face-sad-cry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-sad-cry.svg"},"Patterns":null},"face-sad-tear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-sad-tear.svg"},"Patterns":null},"face-smile-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-smile-beam.svg"},"Patterns":null},"face-smile-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-smile-wink.svg"},"Patterns":null},"face-smile.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-smile.svg"},"Patterns":null},"face-surprise.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-surprise.svg"},"Patterns":null},"face-tired.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-tired.svg"},"Patterns":null},"file-audio.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-audio.svg"},"Patterns":null},"file-code.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-code.svg"},"Patterns":null},"file-excel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-excel.svg"},"Patterns":null},"file-image.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-image.svg"},"Patterns":null},"file-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-lines.svg"},"Patterns":null},"file-pdf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-pdf.svg"},"Patterns":null},"file-powerpoint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-powerpoint.svg"},"Patterns":null},"file-video.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-video.svg"},"Patterns":null},"file-word.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-word.svg"},"Patterns":null},"file-zipper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-zipper.svg"},"Patterns":null},"file.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file.svg"},"Patterns":null},"flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/flag.svg"},"Patterns":null},"floppy-disk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/floppy-disk.svg"},"Patterns":null},"folder-closed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/folder-closed.svg"},"Patterns":null},"folder-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/folder-open.svg"},"Patterns":null},"folder.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/folder.svg"},"Patterns":null},"font-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/font-awesome.svg"},"Patterns":null},"futbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/futbol.svg"},"Patterns":null},"gem.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/gem.svg"},"Patterns":null},"hand-back-fist.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-back-fist.svg"},"Patterns":null},"hand-lizard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-lizard.svg"},"Patterns":null},"hand-peace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-peace.svg"},"Patterns":null},"hand-point-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-point-down.svg"},"Patterns":null},"hand-point-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-point-left.svg"},"Patterns":null},"hand-point-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-point-right.svg"},"Patterns":null},"hand-point-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-point-up.svg"},"Patterns":null},"hand-pointer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-pointer.svg"},"Patterns":null},"hand-scissors.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-scissors.svg"},"Patterns":null},"hand-spock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-spock.svg"},"Patterns":null},"hand.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand.svg"},"Patterns":null},"handshake.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/handshake.svg"},"Patterns":null},"hard-drive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hard-drive.svg"},"Patterns":null},"heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/heart.svg"},"Patterns":null},"hospital.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hospital.svg"},"Patterns":null},"hourglass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hourglass.svg"},"Patterns":null},"id-badge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/id-badge.svg"},"Patterns":null},"id-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/id-card.svg"},"Patterns":null},"image.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/image.svg"},"Patterns":null},"images.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/images.svg"},"Patterns":null},"keyboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/keyboard.svg"},"Patterns":null},"lemon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/lemon.svg"},"Patterns":null},"life-ring.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/life-ring.svg"},"Patterns":null},"lightbulb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/lightbulb.svg"},"Patterns":null},"map.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/map.svg"},"Patterns":null},"message.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/message.svg"},"Patterns":null},"money-bill-1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/money-bill-1.svg"},"Patterns":null},"moon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/moon.svg"},"Patterns":null},"newspaper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/newspaper.svg"},"Patterns":null},"note-sticky.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/note-sticky.svg"},"Patterns":null},"object-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/object-group.svg"},"Patterns":null},"object-ungroup.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/object-ungroup.svg"},"Patterns":null},"paper-plane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/paper-plane.svg"},"Patterns":null},"paste.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/paste.svg"},"Patterns":null},"pen-to-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/pen-to-square.svg"},"Patterns":null},"rectangle-list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/rectangle-list.svg"},"Patterns":null},"rectangle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/rectangle-xmark.svg"},"Patterns":null},"registered.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/registered.svg"},"Patterns":null},"share-from-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/share-from-square.svg"},"Patterns":null},"snowflake.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/snowflake.svg"},"Patterns":null},"square-caret-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-caret-down.svg"},"Patterns":null},"square-caret-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-caret-left.svg"},"Patterns":null},"square-caret-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-caret-right.svg"},"Patterns":null},"square-caret-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-caret-up.svg"},"Patterns":null},"square-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-check.svg"},"Patterns":null},"square-full.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-full.svg"},"Patterns":null},"square-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-minus.svg"},"Patterns":null},"square-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-plus.svg"},"Patterns":null},"square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square.svg"},"Patterns":null},"star-half-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/star-half-stroke.svg"},"Patterns":null},"star-half.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/star-half.svg"},"Patterns":null},"star.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/star.svg"},"Patterns":null},"sun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/sun.svg"},"Patterns":null},"thumbs-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/thumbs-down.svg"},"Patterns":null},"thumbs-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/thumbs-up.svg"},"Patterns":null},"trash-can.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/trash-can.svg"},"Patterns":null},"user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/user.svg"},"Patterns":null},"window-maximize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/window-maximize.svg"},"Patterns":null},"window-minimize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/window-minimize.svg"},"Patterns":null},"window-restore.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/window-restore.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"solid":{"Children":{"0.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/0.svg"},"Patterns":null},"1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/1.svg"},"Patterns":null},"2.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/2.svg"},"Patterns":null},"3.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/3.svg"},"Patterns":null},"4.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/4.svg"},"Patterns":null},"5.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/5.svg"},"Patterns":null},"6.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/6.svg"},"Patterns":null},"7.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/7.svg"},"Patterns":null},"8.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/8.svg"},"Patterns":null},"9.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/9.svg"},"Patterns":null},"a.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/a.svg"},"Patterns":null},"address-book.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/address-book.svg"},"Patterns":null},"address-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/address-card.svg"},"Patterns":null},"align-center.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/align-center.svg"},"Patterns":null},"align-justify.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/align-justify.svg"},"Patterns":null},"align-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/align-left.svg"},"Patterns":null},"align-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/align-right.svg"},"Patterns":null},"anchor-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor-circle-check.svg"},"Patterns":null},"anchor-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor-circle-exclamation.svg"},"Patterns":null},"anchor-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor-circle-xmark.svg"},"Patterns":null},"anchor-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor-lock.svg"},"Patterns":null},"anchor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor.svg"},"Patterns":null},"angle-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angle-down.svg"},"Patterns":null},"angle-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angle-left.svg"},"Patterns":null},"angle-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angle-right.svg"},"Patterns":null},"angle-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angle-up.svg"},"Patterns":null},"angles-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angles-down.svg"},"Patterns":null},"angles-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angles-left.svg"},"Patterns":null},"angles-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angles-right.svg"},"Patterns":null},"angles-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angles-up.svg"},"Patterns":null},"ankh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ankh.svg"},"Patterns":null},"apple-whole.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/apple-whole.svg"},"Patterns":null},"archway.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/archway.svg"},"Patterns":null},"arrow-down-1-9.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-1-9.svg"},"Patterns":null},"arrow-down-9-1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-9-1.svg"},"Patterns":null},"arrow-down-a-z.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-a-z.svg"},"Patterns":null},"arrow-down-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-long.svg"},"Patterns":null},"arrow-down-short-wide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-short-wide.svg"},"Patterns":null},"arrow-down-up-across-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-up-across-line.svg"},"Patterns":null},"arrow-down-up-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-up-lock.svg"},"Patterns":null},"arrow-down-wide-short.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-wide-short.svg"},"Patterns":null},"arrow-down-z-a.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-z-a.svg"},"Patterns":null},"arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down.svg"},"Patterns":null},"arrow-left-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-left-long.svg"},"Patterns":null},"arrow-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-left.svg"},"Patterns":null},"arrow-pointer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-pointer.svg"},"Patterns":null},"arrow-right-arrow-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-arrow-left.svg"},"Patterns":null},"arrow-right-from-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-from-bracket.svg"},"Patterns":null},"arrow-right-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-long.svg"},"Patterns":null},"arrow-right-to-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-to-bracket.svg"},"Patterns":null},"arrow-right-to-city.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-to-city.svg"},"Patterns":null},"arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right.svg"},"Patterns":null},"arrow-rotate-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-rotate-left.svg"},"Patterns":null},"arrow-rotate-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-rotate-right.svg"},"Patterns":null},"arrow-trend-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-trend-down.svg"},"Patterns":null},"arrow-trend-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-trend-up.svg"},"Patterns":null},"arrow-turn-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-turn-down.svg"},"Patterns":null},"arrow-turn-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-turn-up.svg"},"Patterns":null},"arrow-up-1-9.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-1-9.svg"},"Patterns":null},"arrow-up-9-1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-9-1.svg"},"Patterns":null},"arrow-up-a-z.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-a-z.svg"},"Patterns":null},"arrow-up-from-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-from-bracket.svg"},"Patterns":null},"arrow-up-from-ground-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-from-ground-water.svg"},"Patterns":null},"arrow-up-from-water-pump.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-from-water-pump.svg"},"Patterns":null},"arrow-up-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-long.svg"},"Patterns":null},"arrow-up-right-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-right-dots.svg"},"Patterns":null},"arrow-up-right-from-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-right-from-square.svg"},"Patterns":null},"arrow-up-short-wide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-short-wide.svg"},"Patterns":null},"arrow-up-wide-short.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-wide-short.svg"},"Patterns":null},"arrow-up-z-a.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-z-a.svg"},"Patterns":null},"arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up.svg"},"Patterns":null},"arrows-down-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-down-to-line.svg"},"Patterns":null},"arrows-down-to-people.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-down-to-people.svg"},"Patterns":null},"arrows-left-right-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-left-right-to-line.svg"},"Patterns":null},"arrows-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-left-right.svg"},"Patterns":null},"arrows-rotate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-rotate.svg"},"Patterns":null},"arrows-spin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-spin.svg"},"Patterns":null},"arrows-split-up-and-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-split-up-and-left.svg"},"Patterns":null},"arrows-to-circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-to-circle.svg"},"Patterns":null},"arrows-to-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-to-dot.svg"},"Patterns":null},"arrows-to-eye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-to-eye.svg"},"Patterns":null},"arrows-turn-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-turn-right.svg"},"Patterns":null},"arrows-turn-to-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-turn-to-dots.svg"},"Patterns":null},"arrows-up-down-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-up-down-left-right.svg"},"Patterns":null},"arrows-up-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-up-down.svg"},"Patterns":null},"arrows-up-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-up-to-line.svg"},"Patterns":null},"asterisk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/asterisk.svg"},"Patterns":null},"at.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/at.svg"},"Patterns":null},"atom.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/atom.svg"},"Patterns":null},"audio-description.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/audio-description.svg"},"Patterns":null},"austral-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/austral-sign.svg"},"Patterns":null},"award.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/award.svg"},"Patterns":null},"b.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/b.svg"},"Patterns":null},"baby-carriage.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baby-carriage.svg"},"Patterns":null},"baby.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baby.svg"},"Patterns":null},"backward-fast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/backward-fast.svg"},"Patterns":null},"backward-step.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/backward-step.svg"},"Patterns":null},"backward.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/backward.svg"},"Patterns":null},"bacon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bacon.svg"},"Patterns":null},"bacteria.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bacteria.svg"},"Patterns":null},"bacterium.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bacterium.svg"},"Patterns":null},"bag-shopping.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bag-shopping.svg"},"Patterns":null},"bahai.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bahai.svg"},"Patterns":null},"baht-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baht-sign.svg"},"Patterns":null},"ban-smoking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ban-smoking.svg"},"Patterns":null},"ban.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ban.svg"},"Patterns":null},"bandage.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bandage.svg"},"Patterns":null},"barcode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/barcode.svg"},"Patterns":null},"bars-progress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bars-progress.svg"},"Patterns":null},"bars-staggered.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bars-staggered.svg"},"Patterns":null},"bars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bars.svg"},"Patterns":null},"baseball-bat-ball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baseball-bat-ball.svg"},"Patterns":null},"baseball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baseball.svg"},"Patterns":null},"basket-shopping.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/basket-shopping.svg"},"Patterns":null},"basketball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/basketball.svg"},"Patterns":null},"bath.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bath.svg"},"Patterns":null},"battery-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-empty.svg"},"Patterns":null},"battery-full.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-full.svg"},"Patterns":null},"battery-half.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-half.svg"},"Patterns":null},"battery-quarter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-quarter.svg"},"Patterns":null},"battery-three-quarters.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-three-quarters.svg"},"Patterns":null},"bed-pulse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bed-pulse.svg"},"Patterns":null},"bed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bed.svg"},"Patterns":null},"beer-mug-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/beer-mug-empty.svg"},"Patterns":null},"bell-concierge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bell-concierge.svg"},"Patterns":null},"bell-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bell-slash.svg"},"Patterns":null},"bell.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bell.svg"},"Patterns":null},"bezier-curve.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bezier-curve.svg"},"Patterns":null},"bicycle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bicycle.svg"},"Patterns":null},"binoculars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/binoculars.svg"},"Patterns":null},"biohazard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/biohazard.svg"},"Patterns":null},"bitcoin-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bitcoin-sign.svg"},"Patterns":null},"blender-phone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/blender-phone.svg"},"Patterns":null},"blender.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/blender.svg"},"Patterns":null},"blog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/blog.svg"},"Patterns":null},"bold.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bold.svg"},"Patterns":null},"bolt-lightning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bolt-lightning.svg"},"Patterns":null},"bolt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bolt.svg"},"Patterns":null},"bomb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bomb.svg"},"Patterns":null},"bone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bone.svg"},"Patterns":null},"bong.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bong.svg"},"Patterns":null},"book-atlas.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-atlas.svg"},"Patterns":null},"book-bible.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-bible.svg"},"Patterns":null},"book-bookmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-bookmark.svg"},"Patterns":null},"book-journal-whills.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-journal-whills.svg"},"Patterns":null},"book-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-medical.svg"},"Patterns":null},"book-open-reader.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-open-reader.svg"},"Patterns":null},"book-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-open.svg"},"Patterns":null},"book-quran.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-quran.svg"},"Patterns":null},"book-skull.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-skull.svg"},"Patterns":null},"book.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book.svg"},"Patterns":null},"bookmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bookmark.svg"},"Patterns":null},"border-all.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/border-all.svg"},"Patterns":null},"border-none.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/border-none.svg"},"Patterns":null},"border-top-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/border-top-left.svg"},"Patterns":null},"bore-hole.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bore-hole.svg"},"Patterns":null},"bottle-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bottle-droplet.svg"},"Patterns":null},"bottle-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bottle-water.svg"},"Patterns":null},"bowl-food.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bowl-food.svg"},"Patterns":null},"bowl-rice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bowl-rice.svg"},"Patterns":null},"bowling-ball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bowling-ball.svg"},"Patterns":null},"box-archive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/box-archive.svg"},"Patterns":null},"box-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/box-open.svg"},"Patterns":null},"box-tissue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/box-tissue.svg"},"Patterns":null},"box.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/box.svg"},"Patterns":null},"boxes-packing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/boxes-packing.svg"},"Patterns":null},"boxes-stacked.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/boxes-stacked.svg"},"Patterns":null},"braille.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/braille.svg"},"Patterns":null},"brain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/brain.svg"},"Patterns":null},"brazilian-real-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/brazilian-real-sign.svg"},"Patterns":null},"bread-slice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bread-slice.svg"},"Patterns":null},"bridge-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-circle-check.svg"},"Patterns":null},"bridge-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-circle-exclamation.svg"},"Patterns":null},"bridge-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-circle-xmark.svg"},"Patterns":null},"bridge-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-lock.svg"},"Patterns":null},"bridge-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-water.svg"},"Patterns":null},"bridge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge.svg"},"Patterns":null},"briefcase-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/briefcase-medical.svg"},"Patterns":null},"briefcase.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/briefcase.svg"},"Patterns":null},"broom-ball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/broom-ball.svg"},"Patterns":null},"broom.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/broom.svg"},"Patterns":null},"brush.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/brush.svg"},"Patterns":null},"bucket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bucket.svg"},"Patterns":null},"bug-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bug-slash.svg"},"Patterns":null},"bug.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bug.svg"},"Patterns":null},"bugs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bugs.svg"},"Patterns":null},"building-circle-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-circle-arrow-right.svg"},"Patterns":null},"building-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-circle-check.svg"},"Patterns":null},"building-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-circle-exclamation.svg"},"Patterns":null},"building-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-circle-xmark.svg"},"Patterns":null},"building-columns.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-columns.svg"},"Patterns":null},"building-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-flag.svg"},"Patterns":null},"building-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-lock.svg"},"Patterns":null},"building-ngo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-ngo.svg"},"Patterns":null},"building-shield.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-shield.svg"},"Patterns":null},"building-un.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-un.svg"},"Patterns":null},"building-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-user.svg"},"Patterns":null},"building-wheat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-wheat.svg"},"Patterns":null},"building.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building.svg"},"Patterns":null},"bullhorn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bullhorn.svg"},"Patterns":null},"bullseye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bullseye.svg"},"Patterns":null},"burger.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/burger.svg"},"Patterns":null},"burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/burst.svg"},"Patterns":null},"bus-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bus-simple.svg"},"Patterns":null},"bus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bus.svg"},"Patterns":null},"business-time.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/business-time.svg"},"Patterns":null},"c.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/c.svg"},"Patterns":null},"cake-candles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cake-candles.svg"},"Patterns":null},"calculator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calculator.svg"},"Patterns":null},"calendar-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-check.svg"},"Patterns":null},"calendar-day.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-day.svg"},"Patterns":null},"calendar-days.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-days.svg"},"Patterns":null},"calendar-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-minus.svg"},"Patterns":null},"calendar-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-plus.svg"},"Patterns":null},"calendar-week.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-week.svg"},"Patterns":null},"calendar-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-xmark.svg"},"Patterns":null},"calendar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar.svg"},"Patterns":null},"camera-retro.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/camera-retro.svg"},"Patterns":null},"camera-rotate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/camera-rotate.svg"},"Patterns":null},"camera.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/camera.svg"},"Patterns":null},"campground.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/campground.svg"},"Patterns":null},"candy-cane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/candy-cane.svg"},"Patterns":null},"cannabis.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cannabis.svg"},"Patterns":null},"capsules.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/capsules.svg"},"Patterns":null},"car-battery.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-battery.svg"},"Patterns":null},"car-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-burst.svg"},"Patterns":null},"car-on.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-on.svg"},"Patterns":null},"car-rear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-rear.svg"},"Patterns":null},"car-side.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-side.svg"},"Patterns":null},"car-tunnel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-tunnel.svg"},"Patterns":null},"car.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car.svg"},"Patterns":null},"caravan.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caravan.svg"},"Patterns":null},"caret-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caret-down.svg"},"Patterns":null},"caret-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caret-left.svg"},"Patterns":null},"caret-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caret-right.svg"},"Patterns":null},"caret-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caret-up.svg"},"Patterns":null},"carrot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/carrot.svg"},"Patterns":null},"cart-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-arrow-down.svg"},"Patterns":null},"cart-flatbed-suitcase.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-flatbed-suitcase.svg"},"Patterns":null},"cart-flatbed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-flatbed.svg"},"Patterns":null},"cart-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-plus.svg"},"Patterns":null},"cart-shopping.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-shopping.svg"},"Patterns":null},"cash-register.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cash-register.svg"},"Patterns":null},"cat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cat.svg"},"Patterns":null},"cedi-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cedi-sign.svg"},"Patterns":null},"cent-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cent-sign.svg"},"Patterns":null},"certificate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/certificate.svg"},"Patterns":null},"chair.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chair.svg"},"Patterns":null},"chalkboard-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chalkboard-user.svg"},"Patterns":null},"chalkboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chalkboard.svg"},"Patterns":null},"champagne-glasses.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/champagne-glasses.svg"},"Patterns":null},"charging-station.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/charging-station.svg"},"Patterns":null},"chart-area.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-area.svg"},"Patterns":null},"chart-bar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-bar.svg"},"Patterns":null},"chart-column.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-column.svg"},"Patterns":null},"chart-gantt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-gantt.svg"},"Patterns":null},"chart-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-line.svg"},"Patterns":null},"chart-pie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-pie.svg"},"Patterns":null},"chart-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-simple.svg"},"Patterns":null},"check-double.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/check-double.svg"},"Patterns":null},"check-to-slot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/check-to-slot.svg"},"Patterns":null},"check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/check.svg"},"Patterns":null},"cheese.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cheese.svg"},"Patterns":null},"chess-bishop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-bishop.svg"},"Patterns":null},"chess-board.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-board.svg"},"Patterns":null},"chess-king.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-king.svg"},"Patterns":null},"chess-knight.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-knight.svg"},"Patterns":null},"chess-pawn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-pawn.svg"},"Patterns":null},"chess-queen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-queen.svg"},"Patterns":null},"chess-rook.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-rook.svg"},"Patterns":null},"chess.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess.svg"},"Patterns":null},"chevron-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chevron-down.svg"},"Patterns":null},"chevron-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chevron-left.svg"},"Patterns":null},"chevron-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chevron-right.svg"},"Patterns":null},"chevron-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chevron-up.svg"},"Patterns":null},"child-dress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/child-dress.svg"},"Patterns":null},"child-reaching.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/child-reaching.svg"},"Patterns":null},"child-rifle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/child-rifle.svg"},"Patterns":null},"child.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/child.svg"},"Patterns":null},"children.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/children.svg"},"Patterns":null},"church.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/church.svg"},"Patterns":null},"circle-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-arrow-down.svg"},"Patterns":null},"circle-arrow-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-arrow-left.svg"},"Patterns":null},"circle-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-arrow-right.svg"},"Patterns":null},"circle-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-arrow-up.svg"},"Patterns":null},"circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-check.svg"},"Patterns":null},"circle-chevron-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-chevron-down.svg"},"Patterns":null},"circle-chevron-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-chevron-left.svg"},"Patterns":null},"circle-chevron-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-chevron-right.svg"},"Patterns":null},"circle-chevron-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-chevron-up.svg"},"Patterns":null},"circle-dollar-to-slot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-dollar-to-slot.svg"},"Patterns":null},"circle-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-dot.svg"},"Patterns":null},"circle-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-down.svg"},"Patterns":null},"circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-exclamation.svg"},"Patterns":null},"circle-h.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-h.svg"},"Patterns":null},"circle-half-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-half-stroke.svg"},"Patterns":null},"circle-info.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-info.svg"},"Patterns":null},"circle-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-left.svg"},"Patterns":null},"circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-minus.svg"},"Patterns":null},"circle-nodes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-nodes.svg"},"Patterns":null},"circle-notch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-notch.svg"},"Patterns":null},"circle-pause.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-pause.svg"},"Patterns":null},"circle-play.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-play.svg"},"Patterns":null},"circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-plus.svg"},"Patterns":null},"circle-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-question.svg"},"Patterns":null},"circle-radiation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-radiation.svg"},"Patterns":null},"circle-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-right.svg"},"Patterns":null},"circle-stop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-stop.svg"},"Patterns":null},"circle-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-up.svg"},"Patterns":null},"circle-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-user.svg"},"Patterns":null},"circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-xmark.svg"},"Patterns":null},"circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle.svg"},"Patterns":null},"city.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/city.svg"},"Patterns":null},"clapperboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clapperboard.svg"},"Patterns":null},"clipboard-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard-check.svg"},"Patterns":null},"clipboard-list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard-list.svg"},"Patterns":null},"clipboard-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard-question.svg"},"Patterns":null},"clipboard-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard-user.svg"},"Patterns":null},"clipboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard.svg"},"Patterns":null},"clock-rotate-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clock-rotate-left.svg"},"Patterns":null},"clock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clock.svg"},"Patterns":null},"clone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clone.svg"},"Patterns":null},"closed-captioning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/closed-captioning.svg"},"Patterns":null},"cloud-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-arrow-down.svg"},"Patterns":null},"cloud-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-arrow-up.svg"},"Patterns":null},"cloud-bolt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-bolt.svg"},"Patterns":null},"cloud-meatball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-meatball.svg"},"Patterns":null},"cloud-moon-rain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-moon-rain.svg"},"Patterns":null},"cloud-moon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-moon.svg"},"Patterns":null},"cloud-rain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-rain.svg"},"Patterns":null},"cloud-showers-heavy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-showers-heavy.svg"},"Patterns":null},"cloud-showers-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-showers-water.svg"},"Patterns":null},"cloud-sun-rain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-sun-rain.svg"},"Patterns":null},"cloud-sun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-sun.svg"},"Patterns":null},"cloud.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud.svg"},"Patterns":null},"clover.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clover.svg"},"Patterns":null},"code-branch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-branch.svg"},"Patterns":null},"code-commit.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-commit.svg"},"Patterns":null},"code-compare.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-compare.svg"},"Patterns":null},"code-fork.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-fork.svg"},"Patterns":null},"code-merge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-merge.svg"},"Patterns":null},"code-pull-request.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-pull-request.svg"},"Patterns":null},"code.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code.svg"},"Patterns":null},"coins.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/coins.svg"},"Patterns":null},"colon-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/colon-sign.svg"},"Patterns":null},"comment-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-dollar.svg"},"Patterns":null},"comment-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-dots.svg"},"Patterns":null},"comment-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-medical.svg"},"Patterns":null},"comment-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-slash.svg"},"Patterns":null},"comment-sms.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-sms.svg"},"Patterns":null},"comment.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment.svg"},"Patterns":null},"comments-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comments-dollar.svg"},"Patterns":null},"comments.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comments.svg"},"Patterns":null},"compact-disc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/compact-disc.svg"},"Patterns":null},"compass-drafting.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/compass-drafting.svg"},"Patterns":null},"compass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/compass.svg"},"Patterns":null},"compress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/compress.svg"},"Patterns":null},"computer-mouse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/computer-mouse.svg"},"Patterns":null},"computer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/computer.svg"},"Patterns":null},"cookie-bite.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cookie-bite.svg"},"Patterns":null},"cookie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cookie.svg"},"Patterns":null},"copy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/copy.svg"},"Patterns":null},"copyright.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/copyright.svg"},"Patterns":null},"couch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/couch.svg"},"Patterns":null},"cow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cow.svg"},"Patterns":null},"credit-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/credit-card.svg"},"Patterns":null},"crop-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crop-simple.svg"},"Patterns":null},"crop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crop.svg"},"Patterns":null},"cross.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cross.svg"},"Patterns":null},"crosshairs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crosshairs.svg"},"Patterns":null},"crow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crow.svg"},"Patterns":null},"crown.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crown.svg"},"Patterns":null},"crutch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crutch.svg"},"Patterns":null},"cruzeiro-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cruzeiro-sign.svg"},"Patterns":null},"cube.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cube.svg"},"Patterns":null},"cubes-stacked.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cubes-stacked.svg"},"Patterns":null},"cubes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cubes.svg"},"Patterns":null},"d.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/d.svg"},"Patterns":null},"database.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/database.svg"},"Patterns":null},"delete-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/delete-left.svg"},"Patterns":null},"democrat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/democrat.svg"},"Patterns":null},"desktop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/desktop.svg"},"Patterns":null},"dharmachakra.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dharmachakra.svg"},"Patterns":null},"diagram-next.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diagram-next.svg"},"Patterns":null},"diagram-predecessor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diagram-predecessor.svg"},"Patterns":null},"diagram-project.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diagram-project.svg"},"Patterns":null},"diagram-successor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diagram-successor.svg"},"Patterns":null},"diamond-turn-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diamond-turn-right.svg"},"Patterns":null},"diamond.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diamond.svg"},"Patterns":null},"dice-d20.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-d20.svg"},"Patterns":null},"dice-d6.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-d6.svg"},"Patterns":null},"dice-five.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-five.svg"},"Patterns":null},"dice-four.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-four.svg"},"Patterns":null},"dice-one.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-one.svg"},"Patterns":null},"dice-six.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-six.svg"},"Patterns":null},"dice-three.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-three.svg"},"Patterns":null},"dice-two.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-two.svg"},"Patterns":null},"dice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice.svg"},"Patterns":null},"disease.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/disease.svg"},"Patterns":null},"display.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/display.svg"},"Patterns":null},"divide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/divide.svg"},"Patterns":null},"dna.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dna.svg"},"Patterns":null},"dog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dog.svg"},"Patterns":null},"dollar-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dollar-sign.svg"},"Patterns":null},"dolly.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dolly.svg"},"Patterns":null},"dong-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dong-sign.svg"},"Patterns":null},"door-closed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/door-closed.svg"},"Patterns":null},"door-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/door-open.svg"},"Patterns":null},"dove.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dove.svg"},"Patterns":null},"down-left-and-up-right-to-center.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/down-left-and-up-right-to-center.svg"},"Patterns":null},"down-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/down-long.svg"},"Patterns":null},"download.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/download.svg"},"Patterns":null},"dragon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dragon.svg"},"Patterns":null},"draw-polygon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/draw-polygon.svg"},"Patterns":null},"droplet-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/droplet-slash.svg"},"Patterns":null},"droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/droplet.svg"},"Patterns":null},"drum-steelpan.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/drum-steelpan.svg"},"Patterns":null},"drum.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/drum.svg"},"Patterns":null},"drumstick-bite.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/drumstick-bite.svg"},"Patterns":null},"dumbbell.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dumbbell.svg"},"Patterns":null},"dumpster-fire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dumpster-fire.svg"},"Patterns":null},"dumpster.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dumpster.svg"},"Patterns":null},"dungeon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dungeon.svg"},"Patterns":null},"e.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/e.svg"},"Patterns":null},"ear-deaf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ear-deaf.svg"},"Patterns":null},"ear-listen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ear-listen.svg"},"Patterns":null},"earth-africa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-africa.svg"},"Patterns":null},"earth-americas.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-americas.svg"},"Patterns":null},"earth-asia.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-asia.svg"},"Patterns":null},"earth-europe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-europe.svg"},"Patterns":null},"earth-oceania.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-oceania.svg"},"Patterns":null},"egg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/egg.svg"},"Patterns":null},"eject.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eject.svg"},"Patterns":null},"elevator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/elevator.svg"},"Patterns":null},"ellipsis-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ellipsis-vertical.svg"},"Patterns":null},"ellipsis.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ellipsis.svg"},"Patterns":null},"envelope-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelope-circle-check.svg"},"Patterns":null},"envelope-open-text.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelope-open-text.svg"},"Patterns":null},"envelope-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelope-open.svg"},"Patterns":null},"envelope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelope.svg"},"Patterns":null},"envelopes-bulk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelopes-bulk.svg"},"Patterns":null},"equals.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/equals.svg"},"Patterns":null},"eraser.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eraser.svg"},"Patterns":null},"ethernet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ethernet.svg"},"Patterns":null},"euro-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/euro-sign.svg"},"Patterns":null},"exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/exclamation.svg"},"Patterns":null},"expand.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/expand.svg"},"Patterns":null},"explosion.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/explosion.svg"},"Patterns":null},"eye-dropper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eye-dropper.svg"},"Patterns":null},"eye-low-vision.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eye-low-vision.svg"},"Patterns":null},"eye-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eye-slash.svg"},"Patterns":null},"eye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eye.svg"},"Patterns":null},"f.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/f.svg"},"Patterns":null},"face-angry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-angry.svg"},"Patterns":null},"face-dizzy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-dizzy.svg"},"Patterns":null},"face-flushed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-flushed.svg"},"Patterns":null},"face-frown-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-frown-open.svg"},"Patterns":null},"face-frown.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-frown.svg"},"Patterns":null},"face-grimace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grimace.svg"},"Patterns":null},"face-grin-beam-sweat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-beam-sweat.svg"},"Patterns":null},"face-grin-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-beam.svg"},"Patterns":null},"face-grin-hearts.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-hearts.svg"},"Patterns":null},"face-grin-squint-tears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-squint-tears.svg"},"Patterns":null},"face-grin-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-squint.svg"},"Patterns":null},"face-grin-stars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-stars.svg"},"Patterns":null},"face-grin-tears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-tears.svg"},"Patterns":null},"face-grin-tongue-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-tongue-squint.svg"},"Patterns":null},"face-grin-tongue-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-tongue-wink.svg"},"Patterns":null},"face-grin-tongue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-tongue.svg"},"Patterns":null},"face-grin-wide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-wide.svg"},"Patterns":null},"face-grin-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-wink.svg"},"Patterns":null},"face-grin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin.svg"},"Patterns":null},"face-kiss-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-kiss-beam.svg"},"Patterns":null},"face-kiss-wink-heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-kiss-wink-heart.svg"},"Patterns":null},"face-kiss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-kiss.svg"},"Patterns":null},"face-laugh-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-laugh-beam.svg"},"Patterns":null},"face-laugh-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-laugh-squint.svg"},"Patterns":null},"face-laugh-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-laugh-wink.svg"},"Patterns":null},"face-laugh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-laugh.svg"},"Patterns":null},"face-meh-blank.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-meh-blank.svg"},"Patterns":null},"face-meh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-meh.svg"},"Patterns":null},"face-rolling-eyes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-rolling-eyes.svg"},"Patterns":null},"face-sad-cry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-sad-cry.svg"},"Patterns":null},"face-sad-tear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-sad-tear.svg"},"Patterns":null},"face-smile-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-smile-beam.svg"},"Patterns":null},"face-smile-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-smile-wink.svg"},"Patterns":null},"face-smile.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-smile.svg"},"Patterns":null},"face-surprise.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-surprise.svg"},"Patterns":null},"face-tired.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-tired.svg"},"Patterns":null},"fan.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fan.svg"},"Patterns":null},"faucet-drip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/faucet-drip.svg"},"Patterns":null},"faucet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/faucet.svg"},"Patterns":null},"fax.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fax.svg"},"Patterns":null},"feather-pointed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/feather-pointed.svg"},"Patterns":null},"feather.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/feather.svg"},"Patterns":null},"ferry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ferry.svg"},"Patterns":null},"file-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-arrow-down.svg"},"Patterns":null},"file-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-arrow-up.svg"},"Patterns":null},"file-audio.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-audio.svg"},"Patterns":null},"file-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-check.svg"},"Patterns":null},"file-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-exclamation.svg"},"Patterns":null},"file-circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-minus.svg"},"Patterns":null},"file-circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-plus.svg"},"Patterns":null},"file-circle-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-question.svg"},"Patterns":null},"file-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-xmark.svg"},"Patterns":null},"file-code.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-code.svg"},"Patterns":null},"file-contract.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-contract.svg"},"Patterns":null},"file-csv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-csv.svg"},"Patterns":null},"file-excel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-excel.svg"},"Patterns":null},"file-export.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-export.svg"},"Patterns":null},"file-image.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-image.svg"},"Patterns":null},"file-import.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-import.svg"},"Patterns":null},"file-invoice-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-invoice-dollar.svg"},"Patterns":null},"file-invoice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-invoice.svg"},"Patterns":null},"file-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-lines.svg"},"Patterns":null},"file-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-medical.svg"},"Patterns":null},"file-pdf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-pdf.svg"},"Patterns":null},"file-pen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-pen.svg"},"Patterns":null},"file-powerpoint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-powerpoint.svg"},"Patterns":null},"file-prescription.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-prescription.svg"},"Patterns":null},"file-shield.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-shield.svg"},"Patterns":null},"file-signature.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-signature.svg"},"Patterns":null},"file-video.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-video.svg"},"Patterns":null},"file-waveform.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-waveform.svg"},"Patterns":null},"file-word.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-word.svg"},"Patterns":null},"file-zipper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-zipper.svg"},"Patterns":null},"file.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file.svg"},"Patterns":null},"fill-drip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fill-drip.svg"},"Patterns":null},"fill.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fill.svg"},"Patterns":null},"film.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/film.svg"},"Patterns":null},"filter-circle-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/filter-circle-dollar.svg"},"Patterns":null},"filter-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/filter-circle-xmark.svg"},"Patterns":null},"filter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/filter.svg"},"Patterns":null},"fingerprint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fingerprint.svg"},"Patterns":null},"fire-burner.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire-burner.svg"},"Patterns":null},"fire-extinguisher.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire-extinguisher.svg"},"Patterns":null},"fire-flame-curved.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire-flame-curved.svg"},"Patterns":null},"fire-flame-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire-flame-simple.svg"},"Patterns":null},"fire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire.svg"},"Patterns":null},"fish-fins.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fish-fins.svg"},"Patterns":null},"fish.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fish.svg"},"Patterns":null},"flag-checkered.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flag-checkered.svg"},"Patterns":null},"flag-usa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flag-usa.svg"},"Patterns":null},"flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flag.svg"},"Patterns":null},"flask-vial.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flask-vial.svg"},"Patterns":null},"flask.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flask.svg"},"Patterns":null},"floppy-disk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/floppy-disk.svg"},"Patterns":null},"florin-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/florin-sign.svg"},"Patterns":null},"folder-closed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-closed.svg"},"Patterns":null},"folder-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-minus.svg"},"Patterns":null},"folder-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-open.svg"},"Patterns":null},"folder-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-plus.svg"},"Patterns":null},"folder-tree.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-tree.svg"},"Patterns":null},"folder.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder.svg"},"Patterns":null},"font-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/font-awesome.svg"},"Patterns":null},"font.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/font.svg"},"Patterns":null},"football.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/football.svg"},"Patterns":null},"forward-fast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/forward-fast.svg"},"Patterns":null},"forward-step.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/forward-step.svg"},"Patterns":null},"forward.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/forward.svg"},"Patterns":null},"franc-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/franc-sign.svg"},"Patterns":null},"frog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/frog.svg"},"Patterns":null},"futbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/futbol.svg"},"Patterns":null},"g.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/g.svg"},"Patterns":null},"gamepad.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gamepad.svg"},"Patterns":null},"gas-pump.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gas-pump.svg"},"Patterns":null},"gauge-high.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gauge-high.svg"},"Patterns":null},"gauge-simple-high.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gauge-simple-high.svg"},"Patterns":null},"gauge-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gauge-simple.svg"},"Patterns":null},"gauge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gauge.svg"},"Patterns":null},"gavel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gavel.svg"},"Patterns":null},"gear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gear.svg"},"Patterns":null},"gears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gears.svg"},"Patterns":null},"gem.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gem.svg"},"Patterns":null},"genderless.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/genderless.svg"},"Patterns":null},"ghost.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ghost.svg"},"Patterns":null},"gift.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gift.svg"},"Patterns":null},"gifts.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gifts.svg"},"Patterns":null},"glass-water-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/glass-water-droplet.svg"},"Patterns":null},"glass-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/glass-water.svg"},"Patterns":null},"glasses.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/glasses.svg"},"Patterns":null},"globe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/globe.svg"},"Patterns":null},"golf-ball-tee.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/golf-ball-tee.svg"},"Patterns":null},"gopuram.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gopuram.svg"},"Patterns":null},"graduation-cap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/graduation-cap.svg"},"Patterns":null},"greater-than-equal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/greater-than-equal.svg"},"Patterns":null},"greater-than.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/greater-than.svg"},"Patterns":null},"grip-lines-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/grip-lines-vertical.svg"},"Patterns":null},"grip-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/grip-lines.svg"},"Patterns":null},"grip-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/grip-vertical.svg"},"Patterns":null},"grip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/grip.svg"},"Patterns":null},"group-arrows-rotate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/group-arrows-rotate.svg"},"Patterns":null},"guarani-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/guarani-sign.svg"},"Patterns":null},"guitar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/guitar.svg"},"Patterns":null},"gun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gun.svg"},"Patterns":null},"h.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/h.svg"},"Patterns":null},"hammer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hammer.svg"},"Patterns":null},"hamsa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hamsa.svg"},"Patterns":null},"hand-back-fist.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-back-fist.svg"},"Patterns":null},"hand-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-dots.svg"},"Patterns":null},"hand-fist.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-fist.svg"},"Patterns":null},"hand-holding-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-dollar.svg"},"Patterns":null},"hand-holding-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-droplet.svg"},"Patterns":null},"hand-holding-hand.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-hand.svg"},"Patterns":null},"hand-holding-heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-heart.svg"},"Patterns":null},"hand-holding-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-medical.svg"},"Patterns":null},"hand-holding.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding.svg"},"Patterns":null},"hand-lizard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-lizard.svg"},"Patterns":null},"hand-middle-finger.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-middle-finger.svg"},"Patterns":null},"hand-peace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-peace.svg"},"Patterns":null},"hand-point-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-point-down.svg"},"Patterns":null},"hand-point-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-point-left.svg"},"Patterns":null},"hand-point-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-point-right.svg"},"Patterns":null},"hand-point-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-point-up.svg"},"Patterns":null},"hand-pointer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-pointer.svg"},"Patterns":null},"hand-scissors.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-scissors.svg"},"Patterns":null},"hand-sparkles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-sparkles.svg"},"Patterns":null},"hand-spock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-spock.svg"},"Patterns":null},"hand.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand.svg"},"Patterns":null},"handcuffs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handcuffs.svg"},"Patterns":null},"hands-asl-interpreting.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-asl-interpreting.svg"},"Patterns":null},"hands-bound.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-bound.svg"},"Patterns":null},"hands-bubbles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-bubbles.svg"},"Patterns":null},"hands-clapping.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-clapping.svg"},"Patterns":null},"hands-holding-child.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-holding-child.svg"},"Patterns":null},"hands-holding-circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-holding-circle.svg"},"Patterns":null},"hands-holding.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-holding.svg"},"Patterns":null},"hands-praying.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-praying.svg"},"Patterns":null},"hands.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands.svg"},"Patterns":null},"handshake-angle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake-angle.svg"},"Patterns":null},"handshake-simple-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake-simple-slash.svg"},"Patterns":null},"handshake-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake-simple.svg"},"Patterns":null},"handshake-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake-slash.svg"},"Patterns":null},"handshake.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake.svg"},"Patterns":null},"hanukiah.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hanukiah.svg"},"Patterns":null},"hard-drive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hard-drive.svg"},"Patterns":null},"hashtag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hashtag.svg"},"Patterns":null},"hat-cowboy-side.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hat-cowboy-side.svg"},"Patterns":null},"hat-cowboy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hat-cowboy.svg"},"Patterns":null},"hat-wizard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hat-wizard.svg"},"Patterns":null},"head-side-cough-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/head-side-cough-slash.svg"},"Patterns":null},"head-side-cough.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/head-side-cough.svg"},"Patterns":null},"head-side-mask.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/head-side-mask.svg"},"Patterns":null},"head-side-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/head-side-virus.svg"},"Patterns":null},"heading.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heading.svg"},"Patterns":null},"headphones-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/headphones-simple.svg"},"Patterns":null},"headphones.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/headphones.svg"},"Patterns":null},"headset.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/headset.svg"},"Patterns":null},"heart-circle-bolt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-bolt.svg"},"Patterns":null},"heart-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-check.svg"},"Patterns":null},"heart-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-exclamation.svg"},"Patterns":null},"heart-circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-minus.svg"},"Patterns":null},"heart-circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-plus.svg"},"Patterns":null},"heart-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-xmark.svg"},"Patterns":null},"heart-crack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-crack.svg"},"Patterns":null},"heart-pulse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-pulse.svg"},"Patterns":null},"heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart.svg"},"Patterns":null},"helicopter-symbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/helicopter-symbol.svg"},"Patterns":null},"helicopter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/helicopter.svg"},"Patterns":null},"helmet-safety.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/helmet-safety.svg"},"Patterns":null},"helmet-un.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/helmet-un.svg"},"Patterns":null},"highlighter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/highlighter.svg"},"Patterns":null},"hill-avalanche.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hill-avalanche.svg"},"Patterns":null},"hill-rockslide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hill-rockslide.svg"},"Patterns":null},"hippo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hippo.svg"},"Patterns":null},"hockey-puck.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hockey-puck.svg"},"Patterns":null},"holly-berry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/holly-berry.svg"},"Patterns":null},"horse-head.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/horse-head.svg"},"Patterns":null},"horse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/horse.svg"},"Patterns":null},"hospital-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hospital-user.svg"},"Patterns":null},"hospital.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hospital.svg"},"Patterns":null},"hot-tub-person.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hot-tub-person.svg"},"Patterns":null},"hotdog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hotdog.svg"},"Patterns":null},"hotel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hotel.svg"},"Patterns":null},"hourglass-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hourglass-empty.svg"},"Patterns":null},"hourglass-end.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hourglass-end.svg"},"Patterns":null},"hourglass-start.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hourglass-start.svg"},"Patterns":null},"hourglass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hourglass.svg"},"Patterns":null},"house-chimney-crack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney-crack.svg"},"Patterns":null},"house-chimney-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney-medical.svg"},"Patterns":null},"house-chimney-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney-user.svg"},"Patterns":null},"house-chimney-window.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney-window.svg"},"Patterns":null},"house-chimney.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney.svg"},"Patterns":null},"house-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-circle-check.svg"},"Patterns":null},"house-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-circle-exclamation.svg"},"Patterns":null},"house-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-circle-xmark.svg"},"Patterns":null},"house-crack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-crack.svg"},"Patterns":null},"house-fire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-fire.svg"},"Patterns":null},"house-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-flag.svg"},"Patterns":null},"house-flood-water-circle-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-flood-water-circle-arrow-right.svg"},"Patterns":null},"house-flood-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-flood-water.svg"},"Patterns":null},"house-laptop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-laptop.svg"},"Patterns":null},"house-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-lock.svg"},"Patterns":null},"house-medical-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical-circle-check.svg"},"Patterns":null},"house-medical-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical-circle-exclamation.svg"},"Patterns":null},"house-medical-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical-circle-xmark.svg"},"Patterns":null},"house-medical-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical-flag.svg"},"Patterns":null},"house-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical.svg"},"Patterns":null},"house-signal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-signal.svg"},"Patterns":null},"house-tsunami.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-tsunami.svg"},"Patterns":null},"house-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-user.svg"},"Patterns":null},"house.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house.svg"},"Patterns":null},"hryvnia-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hryvnia-sign.svg"},"Patterns":null},"hurricane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hurricane.svg"},"Patterns":null},"i-cursor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/i-cursor.svg"},"Patterns":null},"i.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/i.svg"},"Patterns":null},"ice-cream.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ice-cream.svg"},"Patterns":null},"icicles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/icicles.svg"},"Patterns":null},"icons.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/icons.svg"},"Patterns":null},"id-badge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/id-badge.svg"},"Patterns":null},"id-card-clip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/id-card-clip.svg"},"Patterns":null},"id-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/id-card.svg"},"Patterns":null},"igloo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/igloo.svg"},"Patterns":null},"image-portrait.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/image-portrait.svg"},"Patterns":null},"image.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/image.svg"},"Patterns":null},"images.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/images.svg"},"Patterns":null},"inbox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/inbox.svg"},"Patterns":null},"indent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/indent.svg"},"Patterns":null},"indian-rupee-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/indian-rupee-sign.svg"},"Patterns":null},"industry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/industry.svg"},"Patterns":null},"infinity.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/infinity.svg"},"Patterns":null},"info.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/info.svg"},"Patterns":null},"italic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/italic.svg"},"Patterns":null},"j.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/j.svg"},"Patterns":null},"jar-wheat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jar-wheat.svg"},"Patterns":null},"jar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jar.svg"},"Patterns":null},"jedi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jedi.svg"},"Patterns":null},"jet-fighter-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jet-fighter-up.svg"},"Patterns":null},"jet-fighter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jet-fighter.svg"},"Patterns":null},"joint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/joint.svg"},"Patterns":null},"jug-detergent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jug-detergent.svg"},"Patterns":null},"k.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/k.svg"},"Patterns":null},"kaaba.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kaaba.svg"},"Patterns":null},"key.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/key.svg"},"Patterns":null},"keyboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/keyboard.svg"},"Patterns":null},"khanda.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/khanda.svg"},"Patterns":null},"kip-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kip-sign.svg"},"Patterns":null},"kit-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kit-medical.svg"},"Patterns":null},"kitchen-set.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kitchen-set.svg"},"Patterns":null},"kiwi-bird.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kiwi-bird.svg"},"Patterns":null},"l.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/l.svg"},"Patterns":null},"land-mine-on.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/land-mine-on.svg"},"Patterns":null},"landmark-dome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/landmark-dome.svg"},"Patterns":null},"landmark-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/landmark-flag.svg"},"Patterns":null},"landmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/landmark.svg"},"Patterns":null},"language.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/language.svg"},"Patterns":null},"laptop-code.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/laptop-code.svg"},"Patterns":null},"laptop-file.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/laptop-file.svg"},"Patterns":null},"laptop-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/laptop-medical.svg"},"Patterns":null},"laptop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/laptop.svg"},"Patterns":null},"lari-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lari-sign.svg"},"Patterns":null},"layer-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/layer-group.svg"},"Patterns":null},"leaf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/leaf.svg"},"Patterns":null},"left-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/left-long.svg"},"Patterns":null},"left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/left-right.svg"},"Patterns":null},"lemon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lemon.svg"},"Patterns":null},"less-than-equal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/less-than-equal.svg"},"Patterns":null},"less-than.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/less-than.svg"},"Patterns":null},"life-ring.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/life-ring.svg"},"Patterns":null},"lightbulb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lightbulb.svg"},"Patterns":null},"lines-leaning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lines-leaning.svg"},"Patterns":null},"link-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/link-slash.svg"},"Patterns":null},"link.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/link.svg"},"Patterns":null},"lira-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lira-sign.svg"},"Patterns":null},"list-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/list-check.svg"},"Patterns":null},"list-ol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/list-ol.svg"},"Patterns":null},"list-ul.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/list-ul.svg"},"Patterns":null},"list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/list.svg"},"Patterns":null},"litecoin-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/litecoin-sign.svg"},"Patterns":null},"location-arrow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-arrow.svg"},"Patterns":null},"location-crosshairs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-crosshairs.svg"},"Patterns":null},"location-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-dot.svg"},"Patterns":null},"location-pin-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-pin-lock.svg"},"Patterns":null},"location-pin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-pin.svg"},"Patterns":null},"lock-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lock-open.svg"},"Patterns":null},"lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lock.svg"},"Patterns":null},"locust.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/locust.svg"},"Patterns":null},"lungs-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lungs-virus.svg"},"Patterns":null},"lungs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lungs.svg"},"Patterns":null},"m.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/m.svg"},"Patterns":null},"magnet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnet.svg"},"Patterns":null},"magnifying-glass-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-arrow-right.svg"},"Patterns":null},"magnifying-glass-chart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-chart.svg"},"Patterns":null},"magnifying-glass-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-dollar.svg"},"Patterns":null},"magnifying-glass-location.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-location.svg"},"Patterns":null},"magnifying-glass-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-minus.svg"},"Patterns":null},"magnifying-glass-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-plus.svg"},"Patterns":null},"magnifying-glass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass.svg"},"Patterns":null},"manat-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/manat-sign.svg"},"Patterns":null},"map-location-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/map-location-dot.svg"},"Patterns":null},"map-location.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/map-location.svg"},"Patterns":null},"map-pin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/map-pin.svg"},"Patterns":null},"map.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/map.svg"},"Patterns":null},"marker.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/marker.svg"},"Patterns":null},"mars-and-venus-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-and-venus-burst.svg"},"Patterns":null},"mars-and-venus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-and-venus.svg"},"Patterns":null},"mars-double.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-double.svg"},"Patterns":null},"mars-stroke-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-stroke-right.svg"},"Patterns":null},"mars-stroke-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-stroke-up.svg"},"Patterns":null},"mars-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-stroke.svg"},"Patterns":null},"mars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars.svg"},"Patterns":null},"martini-glass-citrus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/martini-glass-citrus.svg"},"Patterns":null},"martini-glass-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/martini-glass-empty.svg"},"Patterns":null},"martini-glass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/martini-glass.svg"},"Patterns":null},"mask-face.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mask-face.svg"},"Patterns":null},"mask-ventilator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mask-ventilator.svg"},"Patterns":null},"mask.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mask.svg"},"Patterns":null},"masks-theater.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/masks-theater.svg"},"Patterns":null},"mattress-pillow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mattress-pillow.svg"},"Patterns":null},"maximize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/maximize.svg"},"Patterns":null},"medal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/medal.svg"},"Patterns":null},"memory.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/memory.svg"},"Patterns":null},"menorah.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/menorah.svg"},"Patterns":null},"mercury.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mercury.svg"},"Patterns":null},"message.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/message.svg"},"Patterns":null},"meteor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/meteor.svg"},"Patterns":null},"microchip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microchip.svg"},"Patterns":null},"microphone-lines-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microphone-lines-slash.svg"},"Patterns":null},"microphone-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microphone-lines.svg"},"Patterns":null},"microphone-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microphone-slash.svg"},"Patterns":null},"microphone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microphone.svg"},"Patterns":null},"microscope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microscope.svg"},"Patterns":null},"mill-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mill-sign.svg"},"Patterns":null},"minimize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/minimize.svg"},"Patterns":null},"minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/minus.svg"},"Patterns":null},"mitten.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mitten.svg"},"Patterns":null},"mobile-button.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile-button.svg"},"Patterns":null},"mobile-retro.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile-retro.svg"},"Patterns":null},"mobile-screen-button.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile-screen-button.svg"},"Patterns":null},"mobile-screen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile-screen.svg"},"Patterns":null},"mobile.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile.svg"},"Patterns":null},"money-bill-1-wave.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-1-wave.svg"},"Patterns":null},"money-bill-1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-1.svg"},"Patterns":null},"money-bill-transfer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-transfer.svg"},"Patterns":null},"money-bill-trend-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-trend-up.svg"},"Patterns":null},"money-bill-wave.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-wave.svg"},"Patterns":null},"money-bill-wheat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-wheat.svg"},"Patterns":null},"money-bill.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill.svg"},"Patterns":null},"money-bills.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bills.svg"},"Patterns":null},"money-check-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-check-dollar.svg"},"Patterns":null},"money-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-check.svg"},"Patterns":null},"monument.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/monument.svg"},"Patterns":null},"moon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/moon.svg"},"Patterns":null},"mortar-pestle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mortar-pestle.svg"},"Patterns":null},"mosque.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mosque.svg"},"Patterns":null},"mosquito-net.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mosquito-net.svg"},"Patterns":null},"mosquito.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mosquito.svg"},"Patterns":null},"motorcycle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/motorcycle.svg"},"Patterns":null},"mound.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mound.svg"},"Patterns":null},"mountain-city.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mountain-city.svg"},"Patterns":null},"mountain-sun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mountain-sun.svg"},"Patterns":null},"mountain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mountain.svg"},"Patterns":null},"mug-hot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mug-hot.svg"},"Patterns":null},"mug-saucer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mug-saucer.svg"},"Patterns":null},"music.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/music.svg"},"Patterns":null},"n.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/n.svg"},"Patterns":null},"naira-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/naira-sign.svg"},"Patterns":null},"network-wired.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/network-wired.svg"},"Patterns":null},"neuter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/neuter.svg"},"Patterns":null},"newspaper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/newspaper.svg"},"Patterns":null},"not-equal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/not-equal.svg"},"Patterns":null},"note-sticky.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/note-sticky.svg"},"Patterns":null},"notes-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/notes-medical.svg"},"Patterns":null},"o.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/o.svg"},"Patterns":null},"object-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/object-group.svg"},"Patterns":null},"object-ungroup.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/object-ungroup.svg"},"Patterns":null},"oil-can.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/oil-can.svg"},"Patterns":null},"oil-well.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/oil-well.svg"},"Patterns":null},"om.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/om.svg"},"Patterns":null},"otter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/otter.svg"},"Patterns":null},"outdent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/outdent.svg"},"Patterns":null},"p.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/p.svg"},"Patterns":null},"pager.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pager.svg"},"Patterns":null},"paint-roller.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paint-roller.svg"},"Patterns":null},"paintbrush.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paintbrush.svg"},"Patterns":null},"palette.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/palette.svg"},"Patterns":null},"pallet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pallet.svg"},"Patterns":null},"panorama.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/panorama.svg"},"Patterns":null},"paper-plane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paper-plane.svg"},"Patterns":null},"paperclip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paperclip.svg"},"Patterns":null},"parachute-box.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/parachute-box.svg"},"Patterns":null},"paragraph.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paragraph.svg"},"Patterns":null},"passport.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/passport.svg"},"Patterns":null},"paste.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paste.svg"},"Patterns":null},"pause.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pause.svg"},"Patterns":null},"paw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paw.svg"},"Patterns":null},"peace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/peace.svg"},"Patterns":null},"pen-clip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-clip.svg"},"Patterns":null},"pen-fancy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-fancy.svg"},"Patterns":null},"pen-nib.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-nib.svg"},"Patterns":null},"pen-ruler.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-ruler.svg"},"Patterns":null},"pen-to-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-to-square.svg"},"Patterns":null},"pen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen.svg"},"Patterns":null},"pencil.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pencil.svg"},"Patterns":null},"people-arrows-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-arrows-left-right.svg"},"Patterns":null},"people-carry-box.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-carry-box.svg"},"Patterns":null},"people-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-group.svg"},"Patterns":null},"people-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-line.svg"},"Patterns":null},"people-pulling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-pulling.svg"},"Patterns":null},"people-robbery.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-robbery.svg"},"Patterns":null},"people-roof.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-roof.svg"},"Patterns":null},"pepper-hot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pepper-hot.svg"},"Patterns":null},"percent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/percent.svg"},"Patterns":null},"person-arrow-down-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-arrow-down-to-line.svg"},"Patterns":null},"person-arrow-up-from-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-arrow-up-from-line.svg"},"Patterns":null},"person-biking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-biking.svg"},"Patterns":null},"person-booth.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-booth.svg"},"Patterns":null},"person-breastfeeding.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-breastfeeding.svg"},"Patterns":null},"person-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-burst.svg"},"Patterns":null},"person-cane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-cane.svg"},"Patterns":null},"person-chalkboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-chalkboard.svg"},"Patterns":null},"person-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-check.svg"},"Patterns":null},"person-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-exclamation.svg"},"Patterns":null},"person-circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-minus.svg"},"Patterns":null},"person-circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-plus.svg"},"Patterns":null},"person-circle-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-question.svg"},"Patterns":null},"person-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-xmark.svg"},"Patterns":null},"person-digging.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-digging.svg"},"Patterns":null},"person-dots-from-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-dots-from-line.svg"},"Patterns":null},"person-dress-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-dress-burst.svg"},"Patterns":null},"person-dress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-dress.svg"},"Patterns":null},"person-drowning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-drowning.svg"},"Patterns":null},"person-falling-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-falling-burst.svg"},"Patterns":null},"person-falling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-falling.svg"},"Patterns":null},"person-half-dress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-half-dress.svg"},"Patterns":null},"person-harassing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-harassing.svg"},"Patterns":null},"person-hiking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-hiking.svg"},"Patterns":null},"person-military-pointing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-military-pointing.svg"},"Patterns":null},"person-military-rifle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-military-rifle.svg"},"Patterns":null},"person-military-to-person.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-military-to-person.svg"},"Patterns":null},"person-praying.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-praying.svg"},"Patterns":null},"person-pregnant.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-pregnant.svg"},"Patterns":null},"person-rays.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-rays.svg"},"Patterns":null},"person-rifle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-rifle.svg"},"Patterns":null},"person-running.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-running.svg"},"Patterns":null},"person-shelter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-shelter.svg"},"Patterns":null},"person-skating.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-skating.svg"},"Patterns":null},"person-skiing-nordic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-skiing-nordic.svg"},"Patterns":null},"person-skiing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-skiing.svg"},"Patterns":null},"person-snowboarding.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-snowboarding.svg"},"Patterns":null},"person-swimming.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-swimming.svg"},"Patterns":null},"person-through-window.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-through-window.svg"},"Patterns":null},"person-walking-arrow-loop-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-arrow-loop-left.svg"},"Patterns":null},"person-walking-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-arrow-right.svg"},"Patterns":null},"person-walking-dashed-line-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-dashed-line-arrow-right.svg"},"Patterns":null},"person-walking-luggage.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-luggage.svg"},"Patterns":null},"person-walking-with-cane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-with-cane.svg"},"Patterns":null},"person-walking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking.svg"},"Patterns":null},"person.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person.svg"},"Patterns":null},"peseta-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/peseta-sign.svg"},"Patterns":null},"peso-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/peso-sign.svg"},"Patterns":null},"phone-flip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/phone-flip.svg"},"Patterns":null},"phone-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/phone-slash.svg"},"Patterns":null},"phone-volume.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/phone-volume.svg"},"Patterns":null},"phone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/phone.svg"},"Patterns":null},"photo-film.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/photo-film.svg"},"Patterns":null},"piggy-bank.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/piggy-bank.svg"},"Patterns":null},"pills.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pills.svg"},"Patterns":null},"pizza-slice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pizza-slice.svg"},"Patterns":null},"place-of-worship.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/place-of-worship.svg"},"Patterns":null},"plane-arrival.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-arrival.svg"},"Patterns":null},"plane-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-circle-check.svg"},"Patterns":null},"plane-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-circle-exclamation.svg"},"Patterns":null},"plane-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-circle-xmark.svg"},"Patterns":null},"plane-departure.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-departure.svg"},"Patterns":null},"plane-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-lock.svg"},"Patterns":null},"plane-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-slash.svg"},"Patterns":null},"plane-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-up.svg"},"Patterns":null},"plane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane.svg"},"Patterns":null},"plant-wilt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plant-wilt.svg"},"Patterns":null},"plate-wheat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plate-wheat.svg"},"Patterns":null},"play.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/play.svg"},"Patterns":null},"plug-circle-bolt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-bolt.svg"},"Patterns":null},"plug-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-check.svg"},"Patterns":null},"plug-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-exclamation.svg"},"Patterns":null},"plug-circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-minus.svg"},"Patterns":null},"plug-circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-plus.svg"},"Patterns":null},"plug-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-xmark.svg"},"Patterns":null},"plug.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug.svg"},"Patterns":null},"plus-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plus-minus.svg"},"Patterns":null},"plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plus.svg"},"Patterns":null},"podcast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/podcast.svg"},"Patterns":null},"poo-storm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/poo-storm.svg"},"Patterns":null},"poo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/poo.svg"},"Patterns":null},"poop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/poop.svg"},"Patterns":null},"power-off.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/power-off.svg"},"Patterns":null},"prescription-bottle-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/prescription-bottle-medical.svg"},"Patterns":null},"prescription-bottle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/prescription-bottle.svg"},"Patterns":null},"prescription.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/prescription.svg"},"Patterns":null},"print.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/print.svg"},"Patterns":null},"pump-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pump-medical.svg"},"Patterns":null},"pump-soap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pump-soap.svg"},"Patterns":null},"puzzle-piece.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/puzzle-piece.svg"},"Patterns":null},"q.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/q.svg"},"Patterns":null},"qrcode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/qrcode.svg"},"Patterns":null},"question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/question.svg"},"Patterns":null},"quote-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/quote-left.svg"},"Patterns":null},"quote-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/quote-right.svg"},"Patterns":null},"r.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/r.svg"},"Patterns":null},"radiation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/radiation.svg"},"Patterns":null},"radio.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/radio.svg"},"Patterns":null},"rainbow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rainbow.svg"},"Patterns":null},"ranking-star.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ranking-star.svg"},"Patterns":null},"receipt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/receipt.svg"},"Patterns":null},"record-vinyl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/record-vinyl.svg"},"Patterns":null},"rectangle-ad.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rectangle-ad.svg"},"Patterns":null},"rectangle-list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rectangle-list.svg"},"Patterns":null},"rectangle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rectangle-xmark.svg"},"Patterns":null},"recycle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/recycle.svg"},"Patterns":null},"registered.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/registered.svg"},"Patterns":null},"repeat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/repeat.svg"},"Patterns":null},"reply-all.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/reply-all.svg"},"Patterns":null},"reply.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/reply.svg"},"Patterns":null},"republican.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/republican.svg"},"Patterns":null},"restroom.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/restroom.svg"},"Patterns":null},"retweet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/retweet.svg"},"Patterns":null},"ribbon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ribbon.svg"},"Patterns":null},"right-from-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/right-from-bracket.svg"},"Patterns":null},"right-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/right-left.svg"},"Patterns":null},"right-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/right-long.svg"},"Patterns":null},"right-to-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/right-to-bracket.svg"},"Patterns":null},"ring.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ring.svg"},"Patterns":null},"road-barrier.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-barrier.svg"},"Patterns":null},"road-bridge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-bridge.svg"},"Patterns":null},"road-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-circle-check.svg"},"Patterns":null},"road-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-circle-exclamation.svg"},"Patterns":null},"road-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-circle-xmark.svg"},"Patterns":null},"road-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-lock.svg"},"Patterns":null},"road-spikes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-spikes.svg"},"Patterns":null},"road.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road.svg"},"Patterns":null},"robot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/robot.svg"},"Patterns":null},"rocket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rocket.svg"},"Patterns":null},"rotate-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rotate-left.svg"},"Patterns":null},"rotate-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rotate-right.svg"},"Patterns":null},"rotate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rotate.svg"},"Patterns":null},"route.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/route.svg"},"Patterns":null},"rss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rss.svg"},"Patterns":null},"ruble-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruble-sign.svg"},"Patterns":null},"rug.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rug.svg"},"Patterns":null},"ruler-combined.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruler-combined.svg"},"Patterns":null},"ruler-horizontal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruler-horizontal.svg"},"Patterns":null},"ruler-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruler-vertical.svg"},"Patterns":null},"ruler.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruler.svg"},"Patterns":null},"rupee-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rupee-sign.svg"},"Patterns":null},"rupiah-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rupiah-sign.svg"},"Patterns":null},"s.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/s.svg"},"Patterns":null},"sack-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sack-dollar.svg"},"Patterns":null},"sack-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sack-xmark.svg"},"Patterns":null},"sailboat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sailboat.svg"},"Patterns":null},"satellite-dish.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/satellite-dish.svg"},"Patterns":null},"satellite.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/satellite.svg"},"Patterns":null},"scale-balanced.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scale-balanced.svg"},"Patterns":null},"scale-unbalanced-flip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scale-unbalanced-flip.svg"},"Patterns":null},"scale-unbalanced.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scale-unbalanced.svg"},"Patterns":null},"school-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-circle-check.svg"},"Patterns":null},"school-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-circle-exclamation.svg"},"Patterns":null},"school-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-circle-xmark.svg"},"Patterns":null},"school-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-flag.svg"},"Patterns":null},"school-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-lock.svg"},"Patterns":null},"school.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school.svg"},"Patterns":null},"scissors.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scissors.svg"},"Patterns":null},"screwdriver-wrench.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/screwdriver-wrench.svg"},"Patterns":null},"screwdriver.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/screwdriver.svg"},"Patterns":null},"scroll-torah.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scroll-torah.svg"},"Patterns":null},"scroll.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scroll.svg"},"Patterns":null},"sd-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sd-card.svg"},"Patterns":null},"section.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/section.svg"},"Patterns":null},"seedling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/seedling.svg"},"Patterns":null},"server.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/server.svg"},"Patterns":null},"shapes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shapes.svg"},"Patterns":null},"share-from-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/share-from-square.svg"},"Patterns":null},"share-nodes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/share-nodes.svg"},"Patterns":null},"share.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/share.svg"},"Patterns":null},"sheet-plastic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sheet-plastic.svg"},"Patterns":null},"shekel-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shekel-sign.svg"},"Patterns":null},"shield-cat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-cat.svg"},"Patterns":null},"shield-dog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-dog.svg"},"Patterns":null},"shield-halved.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-halved.svg"},"Patterns":null},"shield-heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-heart.svg"},"Patterns":null},"shield-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-virus.svg"},"Patterns":null},"shield.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield.svg"},"Patterns":null},"ship.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ship.svg"},"Patterns":null},"shirt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shirt.svg"},"Patterns":null},"shoe-prints.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shoe-prints.svg"},"Patterns":null},"shop-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shop-lock.svg"},"Patterns":null},"shop-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shop-slash.svg"},"Patterns":null},"shop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shop.svg"},"Patterns":null},"shower.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shower.svg"},"Patterns":null},"shrimp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shrimp.svg"},"Patterns":null},"shuffle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shuffle.svg"},"Patterns":null},"shuttle-space.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shuttle-space.svg"},"Patterns":null},"sign-hanging.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sign-hanging.svg"},"Patterns":null},"signal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/signal.svg"},"Patterns":null},"signature.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/signature.svg"},"Patterns":null},"signs-post.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/signs-post.svg"},"Patterns":null},"sim-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sim-card.svg"},"Patterns":null},"sink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sink.svg"},"Patterns":null},"sitemap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sitemap.svg"},"Patterns":null},"skull-crossbones.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/skull-crossbones.svg"},"Patterns":null},"skull.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/skull.svg"},"Patterns":null},"slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/slash.svg"},"Patterns":null},"sleigh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sleigh.svg"},"Patterns":null},"sliders.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sliders.svg"},"Patterns":null},"smog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/smog.svg"},"Patterns":null},"smoking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/smoking.svg"},"Patterns":null},"snowflake.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/snowflake.svg"},"Patterns":null},"snowman.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/snowman.svg"},"Patterns":null},"snowplow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/snowplow.svg"},"Patterns":null},"soap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/soap.svg"},"Patterns":null},"socks.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/socks.svg"},"Patterns":null},"solar-panel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/solar-panel.svg"},"Patterns":null},"sort-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sort-down.svg"},"Patterns":null},"sort-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sort-up.svg"},"Patterns":null},"sort.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sort.svg"},"Patterns":null},"spa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spa.svg"},"Patterns":null},"spaghetti-monster-flying.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spaghetti-monster-flying.svg"},"Patterns":null},"spell-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spell-check.svg"},"Patterns":null},"spider.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spider.svg"},"Patterns":null},"spinner.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spinner.svg"},"Patterns":null},"splotch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/splotch.svg"},"Patterns":null},"spoon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spoon.svg"},"Patterns":null},"spray-can-sparkles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spray-can-sparkles.svg"},"Patterns":null},"spray-can.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spray-can.svg"},"Patterns":null},"square-arrow-up-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-arrow-up-right.svg"},"Patterns":null},"square-caret-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-caret-down.svg"},"Patterns":null},"square-caret-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-caret-left.svg"},"Patterns":null},"square-caret-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-caret-right.svg"},"Patterns":null},"square-caret-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-caret-up.svg"},"Patterns":null},"square-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-check.svg"},"Patterns":null},"square-envelope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-envelope.svg"},"Patterns":null},"square-full.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-full.svg"},"Patterns":null},"square-h.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-h.svg"},"Patterns":null},"square-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-minus.svg"},"Patterns":null},"square-nfi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-nfi.svg"},"Patterns":null},"square-parking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-parking.svg"},"Patterns":null},"square-pen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-pen.svg"},"Patterns":null},"square-person-confined.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-person-confined.svg"},"Patterns":null},"square-phone-flip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-phone-flip.svg"},"Patterns":null},"square-phone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-phone.svg"},"Patterns":null},"square-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-plus.svg"},"Patterns":null},"square-poll-horizontal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-poll-horizontal.svg"},"Patterns":null},"square-poll-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-poll-vertical.svg"},"Patterns":null},"square-root-variable.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-root-variable.svg"},"Patterns":null},"square-rss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-rss.svg"},"Patterns":null},"square-share-nodes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-share-nodes.svg"},"Patterns":null},"square-up-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-up-right.svg"},"Patterns":null},"square-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-virus.svg"},"Patterns":null},"square-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-xmark.svg"},"Patterns":null},"square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square.svg"},"Patterns":null},"staff-aesculapius.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/staff-aesculapius.svg"},"Patterns":null},"stairs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stairs.svg"},"Patterns":null},"stamp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stamp.svg"},"Patterns":null},"star-and-crescent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-and-crescent.svg"},"Patterns":null},"star-half-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-half-stroke.svg"},"Patterns":null},"star-half.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-half.svg"},"Patterns":null},"star-of-david.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-of-david.svg"},"Patterns":null},"star-of-life.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-of-life.svg"},"Patterns":null},"star.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star.svg"},"Patterns":null},"sterling-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sterling-sign.svg"},"Patterns":null},"stethoscope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stethoscope.svg"},"Patterns":null},"stop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stop.svg"},"Patterns":null},"stopwatch-20.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stopwatch-20.svg"},"Patterns":null},"stopwatch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stopwatch.svg"},"Patterns":null},"store-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/store-slash.svg"},"Patterns":null},"store.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/store.svg"},"Patterns":null},"street-view.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/street-view.svg"},"Patterns":null},"strikethrough.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/strikethrough.svg"},"Patterns":null},"stroopwafel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stroopwafel.svg"},"Patterns":null},"subscript.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/subscript.svg"},"Patterns":null},"suitcase-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/suitcase-medical.svg"},"Patterns":null},"suitcase-rolling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/suitcase-rolling.svg"},"Patterns":null},"suitcase.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/suitcase.svg"},"Patterns":null},"sun-plant-wilt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sun-plant-wilt.svg"},"Patterns":null},"sun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sun.svg"},"Patterns":null},"superscript.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/superscript.svg"},"Patterns":null},"swatchbook.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/swatchbook.svg"},"Patterns":null},"synagogue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/synagogue.svg"},"Patterns":null},"syringe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/syringe.svg"},"Patterns":null},"t.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/t.svg"},"Patterns":null},"table-cells-large.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-cells-large.svg"},"Patterns":null},"table-cells.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-cells.svg"},"Patterns":null},"table-columns.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-columns.svg"},"Patterns":null},"table-list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-list.svg"},"Patterns":null},"table-tennis-paddle-ball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-tennis-paddle-ball.svg"},"Patterns":null},"table.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table.svg"},"Patterns":null},"tablet-button.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tablet-button.svg"},"Patterns":null},"tablet-screen-button.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tablet-screen-button.svg"},"Patterns":null},"tablet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tablet.svg"},"Patterns":null},"tablets.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tablets.svg"},"Patterns":null},"tachograph-digital.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tachograph-digital.svg"},"Patterns":null},"tag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tag.svg"},"Patterns":null},"tags.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tags.svg"},"Patterns":null},"tape.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tape.svg"},"Patterns":null},"tarp-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tarp-droplet.svg"},"Patterns":null},"tarp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tarp.svg"},"Patterns":null},"taxi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/taxi.svg"},"Patterns":null},"teeth-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/teeth-open.svg"},"Patterns":null},"teeth.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/teeth.svg"},"Patterns":null},"temperature-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-arrow-down.svg"},"Patterns":null},"temperature-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-arrow-up.svg"},"Patterns":null},"temperature-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-empty.svg"},"Patterns":null},"temperature-full.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-full.svg"},"Patterns":null},"temperature-half.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-half.svg"},"Patterns":null},"temperature-high.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-high.svg"},"Patterns":null},"temperature-low.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-low.svg"},"Patterns":null},"temperature-quarter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-quarter.svg"},"Patterns":null},"temperature-three-quarters.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-three-quarters.svg"},"Patterns":null},"tenge-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tenge-sign.svg"},"Patterns":null},"tent-arrow-down-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent-arrow-down-to-line.svg"},"Patterns":null},"tent-arrow-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent-arrow-left-right.svg"},"Patterns":null},"tent-arrow-turn-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent-arrow-turn-left.svg"},"Patterns":null},"tent-arrows-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent-arrows-down.svg"},"Patterns":null},"tent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent.svg"},"Patterns":null},"tents.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tents.svg"},"Patterns":null},"terminal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/terminal.svg"},"Patterns":null},"text-height.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/text-height.svg"},"Patterns":null},"text-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/text-slash.svg"},"Patterns":null},"text-width.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/text-width.svg"},"Patterns":null},"thermometer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/thermometer.svg"},"Patterns":null},"thumbs-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/thumbs-down.svg"},"Patterns":null},"thumbs-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/thumbs-up.svg"},"Patterns":null},"thumbtack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/thumbtack.svg"},"Patterns":null},"ticket-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ticket-simple.svg"},"Patterns":null},"ticket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ticket.svg"},"Patterns":null},"timeline.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/timeline.svg"},"Patterns":null},"toggle-off.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toggle-off.svg"},"Patterns":null},"toggle-on.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toggle-on.svg"},"Patterns":null},"toilet-paper-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilet-paper-slash.svg"},"Patterns":null},"toilet-paper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilet-paper.svg"},"Patterns":null},"toilet-portable.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilet-portable.svg"},"Patterns":null},"toilet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilet.svg"},"Patterns":null},"toilets-portable.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilets-portable.svg"},"Patterns":null},"toolbox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toolbox.svg"},"Patterns":null},"tooth.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tooth.svg"},"Patterns":null},"torii-gate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/torii-gate.svg"},"Patterns":null},"tornado.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tornado.svg"},"Patterns":null},"tower-broadcast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tower-broadcast.svg"},"Patterns":null},"tower-cell.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tower-cell.svg"},"Patterns":null},"tower-observation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tower-observation.svg"},"Patterns":null},"tractor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tractor.svg"},"Patterns":null},"trademark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trademark.svg"},"Patterns":null},"traffic-light.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/traffic-light.svg"},"Patterns":null},"trailer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trailer.svg"},"Patterns":null},"train-subway.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/train-subway.svg"},"Patterns":null},"train-tram.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/train-tram.svg"},"Patterns":null},"train.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/train.svg"},"Patterns":null},"transgender.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/transgender.svg"},"Patterns":null},"trash-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trash-arrow-up.svg"},"Patterns":null},"trash-can-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trash-can-arrow-up.svg"},"Patterns":null},"trash-can.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trash-can.svg"},"Patterns":null},"trash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trash.svg"},"Patterns":null},"tree-city.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tree-city.svg"},"Patterns":null},"tree.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tree.svg"},"Patterns":null},"triangle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/triangle-exclamation.svg"},"Patterns":null},"trophy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trophy.svg"},"Patterns":null},"trowel-bricks.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trowel-bricks.svg"},"Patterns":null},"trowel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trowel.svg"},"Patterns":null},"truck-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-arrow-right.svg"},"Patterns":null},"truck-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-droplet.svg"},"Patterns":null},"truck-fast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-fast.svg"},"Patterns":null},"truck-field-un.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-field-un.svg"},"Patterns":null},"truck-field.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-field.svg"},"Patterns":null},"truck-front.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-front.svg"},"Patterns":null},"truck-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-medical.svg"},"Patterns":null},"truck-monster.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-monster.svg"},"Patterns":null},"truck-moving.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-moving.svg"},"Patterns":null},"truck-pickup.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-pickup.svg"},"Patterns":null},"truck-plane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-plane.svg"},"Patterns":null},"truck-ramp-box.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-ramp-box.svg"},"Patterns":null},"truck.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck.svg"},"Patterns":null},"tty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tty.svg"},"Patterns":null},"turkish-lira-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/turkish-lira-sign.svg"},"Patterns":null},"turn-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/turn-down.svg"},"Patterns":null},"turn-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/turn-up.svg"},"Patterns":null},"tv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tv.svg"},"Patterns":null},"u.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/u.svg"},"Patterns":null},"umbrella-beach.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/umbrella-beach.svg"},"Patterns":null},"umbrella.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/umbrella.svg"},"Patterns":null},"underline.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/underline.svg"},"Patterns":null},"universal-access.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/universal-access.svg"},"Patterns":null},"unlock-keyhole.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/unlock-keyhole.svg"},"Patterns":null},"unlock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/unlock.svg"},"Patterns":null},"up-down-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-down-left-right.svg"},"Patterns":null},"up-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-down.svg"},"Patterns":null},"up-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-long.svg"},"Patterns":null},"up-right-and-down-left-from-center.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-right-and-down-left-from-center.svg"},"Patterns":null},"up-right-from-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-right-from-square.svg"},"Patterns":null},"upload.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/upload.svg"},"Patterns":null},"user-astronaut.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-astronaut.svg"},"Patterns":null},"user-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-check.svg"},"Patterns":null},"user-clock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-clock.svg"},"Patterns":null},"user-doctor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-doctor.svg"},"Patterns":null},"user-gear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-gear.svg"},"Patterns":null},"user-graduate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-graduate.svg"},"Patterns":null},"user-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-group.svg"},"Patterns":null},"user-injured.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-injured.svg"},"Patterns":null},"user-large-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-large-slash.svg"},"Patterns":null},"user-large.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-large.svg"},"Patterns":null},"user-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-lock.svg"},"Patterns":null},"user-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-minus.svg"},"Patterns":null},"user-ninja.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-ninja.svg"},"Patterns":null},"user-nurse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-nurse.svg"},"Patterns":null},"user-pen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-pen.svg"},"Patterns":null},"user-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-plus.svg"},"Patterns":null},"user-secret.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-secret.svg"},"Patterns":null},"user-shield.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-shield.svg"},"Patterns":null},"user-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-slash.svg"},"Patterns":null},"user-tag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-tag.svg"},"Patterns":null},"user-tie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-tie.svg"},"Patterns":null},"user-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-xmark.svg"},"Patterns":null},"user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user.svg"},"Patterns":null},"users-between-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-between-lines.svg"},"Patterns":null},"users-gear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-gear.svg"},"Patterns":null},"users-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-line.svg"},"Patterns":null},"users-rays.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-rays.svg"},"Patterns":null},"users-rectangle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-rectangle.svg"},"Patterns":null},"users-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-slash.svg"},"Patterns":null},"users-viewfinder.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-viewfinder.svg"},"Patterns":null},"users.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users.svg"},"Patterns":null},"utensils.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/utensils.svg"},"Patterns":null},"v.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/v.svg"},"Patterns":null},"van-shuttle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/van-shuttle.svg"},"Patterns":null},"vault.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vault.svg"},"Patterns":null},"vector-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vector-square.svg"},"Patterns":null},"venus-double.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/venus-double.svg"},"Patterns":null},"venus-mars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/venus-mars.svg"},"Patterns":null},"venus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/venus.svg"},"Patterns":null},"vest-patches.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vest-patches.svg"},"Patterns":null},"vest.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vest.svg"},"Patterns":null},"vial-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vial-circle-check.svg"},"Patterns":null},"vial-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vial-virus.svg"},"Patterns":null},"vial.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vial.svg"},"Patterns":null},"vials.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vials.svg"},"Patterns":null},"video-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/video-slash.svg"},"Patterns":null},"video.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/video.svg"},"Patterns":null},"vihara.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vihara.svg"},"Patterns":null},"virus-covid-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/virus-covid-slash.svg"},"Patterns":null},"virus-covid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/virus-covid.svg"},"Patterns":null},"virus-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/virus-slash.svg"},"Patterns":null},"virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/virus.svg"},"Patterns":null},"viruses.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/viruses.svg"},"Patterns":null},"voicemail.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/voicemail.svg"},"Patterns":null},"volcano.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volcano.svg"},"Patterns":null},"volleyball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volleyball.svg"},"Patterns":null},"volume-high.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volume-high.svg"},"Patterns":null},"volume-low.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volume-low.svg"},"Patterns":null},"volume-off.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volume-off.svg"},"Patterns":null},"volume-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volume-xmark.svg"},"Patterns":null},"vr-cardboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vr-cardboard.svg"},"Patterns":null},"w.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/w.svg"},"Patterns":null},"walkie-talkie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/walkie-talkie.svg"},"Patterns":null},"wallet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wallet.svg"},"Patterns":null},"wand-magic-sparkles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wand-magic-sparkles.svg"},"Patterns":null},"wand-magic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wand-magic.svg"},"Patterns":null},"wand-sparkles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wand-sparkles.svg"},"Patterns":null},"warehouse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/warehouse.svg"},"Patterns":null},"water-ladder.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/water-ladder.svg"},"Patterns":null},"water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/water.svg"},"Patterns":null},"wave-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wave-square.svg"},"Patterns":null},"weight-hanging.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/weight-hanging.svg"},"Patterns":null},"weight-scale.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/weight-scale.svg"},"Patterns":null},"wheat-awn-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wheat-awn-circle-exclamation.svg"},"Patterns":null},"wheat-awn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wheat-awn.svg"},"Patterns":null},"wheelchair-move.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wheelchair-move.svg"},"Patterns":null},"wheelchair.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wheelchair.svg"},"Patterns":null},"whiskey-glass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/whiskey-glass.svg"},"Patterns":null},"wifi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wifi.svg"},"Patterns":null},"wind.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wind.svg"},"Patterns":null},"window-maximize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/window-maximize.svg"},"Patterns":null},"window-minimize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/window-minimize.svg"},"Patterns":null},"window-restore.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/window-restore.svg"},"Patterns":null},"wine-bottle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wine-bottle.svg"},"Patterns":null},"wine-glass-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wine-glass-empty.svg"},"Patterns":null},"wine-glass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wine-glass.svg"},"Patterns":null},"won-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/won-sign.svg"},"Patterns":null},"worm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/worm.svg"},"Patterns":null},"wrench.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wrench.svg"},"Patterns":null},"x-ray.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/x-ray.svg"},"Patterns":null},"x.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/x.svg"},"Patterns":null},"xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/xmark.svg"},"Patterns":null},"xmarks-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/xmarks-lines.svg"},"Patterns":null},"y.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/y.svg"},"Patterns":null},"yen-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/yen-sign.svg"},"Patterns":null},"yin-yang.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/yin-yang.svg"},"Patterns":null},"z.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/z.svg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"webfonts":{"Children":{"fa-brands-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-brands-400.ttf"},"Patterns":null},"fa-brands-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-brands-400.woff2"},"Patterns":null},"fa-regular-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-regular-400.ttf"},"Patterns":null},"fa-regular-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-regular-400.woff2"},"Patterns":null},"fa-solid-900.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-solid-900.ttf"},"Patterns":null},"fa-solid-900.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-solid-900.woff2"},"Patterns":null},"fa-v4compatibility.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-v4compatibility.ttf"},"Patterns":null},"fa-v4compatibility.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-v4compatibility.woff2"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"MyWebsite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MyWebsite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/bin/Debug/net7.0/appsettings.Development.json b/bin/Debug/net7.0/appsettings.Development.json
deleted file mode 100644
index f042c67..0000000
--- a/bin/Debug/net7.0/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DetailedErrors": true,
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- }
-}
diff --git a/bin/Debug/net7.0/appsettings.json b/bin/Debug/net7.0/appsettings.json
deleted file mode 100644
index 4d56694..0000000
--- a/bin/Debug/net7.0/appsettings.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..8bf16b5
--- /dev/null
+++ b/index.html
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+ Bienvenue sur mon site internet!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
deleted file mode 100644
index d69481d..0000000
--- a/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/obj/Debug/net7.0/MyWebsite.AssemblyInfo.cs b/obj/Debug/net7.0/MyWebsite.AssemblyInfo.cs
deleted file mode 100644
index e34022e..0000000
--- a/obj/Debug/net7.0/MyWebsite.AssemblyInfo.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("MyWebsite")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("MyWebsite")]
-[assembly: System.Reflection.AssemblyTitleAttribute("MyWebsite")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/obj/Debug/net7.0/MyWebsite.AssemblyInfoInputs.cache b/obj/Debug/net7.0/MyWebsite.AssemblyInfoInputs.cache
deleted file mode 100644
index be34301..0000000
--- a/obj/Debug/net7.0/MyWebsite.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-f1c7a2aa10f2c43ca882a93bf871b5070504c54f
diff --git a/obj/Debug/net7.0/MyWebsite.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/MyWebsite.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 4bd000e..0000000
--- a/obj/Debug/net7.0/MyWebsite.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,61 +0,0 @@
-is_global = true
-build_property.TargetFramework = net7.0
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb = true
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property.EnforceExtendedAnalyzerRules =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = MyWebsite
-build_property.RootNamespace = MyWebsite
-build_property.ProjectDir = /home/merlin/MyWebsite/
-build_property.RazorLangVersion = 7.0
-build_property.SupportLocalizedComponentNames =
-build_property.GenerateRazorMetadataSourceChecksumAttributes =
-build_property.MSBuildProjectDirectory = /home/merlin/MyWebsite
-build_property._RazorSourceGeneratorDebug =
-
-[/home/merlin/MyWebsite/Pages/Contact.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvQ29udGFjdC5jc2h0bWw=
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/Error.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvRXJyb3IuY3NodG1s
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/Index.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvSW5kZXguY3NodG1s
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/Objectif.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvT2JqZWN0aWYuY3NodG1s
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/Portfolio.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvUG9ydGZvbGlvLmNzaHRtbA==
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/Privacy.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvUHJpdmFjeS5jc2h0bWw=
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/Shared/_ValidationScriptsPartial.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvU2hhcmVkL19WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/Technologies.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvVGVjaG5vbG9naWVzLmNzaHRtbA==
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/_ViewImports.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX1ZpZXdJbXBvcnRzLmNzaHRtbA==
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/_ViewStart.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX1ZpZXdTdGFydC5jc2h0bWw=
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/merlin/MyWebsite/Pages/Shared/_Layout.cshtml]
-build_metadata.AdditionalFiles.TargetPath = UGFnZXMvU2hhcmVkL19MYXlvdXQuY3NodG1s
-build_metadata.AdditionalFiles.CssScope = b-p8z4s7nqbf
diff --git a/obj/Debug/net7.0/MyWebsite.GlobalUsings.g.cs b/obj/Debug/net7.0/MyWebsite.GlobalUsings.g.cs
deleted file mode 100644
index 025530a..0000000
--- a/obj/Debug/net7.0/MyWebsite.GlobalUsings.g.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-global using global::Microsoft.AspNetCore.Builder;
-global using global::Microsoft.AspNetCore.Hosting;
-global using global::Microsoft.AspNetCore.Http;
-global using global::Microsoft.AspNetCore.Routing;
-global using global::Microsoft.Extensions.Configuration;
-global using global::Microsoft.Extensions.DependencyInjection;
-global using global::Microsoft.Extensions.Hosting;
-global using global::Microsoft.Extensions.Logging;
-global using global::System;
-global using global::System.Collections.Generic;
-global using global::System.IO;
-global using global::System.Linq;
-global using global::System.Net.Http;
-global using global::System.Net.Http.Json;
-global using global::System.Threading;
-global using global::System.Threading.Tasks;
diff --git a/obj/Debug/net7.0/MyWebsite.MvcApplicationPartsAssemblyInfo.cache b/obj/Debug/net7.0/MyWebsite.MvcApplicationPartsAssemblyInfo.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cache b/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cache
deleted file mode 100644
index f24b41d..0000000
--- a/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cache
+++ /dev/null
@@ -1 +0,0 @@
-5860763757f4f08c7ebdea1b3a94a18109f17861
diff --git a/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cs b/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cs
deleted file mode 100644
index 31c8eab..0000000
--- a/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" +
- "ory, Microsoft.AspNetCore.Mvc.Razor")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/obj/Debug/net7.0/MyWebsite.assets.cache b/obj/Debug/net7.0/MyWebsite.assets.cache
deleted file mode 100644
index 359bb20..0000000
Binary files a/obj/Debug/net7.0/MyWebsite.assets.cache and /dev/null differ
diff --git a/obj/Debug/net7.0/MyWebsite.csproj.AssemblyReference.cache b/obj/Debug/net7.0/MyWebsite.csproj.AssemblyReference.cache
deleted file mode 100644
index 5e3a1f1..0000000
Binary files a/obj/Debug/net7.0/MyWebsite.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/obj/Debug/net7.0/MyWebsite.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/MyWebsite.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 077890d..0000000
--- a/obj/Debug/net7.0/MyWebsite.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-40a425a10a7fb90e7cc34287ad05337a1b458ea7
diff --git a/obj/Debug/net7.0/MyWebsite.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/MyWebsite.csproj.FileListAbsolute.txt
deleted file mode 100644
index 559f9f0..0000000
--- a/obj/Debug/net7.0/MyWebsite.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,62 +0,0 @@
-/home/merlin/MyWebsite/MyWebsite/bin/Debug/net7.0/appsettings.Development.json
-/home/merlin/MyWebsite/MyWebsite/bin/Debug/net7.0/appsettings.json
-/home/merlin/MyWebsite/MyWebsite/bin/Debug/net7.0/MyWebsite.staticwebassets.runtime.json
-/home/merlin/MyWebsite/MyWebsite/bin/Debug/net7.0/MyWebsite
-/home/merlin/MyWebsite/MyWebsite/bin/Debug/net7.0/MyWebsite.deps.json
-/home/merlin/MyWebsite/MyWebsite/bin/Debug/net7.0/MyWebsite.runtimeconfig.json
-/home/merlin/MyWebsite/MyWebsite/bin/Debug/net7.0/MyWebsite.dll
-/home/merlin/MyWebsite/MyWebsite/bin/Debug/net7.0/MyWebsite.pdb
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.csproj.AssemblyReference.cache
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.GeneratedMSBuildEditorConfig.editorconfig
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.AssemblyInfoInputs.cache
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.AssemblyInfo.cs
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.csproj.CoreCompileInputs.cache
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.MvcApplicationPartsAssemblyInfo.cache
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cache
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cs
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/staticwebassets/msbuild.MyWebsite.Microsoft.AspNetCore.StaticWebAssets.props
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/staticwebassets/msbuild.build.MyWebsite.props
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.MyWebsite.props
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.MyWebsite.props
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/staticwebassets.pack.json
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/staticwebassets.build.json
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/staticwebassets.development.json
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/scopedcss/Pages/Shared/_Layout.cshtml.rz.scp.css
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/scopedcss/bundle/MyWebsite.styles.css
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.dll
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/refint/MyWebsite.dll
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.pdb
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/MyWebsite.genruntimeconfig.cache
-/home/merlin/MyWebsite/MyWebsite/obj/Debug/net7.0/ref/MyWebsite.dll
-/home/merlin/MyWebsite/bin/Debug/net7.0/appsettings.Development.json
-/home/merlin/MyWebsite/bin/Debug/net7.0/appsettings.json
-/home/merlin/MyWebsite/bin/Debug/net7.0/MyWebsite.staticwebassets.runtime.json
-/home/merlin/MyWebsite/bin/Debug/net7.0/MyWebsite
-/home/merlin/MyWebsite/bin/Debug/net7.0/MyWebsite.deps.json
-/home/merlin/MyWebsite/bin/Debug/net7.0/MyWebsite.runtimeconfig.json
-/home/merlin/MyWebsite/bin/Debug/net7.0/MyWebsite.dll
-/home/merlin/MyWebsite/bin/Debug/net7.0/MyWebsite.pdb
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.csproj.AssemblyReference.cache
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.GeneratedMSBuildEditorConfig.editorconfig
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.AssemblyInfoInputs.cache
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.AssemblyInfo.cs
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.csproj.CoreCompileInputs.cache
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.MvcApplicationPartsAssemblyInfo.cache
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cache
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.RazorAssemblyInfo.cs
-/home/merlin/MyWebsite/obj/Debug/net7.0/staticwebassets/msbuild.MyWebsite.Microsoft.AspNetCore.StaticWebAssets.props
-/home/merlin/MyWebsite/obj/Debug/net7.0/staticwebassets/msbuild.build.MyWebsite.props
-/home/merlin/MyWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.MyWebsite.props
-/home/merlin/MyWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.MyWebsite.props
-/home/merlin/MyWebsite/obj/Debug/net7.0/staticwebassets.pack.json
-/home/merlin/MyWebsite/obj/Debug/net7.0/staticwebassets.build.json
-/home/merlin/MyWebsite/obj/Debug/net7.0/staticwebassets.development.json
-/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/Pages/Shared/_Layout.cshtml.rz.scp.css
-/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/bundle/MyWebsite.styles.css
-/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.dll
-/home/merlin/MyWebsite/obj/Debug/net7.0/refint/MyWebsite.dll
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.pdb
-/home/merlin/MyWebsite/obj/Debug/net7.0/MyWebsite.genruntimeconfig.cache
-/home/merlin/MyWebsite/obj/Debug/net7.0/ref/MyWebsite.dll
diff --git a/obj/Debug/net7.0/MyWebsite.dll b/obj/Debug/net7.0/MyWebsite.dll
deleted file mode 100644
index 6ece758..0000000
Binary files a/obj/Debug/net7.0/MyWebsite.dll and /dev/null differ
diff --git a/obj/Debug/net7.0/MyWebsite.genruntimeconfig.cache b/obj/Debug/net7.0/MyWebsite.genruntimeconfig.cache
deleted file mode 100644
index 93466b9..0000000
--- a/obj/Debug/net7.0/MyWebsite.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-ee4e6cbbe32e3f55ba5f942c36e12ac4482c4056
diff --git a/obj/Debug/net7.0/MyWebsite.pdb b/obj/Debug/net7.0/MyWebsite.pdb
deleted file mode 100644
index 2361ee2..0000000
Binary files a/obj/Debug/net7.0/MyWebsite.pdb and /dev/null differ
diff --git a/obj/Debug/net7.0/apphost b/obj/Debug/net7.0/apphost
deleted file mode 100755
index 20dda4e..0000000
Binary files a/obj/Debug/net7.0/apphost and /dev/null differ
diff --git a/obj/Debug/net7.0/ref/MyWebsite.dll b/obj/Debug/net7.0/ref/MyWebsite.dll
deleted file mode 100644
index 945dc23..0000000
Binary files a/obj/Debug/net7.0/ref/MyWebsite.dll and /dev/null differ
diff --git a/obj/Debug/net7.0/refint/MyWebsite.dll b/obj/Debug/net7.0/refint/MyWebsite.dll
deleted file mode 100644
index 945dc23..0000000
Binary files a/obj/Debug/net7.0/refint/MyWebsite.dll and /dev/null differ
diff --git a/obj/Debug/net7.0/scopedcss/Pages/Shared/_Layout.cshtml.rz.scp.css b/obj/Debug/net7.0/scopedcss/Pages/Shared/_Layout.cshtml.rz.scp.css
deleted file mode 100644
index aebd480..0000000
--- a/obj/Debug/net7.0/scopedcss/Pages/Shared/_Layout.cshtml.rz.scp.css
+++ /dev/null
@@ -1,48 +0,0 @@
-/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
-for details on configuring this project to bundle and minify static web assets. */
-
-a.navbar-brand[b-p8z4s7nqbf] {
- white-space: normal;
- text-align: center;
- word-break: break-all;
-}
-
-a[b-p8z4s7nqbf] {
- color: #0077cc;
-}
-
-.btn-primary[b-p8z4s7nqbf] {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.nav-pills .nav-link.active[b-p8z4s7nqbf], .nav-pills .show > .nav-link[b-p8z4s7nqbf] {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.border-top[b-p8z4s7nqbf] {
- border-top: 1px solid #e5e5e5;
-}
-.border-bottom[b-p8z4s7nqbf] {
- border-bottom: 1px solid #e5e5e5;
-}
-
-.box-shadow[b-p8z4s7nqbf] {
- box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
-}
-
-button.accept-policy[b-p8z4s7nqbf] {
- font-size: 1rem;
- line-height: inherit;
-}
-
-.footer[b-p8z4s7nqbf] {
- position: absolute;
- bottom: 0;
- width: 100%;
- white-space: nowrap;
- line-height: 60px;
-}
diff --git a/obj/Debug/net7.0/scopedcss/bundle/MyWebsite.styles.css b/obj/Debug/net7.0/scopedcss/bundle/MyWebsite.styles.css
deleted file mode 100644
index dd86ad8..0000000
--- a/obj/Debug/net7.0/scopedcss/bundle/MyWebsite.styles.css
+++ /dev/null
@@ -1,49 +0,0 @@
-/* _content/MyWebsite/Pages/Shared/_Layout.cshtml.rz.scp.css */
-/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
-for details on configuring this project to bundle and minify static web assets. */
-
-a.navbar-brand[b-p8z4s7nqbf] {
- white-space: normal;
- text-align: center;
- word-break: break-all;
-}
-
-a[b-p8z4s7nqbf] {
- color: #0077cc;
-}
-
-.btn-primary[b-p8z4s7nqbf] {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.nav-pills .nav-link.active[b-p8z4s7nqbf], .nav-pills .show > .nav-link[b-p8z4s7nqbf] {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.border-top[b-p8z4s7nqbf] {
- border-top: 1px solid #e5e5e5;
-}
-.border-bottom[b-p8z4s7nqbf] {
- border-bottom: 1px solid #e5e5e5;
-}
-
-.box-shadow[b-p8z4s7nqbf] {
- box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
-}
-
-button.accept-policy[b-p8z4s7nqbf] {
- font-size: 1rem;
- line-height: inherit;
-}
-
-.footer[b-p8z4s7nqbf] {
- position: absolute;
- bottom: 0;
- width: 100%;
- white-space: nowrap;
- line-height: 60px;
-}
diff --git a/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css b/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css
deleted file mode 100644
index dd86ad8..0000000
--- a/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css
+++ /dev/null
@@ -1,49 +0,0 @@
-/* _content/MyWebsite/Pages/Shared/_Layout.cshtml.rz.scp.css */
-/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
-for details on configuring this project to bundle and minify static web assets. */
-
-a.navbar-brand[b-p8z4s7nqbf] {
- white-space: normal;
- text-align: center;
- word-break: break-all;
-}
-
-a[b-p8z4s7nqbf] {
- color: #0077cc;
-}
-
-.btn-primary[b-p8z4s7nqbf] {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.nav-pills .nav-link.active[b-p8z4s7nqbf], .nav-pills .show > .nav-link[b-p8z4s7nqbf] {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.border-top[b-p8z4s7nqbf] {
- border-top: 1px solid #e5e5e5;
-}
-.border-bottom[b-p8z4s7nqbf] {
- border-bottom: 1px solid #e5e5e5;
-}
-
-.box-shadow[b-p8z4s7nqbf] {
- box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
-}
-
-button.accept-policy[b-p8z4s7nqbf] {
- font-size: 1rem;
- line-height: inherit;
-}
-
-.footer[b-p8z4s7nqbf] {
- position: absolute;
- bottom: 0;
- width: 100%;
- white-space: nowrap;
- line-height: 60px;
-}
diff --git a/obj/Debug/net7.0/staticwebassets.build.json b/obj/Debug/net7.0/staticwebassets.build.json
deleted file mode 100644
index 5e9b5d0..0000000
--- a/obj/Debug/net7.0/staticwebassets.build.json
+++ /dev/null
@@ -1,36740 +0,0 @@
-{
- "Version": 1,
- "Hash": "Mg50zZoIZLlZ57Y1vy40vj6d3A0Mp9xcslDds2R/LvI=",
- "Source": "MyWebsite",
- "BasePath": "_content/MyWebsite",
- "Mode": "Default",
- "ManifestType": "Build",
- "ReferencedProjectsConfiguration": [],
- "DiscoveryPatterns": [
- {
- "Name": "MyWebsite/wwwroot",
- "Source": "MyWebsite",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "Pattern": "**"
- }
- ],
- "Assets": [
- {
- "Identity": "/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/bundle/MyWebsite.styles.css",
- "SourceId": "MyWebsite",
- "SourceType": "Computed",
- "ContentRoot": "/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/bundle/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "MyWebsite.styles.css",
- "AssetKind": "All",
- "AssetMode": "CurrentProject",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "ScopedCss",
- "AssetTraitValue": "ApplicationBundle",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/bundle/MyWebsite.styles.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css",
- "SourceId": "MyWebsite",
- "SourceType": "Computed",
- "ContentRoot": "/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/projectbundle/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "MyWebsite.bundle.scp.css",
- "AssetKind": "All",
- "AssetMode": "Reference",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "ScopedCss",
- "AssetTraitValue": "ProjectBundle",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/Content/Logo.png",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "Content/Logo.png",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/Content/Logo.png"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/css/site.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "css/site.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/css/site.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/favicon.ico",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "favicon.ico",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/favicon.ico"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/Fonts/JetBrainsMono-Regular.woff2",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "Fonts/JetBrainsMono-Regular.woff2",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/Fonts/JetBrainsMono-Regular.woff2"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/js/site.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "js/site.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/js/site.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.js.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.js.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/LICENSE",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/bootstrap/LICENSE",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/bootstrap/LICENSE"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/all.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/all.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/all.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/all.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/all.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/all.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/brands.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/brands.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/brands.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/brands.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/brands.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/brands.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/fontawesome.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/fontawesome.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/fontawesome.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/fontawesome.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/fontawesome.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/fontawesome.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/regular.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/regular.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/regular.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/regular.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/regular.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/regular.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/solid.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/solid.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/solid.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/solid.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/solid.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/solid.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/svg-with-js.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/svg-with-js.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/svg-with-js.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/svg-with-js.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/svg-with-js.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/svg-with-js.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v4-font-face.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/v4-font-face.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/v4-font-face.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v4-font-face.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/v4-font-face.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/v4-font-face.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v4-shims.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/v4-shims.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/v4-shims.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v4-shims.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/v4-shims.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/v4-shims.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v5-font-face.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/v5-font-face.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/v5-font-face.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v5-font-face.min.css",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/css/v5-font-face.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/css/v5-font-face.min.css"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/all.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/all.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/all.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/all.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/all.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/all.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/brands.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/brands.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/brands.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/brands.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/brands.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/brands.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/conflict-detection.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/conflict-detection.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/conflict-detection.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/conflict-detection.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/conflict-detection.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/conflict-detection.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/fontawesome.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/fontawesome.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/fontawesome.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/fontawesome.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/fontawesome.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/fontawesome.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/regular.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/regular.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/regular.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/regular.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/regular.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/regular.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/solid.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/solid.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/solid.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/solid.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/solid.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/solid.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/v4-shims.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/v4-shims.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/v4-shims.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/v4-shims.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/js/v4-shims.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/js/v4-shims.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_animated.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_animated.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_animated.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_bordered-pulled.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_bordered-pulled.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_bordered-pulled.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_core.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_core.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_core.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_fixed-width.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_fixed-width.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_fixed-width.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_icons.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_icons.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_icons.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_list.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_list.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_list.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_mixins.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_mixins.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_mixins.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_rotated-flipped.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_rotated-flipped.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_rotated-flipped.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_screen-reader.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_screen-reader.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_screen-reader.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_shims.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_shims.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_shims.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_sizing.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_sizing.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_sizing.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_stacked.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_stacked.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_stacked.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_variables.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/_variables.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/_variables.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/brands.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/brands.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/brands.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/fontawesome.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/fontawesome.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/fontawesome.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/regular.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/regular.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/regular.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/solid.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/solid.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/solid.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/v4-shims.less",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/less/v4-shims.less",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/less/v4-shims.less"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/LICENSE.txt",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/LICENSE.txt",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/LICENSE.txt"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/categories.yml",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/metadata/categories.yml",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/metadata/categories.yml"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/icons.json",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/metadata/icons.json",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/metadata/icons.json"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/icons.yml",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/metadata/icons.yml",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/metadata/icons.yml"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/shims.json",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/metadata/shims.json",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/metadata/shims.json"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/shims.yml",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/metadata/shims.yml",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/metadata/shims.yml"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/sponsors.yml",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/metadata/sponsors.yml",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/metadata/sponsors.yml"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_animated.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_animated.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_animated.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_bordered-pulled.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_bordered-pulled.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_bordered-pulled.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_core.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_core.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_core.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_fixed-width.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_fixed-width.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_fixed-width.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_functions.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_functions.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_functions.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_icons.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_icons.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_icons.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_list.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_list.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_list.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_mixins.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_mixins.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_mixins.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_rotated-flipped.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_rotated-flipped.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_rotated-flipped.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_screen-reader.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_screen-reader.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_screen-reader.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_shims.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_shims.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_shims.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_sizing.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_sizing.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_sizing.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_stacked.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_stacked.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_stacked.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_variables.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/_variables.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/_variables.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/brands.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/brands.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/brands.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/fontawesome.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/fontawesome.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/fontawesome.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/regular.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/regular.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/regular.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/solid.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/solid.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/solid.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/v4-shims.scss",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/scss/v4-shims.scss",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/scss/v4-shims.scss"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/sprites/brands.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/sprites/brands.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/sprites/brands.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/sprites/regular.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/sprites/regular.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/sprites/regular.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/sprites/solid.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/sprites/solid.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/sprites/solid.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/42-group.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/42-group.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/42-group.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/500px.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/500px.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/500px.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/accessible-icon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/accessible-icon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/accessible-icon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/accusoft.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/accusoft.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/accusoft.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/adn.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/adn.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/adn.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/adversal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/adversal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/adversal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/affiliatetheme.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/affiliatetheme.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/affiliatetheme.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/airbnb.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/airbnb.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/airbnb.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/algolia.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/algolia.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/algolia.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/alipay.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/alipay.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/alipay.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/amazon-pay.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/amazon-pay.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/amazon-pay.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/amazon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/amazon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/amazon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/amilia.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/amilia.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/amilia.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/android.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/android.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/android.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/angellist.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/angellist.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/angellist.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/angrycreative.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/angrycreative.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/angrycreative.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/angular.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/angular.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/angular.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/app-store-ios.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/app-store-ios.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/app-store-ios.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/app-store.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/app-store.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/app-store.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/apper.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/apper.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/apper.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/apple-pay.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/apple-pay.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/apple-pay.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/apple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/apple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/apple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/artstation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/artstation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/artstation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/asymmetrik.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/asymmetrik.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/asymmetrik.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/atlassian.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/atlassian.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/atlassian.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/audible.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/audible.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/audible.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/autoprefixer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/autoprefixer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/autoprefixer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/avianex.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/avianex.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/avianex.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/aviato.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/aviato.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/aviato.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/aws.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/aws.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/aws.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bandcamp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bandcamp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bandcamp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/battle-net.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/battle-net.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/battle-net.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/behance-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/behance-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/behance-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/behance.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/behance.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/behance.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bilibili.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bilibili.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bilibili.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bimobject.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bimobject.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bimobject.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bitbucket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bitbucket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bitbucket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bitcoin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bitcoin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bitcoin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bity.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bity.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bity.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/black-tie.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/black-tie.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/black-tie.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/blackberry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/blackberry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/blackberry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/blogger-b.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/blogger-b.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/blogger-b.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/blogger.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/blogger.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/blogger.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bluetooth-b.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bluetooth-b.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bluetooth-b.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bluetooth.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bluetooth.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bluetooth.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bootstrap.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bootstrap.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bootstrap.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bots.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/bots.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/bots.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/btc.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/btc.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/btc.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/buffer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/buffer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/buffer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/buromobelexperte.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/buromobelexperte.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/buromobelexperte.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/buy-n-large.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/buy-n-large.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/buy-n-large.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/buysellads.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/buysellads.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/buysellads.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/canadian-maple-leaf.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/canadian-maple-leaf.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/canadian-maple-leaf.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-amazon-pay.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-amazon-pay.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-amazon-pay.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-amex.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-amex.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-amex.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-apple-pay.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-apple-pay.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-apple-pay.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-diners-club.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-diners-club.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-diners-club.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-discover.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-discover.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-discover.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-jcb.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-jcb.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-jcb.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-mastercard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-mastercard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-mastercard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-paypal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-paypal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-paypal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-stripe.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-stripe.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-stripe.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-visa.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cc-visa.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cc-visa.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/centercode.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/centercode.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/centercode.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/centos.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/centos.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/centos.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/chrome.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/chrome.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/chrome.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/chromecast.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/chromecast.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/chromecast.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cloudflare.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cloudflare.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cloudflare.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cloudscale.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cloudscale.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cloudscale.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cloudsmith.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cloudsmith.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cloudsmith.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cloudversify.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cloudversify.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cloudversify.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cmplid.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cmplid.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cmplid.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/codepen.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/codepen.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/codepen.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/codiepie.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/codiepie.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/codiepie.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/confluence.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/confluence.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/confluence.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/connectdevelop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/connectdevelop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/connectdevelop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/contao.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/contao.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/contao.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cotton-bureau.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cotton-bureau.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cotton-bureau.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cpanel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cpanel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cpanel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-by.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-by.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-by.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nc-eu.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-nc-eu.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nc-eu.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nc-jp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-nc-jp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nc-jp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nc.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-nc.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nc.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nd.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-nd.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nd.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-pd-alt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-pd-alt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-pd-alt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-pd.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-pd.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-pd.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-remix.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-remix.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-remix.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-sa.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-sa.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-sa.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-sampling-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-sampling-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-sampling-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-sampling.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-sampling.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-sampling.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-share.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-share.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-share.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-zero.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons-zero.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons-zero.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/creative-commons.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/creative-commons.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/critical-role.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/critical-role.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/critical-role.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/css3-alt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/css3-alt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/css3-alt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/css3.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/css3.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/css3.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cuttlefish.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/cuttlefish.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/cuttlefish.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/d-and-d-beyond.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/d-and-d-beyond.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/d-and-d-beyond.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/d-and-d.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/d-and-d.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/d-and-d.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dailymotion.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/dailymotion.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/dailymotion.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dashcube.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/dashcube.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/dashcube.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/deezer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/deezer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/deezer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/delicious.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/delicious.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/delicious.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/deploydog.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/deploydog.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/deploydog.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/deskpro.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/deskpro.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/deskpro.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dev.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/dev.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/dev.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/deviantart.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/deviantart.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/deviantart.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dhl.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/dhl.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/dhl.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/diaspora.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/diaspora.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/diaspora.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/digg.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/digg.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/digg.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/digital-ocean.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/digital-ocean.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/digital-ocean.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/discord.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/discord.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/discord.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/discourse.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/discourse.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/discourse.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dochub.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/dochub.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/dochub.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/docker.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/docker.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/docker.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/draft2digital.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/draft2digital.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/draft2digital.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dribbble-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/dribbble-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/dribbble-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dribbble.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/dribbble.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/dribbble.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dropbox.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/dropbox.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/dropbox.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/drupal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/drupal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/drupal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dyalog.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/dyalog.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/dyalog.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/earlybirds.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/earlybirds.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/earlybirds.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ebay.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ebay.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ebay.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/edge-legacy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/edge-legacy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/edge-legacy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/edge.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/edge.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/edge.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/elementor.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/elementor.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/elementor.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ello.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ello.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ello.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ember.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ember.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ember.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/empire.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/empire.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/empire.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/envira.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/envira.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/envira.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/erlang.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/erlang.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/erlang.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ethereum.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ethereum.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ethereum.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/etsy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/etsy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/etsy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/evernote.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/evernote.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/evernote.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/expeditedssl.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/expeditedssl.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/expeditedssl.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/facebook-f.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/facebook-f.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/facebook-f.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/facebook-messenger.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/facebook-messenger.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/facebook-messenger.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/facebook-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/facebook-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/facebook-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/facebook.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/facebook.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/facebook.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fantasy-flight-games.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/fantasy-flight-games.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/fantasy-flight-games.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fedex.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/fedex.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/fedex.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fedora.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/fedora.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/fedora.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/figma.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/figma.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/figma.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/firefox-browser.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/firefox-browser.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/firefox-browser.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/firefox.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/firefox.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/firefox.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/first-order-alt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/first-order-alt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/first-order-alt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/first-order.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/first-order.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/first-order.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/firstdraft.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/firstdraft.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/firstdraft.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/flickr.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/flickr.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/flickr.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/flipboard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/flipboard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/flipboard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fly.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/fly.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/fly.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/font-awesome.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/font-awesome.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/font-awesome.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fonticons-fi.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/fonticons-fi.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/fonticons-fi.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fonticons.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/fonticons.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/fonticons.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fort-awesome-alt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/fort-awesome-alt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/fort-awesome-alt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fort-awesome.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/fort-awesome.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/fort-awesome.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/forumbee.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/forumbee.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/forumbee.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/foursquare.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/foursquare.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/foursquare.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/free-code-camp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/free-code-camp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/free-code-camp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/freebsd.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/freebsd.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/freebsd.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fulcrum.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/fulcrum.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/fulcrum.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/galactic-republic.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/galactic-republic.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/galactic-republic.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/galactic-senate.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/galactic-senate.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/galactic-senate.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/get-pocket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/get-pocket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/get-pocket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gg-circle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/gg-circle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/gg-circle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gg.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/gg.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/gg.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/git-alt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/git-alt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/git-alt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/git-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/git-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/git-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/git.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/git.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/git.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/github-alt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/github-alt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/github-alt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/github-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/github-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/github-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/github.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/github.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/github.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gitkraken.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/gitkraken.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/gitkraken.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gitlab.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/gitlab.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/gitlab.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gitter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/gitter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/gitter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/glide-g.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/glide-g.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/glide-g.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/glide.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/glide.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/glide.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gofore.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/gofore.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/gofore.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/golang.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/golang.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/golang.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/goodreads-g.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/goodreads-g.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/goodreads-g.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/goodreads.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/goodreads.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/goodreads.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-drive.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/google-drive.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/google-drive.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-pay.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/google-pay.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/google-pay.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-play.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/google-play.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/google-play.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-plus-g.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/google-plus-g.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/google-plus-g.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-plus-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/google-plus-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/google-plus-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/google-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/google-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-wallet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/google-wallet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/google-wallet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/google.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/google.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gratipay.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/gratipay.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/gratipay.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/grav.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/grav.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/grav.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gripfire.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/gripfire.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/gripfire.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/grunt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/grunt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/grunt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/guilded.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/guilded.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/guilded.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gulp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/gulp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/gulp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hacker-news-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hacker-news-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hacker-news-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hacker-news.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hacker-news.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hacker-news.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hackerrank.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hackerrank.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hackerrank.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hashnode.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hashnode.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hashnode.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hips.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hips.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hips.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hire-a-helper.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hire-a-helper.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hire-a-helper.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hive.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hive.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hive.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hooli.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hooli.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hooli.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hornbill.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hornbill.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hornbill.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hotjar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hotjar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hotjar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/houzz.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/houzz.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/houzz.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/html5.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/html5.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/html5.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hubspot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/hubspot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/hubspot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ideal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ideal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ideal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/imdb.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/imdb.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/imdb.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/instagram-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/instagram-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/instagram-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/instagram.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/instagram.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/instagram.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/instalod.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/instalod.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/instalod.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/intercom.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/intercom.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/intercom.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/internet-explorer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/internet-explorer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/internet-explorer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/invision.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/invision.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/invision.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ioxhost.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ioxhost.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ioxhost.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/itch-io.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/itch-io.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/itch-io.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/itunes-note.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/itunes-note.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/itunes-note.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/itunes.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/itunes.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/itunes.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/java.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/java.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/java.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/jedi-order.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/jedi-order.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/jedi-order.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/jenkins.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/jenkins.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/jenkins.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/jira.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/jira.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/jira.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/joget.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/joget.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/joget.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/joomla.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/joomla.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/joomla.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/js-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/js-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/js-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/js.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/js.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/js.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/jsfiddle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/jsfiddle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/jsfiddle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/kaggle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/kaggle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/kaggle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/keybase.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/keybase.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/keybase.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/keycdn.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/keycdn.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/keycdn.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/kickstarter-k.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/kickstarter-k.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/kickstarter-k.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/kickstarter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/kickstarter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/kickstarter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/korvue.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/korvue.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/korvue.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/laravel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/laravel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/laravel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/lastfm-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/lastfm-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/lastfm-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/lastfm.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/lastfm.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/lastfm.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/leanpub.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/leanpub.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/leanpub.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/less.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/less.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/less.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/linkedin-in.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/linkedin-in.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/linkedin-in.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/linkedin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/linkedin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/linkedin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/linode.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/linode.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/linode.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/linux.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/linux.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/linux.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/lyft.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/lyft.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/lyft.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/magento.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/magento.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/magento.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mailchimp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/mailchimp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/mailchimp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mandalorian.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/mandalorian.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/mandalorian.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/markdown.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/markdown.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/markdown.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mastodon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/mastodon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/mastodon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/maxcdn.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/maxcdn.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/maxcdn.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mdb.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/mdb.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/mdb.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/medapps.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/medapps.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/medapps.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/medium.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/medium.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/medium.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/medrt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/medrt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/medrt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/meetup.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/meetup.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/meetup.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/megaport.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/megaport.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/megaport.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mendeley.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/mendeley.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/mendeley.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/microblog.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/microblog.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/microblog.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/microsoft.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/microsoft.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/microsoft.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mix.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/mix.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/mix.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mixcloud.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/mixcloud.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/mixcloud.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mixer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/mixer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/mixer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mizuni.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/mizuni.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/mizuni.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/modx.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/modx.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/modx.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/monero.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/monero.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/monero.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/napster.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/napster.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/napster.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/neos.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/neos.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/neos.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/nfc-directional.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/nfc-directional.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/nfc-directional.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/nfc-symbol.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/nfc-symbol.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/nfc-symbol.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/nimblr.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/nimblr.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/nimblr.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/node-js.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/node-js.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/node-js.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/node.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/node.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/node.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/npm.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/npm.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/npm.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ns8.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ns8.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ns8.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/nutritionix.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/nutritionix.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/nutritionix.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/octopus-deploy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/octopus-deploy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/octopus-deploy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/odnoklassniki-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/odnoklassniki-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/odnoklassniki-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/odnoklassniki.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/odnoklassniki.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/odnoklassniki.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/old-republic.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/old-republic.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/old-republic.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/opencart.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/opencart.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/opencart.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/openid.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/openid.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/openid.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/opera.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/opera.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/opera.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/optin-monster.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/optin-monster.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/optin-monster.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/orcid.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/orcid.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/orcid.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/osi.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/osi.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/osi.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/padlet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/padlet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/padlet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/page4.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/page4.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/page4.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pagelines.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pagelines.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pagelines.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/palfed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/palfed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/palfed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/patreon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/patreon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/patreon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/paypal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/paypal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/paypal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/perbyte.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/perbyte.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/perbyte.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/periscope.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/periscope.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/periscope.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/phabricator.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/phabricator.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/phabricator.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/phoenix-framework.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/phoenix-framework.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/phoenix-framework.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/phoenix-squadron.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/phoenix-squadron.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/phoenix-squadron.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/php.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/php.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/php.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper-alt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pied-piper-alt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pied-piper-alt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper-hat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pied-piper-hat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pied-piper-hat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper-pp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pied-piper-pp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pied-piper-pp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pied-piper-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pied-piper-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pied-piper.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pied-piper.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pinterest-p.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pinterest-p.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pinterest-p.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pinterest-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pinterest-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pinterest-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pinterest.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pinterest.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pinterest.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pix.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pix.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pix.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/playstation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/playstation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/playstation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/product-hunt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/product-hunt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/product-hunt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pushed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/pushed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/pushed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/python.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/python.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/python.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/qq.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/qq.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/qq.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/quinscape.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/quinscape.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/quinscape.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/quora.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/quora.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/quora.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/r-project.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/r-project.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/r-project.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/raspberry-pi.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/raspberry-pi.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/raspberry-pi.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ravelry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ravelry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ravelry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/react.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/react.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/react.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/reacteurope.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/reacteurope.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/reacteurope.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/readme.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/readme.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/readme.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rebel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/rebel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/rebel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/red-river.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/red-river.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/red-river.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/reddit-alien.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/reddit-alien.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/reddit-alien.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/reddit-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/reddit-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/reddit-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/reddit.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/reddit.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/reddit.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/redhat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/redhat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/redhat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/renren.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/renren.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/renren.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/replyd.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/replyd.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/replyd.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/researchgate.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/researchgate.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/researchgate.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/resolving.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/resolving.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/resolving.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rev.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/rev.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/rev.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rocketchat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/rocketchat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/rocketchat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rockrms.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/rockrms.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/rockrms.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rust.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/rust.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/rust.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/safari.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/safari.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/safari.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/salesforce.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/salesforce.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/salesforce.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sass.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/sass.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/sass.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/schlix.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/schlix.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/schlix.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/screenpal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/screenpal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/screenpal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/scribd.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/scribd.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/scribd.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/searchengin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/searchengin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/searchengin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sellcast.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/sellcast.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/sellcast.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sellsy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/sellsy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/sellsy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/servicestack.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/servicestack.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/servicestack.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/shirtsinbulk.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/shirtsinbulk.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/shirtsinbulk.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/shopify.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/shopify.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/shopify.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/shopware.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/shopware.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/shopware.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/simplybuilt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/simplybuilt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/simplybuilt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sistrix.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/sistrix.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/sistrix.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sith.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/sith.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/sith.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sitrox.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/sitrox.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/sitrox.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sketch.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/sketch.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/sketch.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/skyatlas.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/skyatlas.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/skyatlas.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/skype.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/skype.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/skype.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/slack.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/slack.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/slack.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/slideshare.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/slideshare.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/slideshare.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/snapchat-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/snapchat-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/snapchat-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/snapchat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/snapchat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/snapchat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/soundcloud.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/soundcloud.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/soundcloud.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sourcetree.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/sourcetree.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/sourcetree.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/speakap.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/speakap.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/speakap.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/speaker-deck.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/speaker-deck.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/speaker-deck.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/spotify.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/spotify.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/spotify.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/square-font-awesome-stroke.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/square-font-awesome-stroke.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/square-font-awesome-stroke.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/square-font-awesome.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/square-font-awesome.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/square-font-awesome.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/squarespace.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/squarespace.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/squarespace.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stack-exchange.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/stack-exchange.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/stack-exchange.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stack-overflow.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/stack-overflow.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/stack-overflow.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stackpath.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/stackpath.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/stackpath.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/staylinked.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/staylinked.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/staylinked.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/steam-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/steam-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/steam-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/steam-symbol.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/steam-symbol.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/steam-symbol.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/steam.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/steam.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/steam.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sticker-mule.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/sticker-mule.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/sticker-mule.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/strava.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/strava.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/strava.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stripe-s.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/stripe-s.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/stripe-s.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stripe.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/stripe.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/stripe.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/studiovinari.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/studiovinari.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/studiovinari.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stumbleupon-circle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/stumbleupon-circle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/stumbleupon-circle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stumbleupon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/stumbleupon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/stumbleupon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/superpowers.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/superpowers.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/superpowers.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/supple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/supple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/supple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/suse.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/suse.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/suse.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/swift.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/swift.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/swift.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/symfony.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/symfony.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/symfony.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/teamspeak.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/teamspeak.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/teamspeak.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/telegram.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/telegram.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/telegram.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/tencent-weibo.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/tencent-weibo.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/tencent-weibo.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/the-red-yeti.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/the-red-yeti.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/the-red-yeti.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/themeco.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/themeco.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/themeco.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/themeisle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/themeisle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/themeisle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/think-peaks.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/think-peaks.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/think-peaks.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/tiktok.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/tiktok.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/tiktok.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/trade-federation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/trade-federation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/trade-federation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/trello.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/trello.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/trello.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/tumblr-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/tumblr-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/tumblr-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/tumblr.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/tumblr.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/tumblr.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/twitch.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/twitch.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/twitch.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/twitter-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/twitter-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/twitter-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/twitter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/twitter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/twitter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/typo3.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/typo3.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/typo3.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/uber.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/uber.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/uber.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ubuntu.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ubuntu.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ubuntu.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/uikit.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/uikit.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/uikit.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/umbraco.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/umbraco.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/umbraco.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/uncharted.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/uncharted.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/uncharted.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/uniregistry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/uniregistry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/uniregistry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/unity.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/unity.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/unity.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/unsplash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/unsplash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/unsplash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/untappd.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/untappd.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/untappd.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ups.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ups.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ups.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/usb.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/usb.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/usb.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/usps.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/usps.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/usps.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ussunnah.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/ussunnah.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/ussunnah.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vaadin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/vaadin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/vaadin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/viacoin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/viacoin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/viacoin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/viadeo-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/viadeo-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/viadeo-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/viadeo.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/viadeo.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/viadeo.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/viber.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/viber.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/viber.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vimeo-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/vimeo-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/vimeo-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vimeo-v.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/vimeo-v.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/vimeo-v.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vimeo.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/vimeo.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/vimeo.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vine.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/vine.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/vine.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vk.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/vk.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/vk.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vnv.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/vnv.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/vnv.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vuejs.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/vuejs.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/vuejs.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/watchman-monitoring.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/watchman-monitoring.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/watchman-monitoring.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/waze.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/waze.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/waze.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/weebly.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/weebly.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/weebly.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/weibo.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/weibo.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/weibo.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/weixin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/weixin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/weixin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/whatsapp-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/whatsapp-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/whatsapp-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/whatsapp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/whatsapp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/whatsapp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/whmcs.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/whmcs.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/whmcs.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wikipedia-w.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wikipedia-w.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wikipedia-w.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/windows.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/windows.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/windows.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wirsindhandwerk.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wirsindhandwerk.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wirsindhandwerk.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wix.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wix.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wix.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wizards-of-the-coast.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wizards-of-the-coast.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wizards-of-the-coast.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wodu.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wodu.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wodu.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wolf-pack-battalion.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wolf-pack-battalion.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wolf-pack-battalion.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wordpress-simple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wordpress-simple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wordpress-simple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wordpress.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wordpress.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wordpress.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wpbeginner.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wpbeginner.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wpbeginner.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wpexplorer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wpexplorer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wpexplorer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wpforms.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wpforms.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wpforms.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wpressr.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/wpressr.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/wpressr.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/xbox.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/xbox.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/xbox.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/xing-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/xing-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/xing-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/xing.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/xing.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/xing.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/y-combinator.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/y-combinator.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/y-combinator.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yahoo.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/yahoo.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/yahoo.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yammer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/yammer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/yammer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yandex-international.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/yandex-international.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/yandex-international.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yandex.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/yandex.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/yandex.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yarn.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/yarn.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/yarn.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yelp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/yelp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/yelp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yoast.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/yoast.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/yoast.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/youtube-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/youtube-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/youtube-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/youtube.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/youtube.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/youtube.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/zhihu.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/brands/zhihu.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/brands/zhihu.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/address-book.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/address-book.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/address-book.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/address-card.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/address-card.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/address-card.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/bell-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/bell-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/bell-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/bell.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/bell.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/bell.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/bookmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/bookmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/bookmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/building.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/building.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/building.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/calendar-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/calendar-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-days.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/calendar-days.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/calendar-days.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/calendar-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/calendar-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/calendar-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/calendar-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/calendar-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/calendar-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/calendar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/calendar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chart-bar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/chart-bar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/chart-bar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-bishop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/chess-bishop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/chess-bishop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-king.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/chess-king.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/chess-king.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-knight.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/chess-knight.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/chess-knight.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-pawn.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/chess-pawn.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/chess-pawn.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-queen.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/chess-queen.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/chess-queen.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-rook.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/chess-rook.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/chess-rook.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-dot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-dot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-dot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-pause.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-pause.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-pause.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-play.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-play.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-play.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-question.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-question.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-question.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-stop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-stop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-stop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/circle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/circle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/clipboard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/clipboard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/clipboard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/clock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/clock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/clock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/clone.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/clone.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/clone.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/closed-captioning.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/closed-captioning.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/closed-captioning.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/comment-dots.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/comment-dots.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/comment-dots.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/comment.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/comment.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/comment.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/comments.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/comments.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/comments.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/compass.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/compass.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/compass.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/copy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/copy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/copy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/copyright.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/copyright.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/copyright.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/credit-card.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/credit-card.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/credit-card.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/envelope-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/envelope-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/envelope-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/envelope.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/envelope.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/envelope.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/eye-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/eye-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/eye-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/eye.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/eye.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/eye.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-angry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-angry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-angry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-dizzy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-dizzy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-dizzy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-flushed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-flushed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-flushed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-frown-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-frown-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-frown-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-frown.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-frown.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-frown.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grimace.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grimace.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grimace.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-beam-sweat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-beam-sweat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-beam-sweat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-beam.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-beam.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-beam.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-hearts.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-hearts.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-hearts.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-squint-tears.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-squint-tears.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-squint-tears.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-squint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-squint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-squint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-stars.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-stars.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-stars.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-tears.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-tears.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-tears.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-tongue-squint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-tongue-squint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-tongue-squint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-tongue-wink.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-tongue-wink.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-tongue-wink.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-tongue.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-tongue.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-tongue.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-wide.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-wide.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-wide.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-wink.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin-wink.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin-wink.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-grin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-grin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-kiss-beam.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-kiss-beam.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-kiss-beam.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-kiss-wink-heart.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-kiss-wink-heart.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-kiss-wink-heart.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-kiss.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-kiss.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-kiss.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-laugh-beam.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-laugh-beam.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-laugh-beam.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-laugh-squint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-laugh-squint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-laugh-squint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-laugh-wink.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-laugh-wink.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-laugh-wink.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-laugh.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-laugh.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-laugh.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-meh-blank.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-meh-blank.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-meh-blank.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-meh.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-meh.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-meh.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-rolling-eyes.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-rolling-eyes.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-rolling-eyes.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-sad-cry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-sad-cry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-sad-cry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-sad-tear.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-sad-tear.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-sad-tear.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-smile-beam.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-smile-beam.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-smile-beam.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-smile-wink.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-smile-wink.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-smile-wink.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-smile.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-smile.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-smile.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-surprise.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-surprise.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-surprise.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-tired.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/face-tired.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/face-tired.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-audio.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-audio.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-audio.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-code.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-code.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-code.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-excel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-excel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-excel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-image.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-image.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-image.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-lines.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-lines.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-lines.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-pdf.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-pdf.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-pdf.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-powerpoint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-powerpoint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-powerpoint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-video.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-video.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-video.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-word.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-word.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-word.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-zipper.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file-zipper.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file-zipper.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/file.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/file.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/flag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/flag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/flag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/floppy-disk.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/floppy-disk.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/floppy-disk.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/folder-closed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/folder-closed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/folder-closed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/folder-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/folder-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/folder-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/folder.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/folder.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/folder.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/font-awesome.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/font-awesome.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/font-awesome.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/futbol.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/futbol.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/futbol.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/gem.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/gem.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/gem.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-back-fist.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-back-fist.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-back-fist.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-lizard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-lizard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-lizard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-peace.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-peace.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-peace.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-point-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-point-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-point-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-point-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-point-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-point-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-point-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-point-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-point-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-point-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-point-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-point-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-pointer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-pointer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-pointer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-scissors.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-scissors.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-scissors.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-spock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand-spock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand-spock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hand.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hand.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/handshake.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/handshake.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/handshake.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hard-drive.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hard-drive.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hard-drive.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/heart.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/heart.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/heart.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hospital.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hospital.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hospital.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hourglass.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/hourglass.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/hourglass.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/id-badge.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/id-badge.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/id-badge.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/id-card.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/id-card.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/id-card.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/image.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/image.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/image.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/images.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/images.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/images.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/keyboard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/keyboard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/keyboard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/lemon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/lemon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/lemon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/life-ring.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/life-ring.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/life-ring.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/lightbulb.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/lightbulb.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/lightbulb.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/map.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/map.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/map.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/message.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/message.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/message.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/money-bill-1.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/money-bill-1.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/money-bill-1.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/moon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/moon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/moon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/newspaper.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/newspaper.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/newspaper.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/note-sticky.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/note-sticky.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/note-sticky.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/object-group.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/object-group.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/object-group.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/object-ungroup.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/object-ungroup.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/object-ungroup.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/paper-plane.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/paper-plane.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/paper-plane.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/paste.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/paste.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/paste.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/pen-to-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/pen-to-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/pen-to-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/rectangle-list.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/rectangle-list.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/rectangle-list.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/rectangle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/rectangle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/rectangle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/registered.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/registered.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/registered.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/share-from-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/share-from-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/share-from-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/snowflake.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/snowflake.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/snowflake.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-caret-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/square-caret-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/square-caret-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-caret-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/square-caret-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/square-caret-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-caret-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/square-caret-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/square-caret-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-caret-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/square-caret-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/square-caret-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/square-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/square-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-full.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/square-full.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/square-full.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/square-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/square-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/square-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/square-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/star-half-stroke.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/star-half-stroke.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/star-half-stroke.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/star-half.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/star-half.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/star-half.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/star.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/star.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/star.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/sun.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/sun.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/sun.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/thumbs-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/thumbs-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/thumbs-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/thumbs-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/thumbs-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/thumbs-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/trash-can.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/trash-can.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/trash-can.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/window-maximize.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/window-maximize.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/window-maximize.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/window-minimize.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/window-minimize.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/window-minimize.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/window-restore.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/regular/window-restore.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/regular/window-restore.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/0.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/0.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/0.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/1.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/1.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/1.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/2.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/2.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/2.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/3.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/3.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/3.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/4.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/4.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/4.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/5.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/5.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/5.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/6.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/6.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/6.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/7.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/7.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/7.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/8.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/8.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/8.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/9.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/9.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/9.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/a.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/a.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/a.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/address-book.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/address-book.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/address-book.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/address-card.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/address-card.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/address-card.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/align-center.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/align-center.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/align-center.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/align-justify.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/align-justify.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/align-justify.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/align-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/align-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/align-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/align-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/align-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/align-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/anchor-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/anchor-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/anchor-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/anchor-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/anchor-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/anchor-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/anchor-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/anchor-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/anchor.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/anchor.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angle-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/angle-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/angle-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angle-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/angle-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/angle-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angle-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/angle-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/angle-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angle-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/angle-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/angle-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angles-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/angles-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/angles-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angles-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/angles-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/angles-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angles-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/angles-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/angles-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angles-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/angles-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/angles-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ankh.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ankh.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ankh.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/apple-whole.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/apple-whole.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/apple-whole.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/archway.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/archway.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/archway.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-1-9.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down-1-9.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down-1-9.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-9-1.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down-9-1.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down-9-1.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-a-z.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down-a-z.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down-a-z.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-long.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down-long.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down-long.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-short-wide.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down-short-wide.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down-short-wide.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-up-across-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down-up-across-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down-up-across-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-up-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down-up-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down-up-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-wide-short.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down-wide-short.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down-wide-short.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-z-a.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down-z-a.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down-z-a.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-left-long.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-left-long.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-left-long.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-pointer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-pointer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-pointer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-arrow-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-right-arrow-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-right-arrow-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-from-bracket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-right-from-bracket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-right-from-bracket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-long.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-right-long.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-right-long.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-to-bracket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-right-to-bracket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-right-to-bracket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-to-city.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-right-to-city.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-right-to-city.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-rotate-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-rotate-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-rotate-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-rotate-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-rotate-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-rotate-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-trend-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-trend-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-trend-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-trend-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-trend-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-trend-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-turn-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-turn-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-turn-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-turn-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-turn-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-turn-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-1-9.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-1-9.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-1-9.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-9-1.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-9-1.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-9-1.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-a-z.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-a-z.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-a-z.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-from-bracket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-from-bracket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-from-bracket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-from-ground-water.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-from-ground-water.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-from-ground-water.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-from-water-pump.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-from-water-pump.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-from-water-pump.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-long.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-long.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-long.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-right-dots.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-right-dots.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-right-dots.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-right-from-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-right-from-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-right-from-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-short-wide.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-short-wide.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-short-wide.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-wide-short.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-wide-short.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-wide-short.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-z-a.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up-z-a.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up-z-a.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrow-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrow-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-down-to-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-down-to-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-down-to-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-down-to-people.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-down-to-people.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-down-to-people.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-left-right-to-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-left-right-to-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-left-right-to-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-left-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-left-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-left-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-rotate.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-rotate.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-rotate.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-spin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-spin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-spin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-split-up-and-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-split-up-and-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-split-up-and-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-to-circle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-to-circle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-to-circle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-to-dot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-to-dot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-to-dot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-to-eye.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-to-eye.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-to-eye.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-turn-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-turn-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-turn-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-turn-to-dots.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-turn-to-dots.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-turn-to-dots.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-up-down-left-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-up-down-left-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-up-down-left-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-up-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-up-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-up-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-up-to-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/arrows-up-to-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/arrows-up-to-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/asterisk.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/asterisk.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/asterisk.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/at.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/at.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/at.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/atom.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/atom.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/atom.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/audio-description.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/audio-description.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/audio-description.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/austral-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/austral-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/austral-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/award.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/award.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/award.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/b.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/b.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/b.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baby-carriage.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/baby-carriage.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/baby-carriage.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baby.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/baby.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/baby.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/backward-fast.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/backward-fast.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/backward-fast.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/backward-step.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/backward-step.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/backward-step.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/backward.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/backward.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/backward.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bacon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bacon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bacon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bacteria.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bacteria.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bacteria.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bacterium.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bacterium.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bacterium.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bag-shopping.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bag-shopping.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bag-shopping.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bahai.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bahai.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bahai.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baht-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/baht-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/baht-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ban-smoking.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ban-smoking.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ban-smoking.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ban.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ban.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ban.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bandage.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bandage.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bandage.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/barcode.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/barcode.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/barcode.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bars-progress.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bars-progress.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bars-progress.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bars-staggered.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bars-staggered.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bars-staggered.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bars.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bars.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bars.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baseball-bat-ball.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/baseball-bat-ball.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/baseball-bat-ball.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baseball.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/baseball.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/baseball.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/basket-shopping.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/basket-shopping.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/basket-shopping.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/basketball.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/basketball.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/basketball.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bath.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bath.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bath.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-empty.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/battery-empty.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/battery-empty.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-full.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/battery-full.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/battery-full.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-half.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/battery-half.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/battery-half.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-quarter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/battery-quarter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/battery-quarter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-three-quarters.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/battery-three-quarters.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/battery-three-quarters.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bed-pulse.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bed-pulse.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bed-pulse.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/beer-mug-empty.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/beer-mug-empty.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/beer-mug-empty.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bell-concierge.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bell-concierge.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bell-concierge.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bell-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bell-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bell-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bell.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bell.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bell.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bezier-curve.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bezier-curve.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bezier-curve.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bicycle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bicycle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bicycle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/binoculars.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/binoculars.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/binoculars.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/biohazard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/biohazard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/biohazard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bitcoin-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bitcoin-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bitcoin-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/blender-phone.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/blender-phone.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/blender-phone.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/blender.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/blender.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/blender.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/blog.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/blog.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/blog.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bold.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bold.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bold.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bolt-lightning.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bolt-lightning.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bolt-lightning.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bolt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bolt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bolt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bomb.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bomb.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bomb.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bone.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bone.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bone.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bong.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bong.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bong.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-atlas.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book-atlas.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book-atlas.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-bible.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book-bible.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book-bible.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-bookmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book-bookmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book-bookmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-journal-whills.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book-journal-whills.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book-journal-whills.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-open-reader.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book-open-reader.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book-open-reader.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-quran.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book-quran.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book-quran.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-skull.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book-skull.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book-skull.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/book.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/book.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bookmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bookmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bookmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/border-all.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/border-all.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/border-all.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/border-none.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/border-none.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/border-none.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/border-top-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/border-top-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/border-top-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bore-hole.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bore-hole.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bore-hole.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bottle-droplet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bottle-droplet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bottle-droplet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bottle-water.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bottle-water.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bottle-water.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bowl-food.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bowl-food.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bowl-food.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bowl-rice.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bowl-rice.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bowl-rice.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bowling-ball.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bowling-ball.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bowling-ball.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/box-archive.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/box-archive.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/box-archive.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/box-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/box-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/box-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/box-tissue.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/box-tissue.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/box-tissue.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/box.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/box.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/box.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/boxes-packing.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/boxes-packing.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/boxes-packing.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/boxes-stacked.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/boxes-stacked.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/boxes-stacked.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/braille.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/braille.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/braille.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/brain.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/brain.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/brain.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/brazilian-real-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/brazilian-real-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/brazilian-real-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bread-slice.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bread-slice.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bread-slice.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bridge-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bridge-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bridge-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bridge-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bridge-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bridge-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bridge-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bridge-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-water.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bridge-water.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bridge-water.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bridge.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bridge.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/briefcase-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/briefcase-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/briefcase-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/briefcase.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/briefcase.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/briefcase.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/broom-ball.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/broom-ball.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/broom-ball.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/broom.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/broom.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/broom.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/brush.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/brush.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/brush.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bucket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bucket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bucket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bug-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bug-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bug-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bug.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bug.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bug.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bugs.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bugs.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bugs.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-circle-arrow-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-circle-arrow-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-circle-arrow-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-columns.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-columns.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-columns.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-flag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-flag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-flag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-ngo.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-ngo.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-ngo.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-shield.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-shield.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-shield.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-un.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-un.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-un.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-wheat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building-wheat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building-wheat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/building.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/building.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bullhorn.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bullhorn.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bullhorn.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bullseye.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bullseye.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bullseye.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/burger.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/burger.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/burger.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/burst.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/burst.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/burst.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bus-simple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bus-simple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bus-simple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/bus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/bus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/business-time.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/business-time.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/business-time.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/c.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/c.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/c.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cake-candles.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cake-candles.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cake-candles.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calculator.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/calculator.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/calculator.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/calendar-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/calendar-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-day.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/calendar-day.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/calendar-day.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-days.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/calendar-days.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/calendar-days.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/calendar-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/calendar-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/calendar-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/calendar-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-week.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/calendar-week.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/calendar-week.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/calendar-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/calendar-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/calendar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/calendar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/camera-retro.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/camera-retro.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/camera-retro.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/camera-rotate.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/camera-rotate.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/camera-rotate.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/camera.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/camera.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/camera.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/campground.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/campground.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/campground.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/candy-cane.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/candy-cane.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/candy-cane.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cannabis.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cannabis.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cannabis.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/capsules.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/capsules.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/capsules.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-battery.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/car-battery.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/car-battery.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-burst.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/car-burst.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/car-burst.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-on.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/car-on.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/car-on.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-rear.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/car-rear.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/car-rear.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-side.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/car-side.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/car-side.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-tunnel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/car-tunnel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/car-tunnel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/car.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/car.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caravan.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/caravan.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/caravan.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caret-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/caret-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/caret-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caret-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/caret-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/caret-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caret-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/caret-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/caret-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caret-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/caret-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/caret-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/carrot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/carrot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/carrot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-arrow-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cart-arrow-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cart-arrow-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-flatbed-suitcase.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cart-flatbed-suitcase.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cart-flatbed-suitcase.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-flatbed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cart-flatbed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cart-flatbed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cart-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cart-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-shopping.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cart-shopping.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cart-shopping.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cash-register.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cash-register.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cash-register.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cedi-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cedi-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cedi-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cent-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cent-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cent-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/certificate.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/certificate.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/certificate.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chair.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chair.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chair.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chalkboard-user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chalkboard-user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chalkboard-user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chalkboard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chalkboard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chalkboard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/champagne-glasses.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/champagne-glasses.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/champagne-glasses.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/charging-station.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/charging-station.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/charging-station.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-area.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chart-area.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chart-area.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-bar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chart-bar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chart-bar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-column.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chart-column.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chart-column.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-gantt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chart-gantt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chart-gantt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chart-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chart-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-pie.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chart-pie.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chart-pie.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-simple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chart-simple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chart-simple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/check-double.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/check-double.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/check-double.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/check-to-slot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/check-to-slot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/check-to-slot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cheese.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cheese.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cheese.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-bishop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chess-bishop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chess-bishop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-board.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chess-board.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chess-board.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-king.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chess-king.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chess-king.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-knight.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chess-knight.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chess-knight.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-pawn.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chess-pawn.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chess-pawn.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-queen.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chess-queen.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chess-queen.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-rook.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chess-rook.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chess-rook.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chess.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chess.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chevron-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chevron-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chevron-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chevron-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chevron-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chevron-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chevron-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chevron-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chevron-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chevron-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/chevron-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/chevron-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/child-dress.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/child-dress.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/child-dress.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/child-reaching.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/child-reaching.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/child-reaching.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/child-rifle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/child-rifle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/child-rifle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/child.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/child.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/child.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/children.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/children.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/children.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/church.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/church.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/church.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-arrow-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-arrow-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-arrow-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-arrow-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-chevron-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-chevron-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-chevron-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-chevron-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-dollar-to-slot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-dollar-to-slot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-dollar-to-slot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-dot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-dot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-dot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-h.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-h.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-h.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-half-stroke.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-half-stroke.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-half-stroke.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-info.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-info.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-info.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-nodes.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-nodes.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-nodes.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-notch.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-notch.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-notch.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-pause.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-pause.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-pause.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-play.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-play.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-play.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-question.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-question.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-question.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-radiation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-radiation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-radiation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-stop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-stop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-stop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/circle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/circle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/city.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/city.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/city.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clapperboard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clapperboard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clapperboard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clipboard-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clipboard-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard-list.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clipboard-list.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clipboard-list.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard-question.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clipboard-question.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clipboard-question.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard-user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clipboard-user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clipboard-user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clipboard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clipboard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clock-rotate-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clock-rotate-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clock-rotate-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clone.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clone.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clone.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/closed-captioning.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/closed-captioning.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/closed-captioning.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-arrow-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-arrow-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-arrow-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-arrow-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-arrow-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-arrow-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-bolt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-bolt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-bolt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-meatball.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-meatball.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-meatball.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-moon-rain.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-moon-rain.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-moon-rain.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-moon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-moon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-moon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-rain.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-rain.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-rain.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-showers-heavy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-showers-heavy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-showers-heavy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-showers-water.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-showers-water.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-showers-water.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-sun-rain.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-sun-rain.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-sun-rain.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-sun.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud-sun.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud-sun.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cloud.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cloud.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clover.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/clover.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/clover.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-branch.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/code-branch.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/code-branch.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-commit.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/code-commit.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/code-commit.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-compare.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/code-compare.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/code-compare.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-fork.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/code-fork.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/code-fork.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-merge.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/code-merge.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/code-merge.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-pull-request.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/code-pull-request.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/code-pull-request.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/code.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/code.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/coins.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/coins.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/coins.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/colon-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/colon-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/colon-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-dollar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/comment-dollar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/comment-dollar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-dots.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/comment-dots.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/comment-dots.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/comment-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/comment-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/comment-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/comment-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-sms.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/comment-sms.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/comment-sms.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/comment.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/comment.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comments-dollar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/comments-dollar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/comments-dollar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comments.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/comments.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/comments.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/compact-disc.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/compact-disc.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/compact-disc.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/compass-drafting.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/compass-drafting.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/compass-drafting.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/compass.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/compass.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/compass.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/compress.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/compress.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/compress.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/computer-mouse.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/computer-mouse.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/computer-mouse.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/computer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/computer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/computer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cookie-bite.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cookie-bite.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cookie-bite.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cookie.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cookie.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cookie.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/copy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/copy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/copy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/copyright.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/copyright.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/copyright.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/couch.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/couch.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/couch.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cow.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cow.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cow.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/credit-card.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/credit-card.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/credit-card.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crop-simple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/crop-simple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/crop-simple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/crop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/crop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cross.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cross.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cross.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crosshairs.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/crosshairs.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/crosshairs.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crow.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/crow.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/crow.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crown.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/crown.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/crown.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crutch.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/crutch.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/crutch.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cruzeiro-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cruzeiro-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cruzeiro-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cube.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cube.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cube.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cubes-stacked.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cubes-stacked.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cubes-stacked.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cubes.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/cubes.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/cubes.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/d.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/d.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/d.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/database.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/database.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/database.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/delete-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/delete-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/delete-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/democrat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/democrat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/democrat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/desktop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/desktop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/desktop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dharmachakra.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dharmachakra.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dharmachakra.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diagram-next.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/diagram-next.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/diagram-next.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diagram-predecessor.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/diagram-predecessor.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/diagram-predecessor.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diagram-project.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/diagram-project.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/diagram-project.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diagram-successor.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/diagram-successor.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/diagram-successor.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diamond-turn-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/diamond-turn-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/diamond-turn-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diamond.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/diamond.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/diamond.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-d20.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dice-d20.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dice-d20.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-d6.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dice-d6.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dice-d6.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-five.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dice-five.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dice-five.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-four.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dice-four.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dice-four.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-one.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dice-one.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dice-one.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-six.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dice-six.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dice-six.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-three.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dice-three.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dice-three.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-two.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dice-two.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dice-two.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dice.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dice.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/disease.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/disease.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/disease.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/display.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/display.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/display.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/divide.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/divide.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/divide.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dna.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dna.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dna.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dog.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dog.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dog.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dollar-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dollar-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dollar-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dolly.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dolly.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dolly.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dong-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dong-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dong-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/door-closed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/door-closed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/door-closed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/door-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/door-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/door-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dove.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dove.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dove.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/down-left-and-up-right-to-center.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/down-left-and-up-right-to-center.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/down-left-and-up-right-to-center.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/down-long.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/down-long.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/down-long.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/download.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/download.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/download.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dragon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dragon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dragon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/draw-polygon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/draw-polygon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/draw-polygon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/droplet-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/droplet-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/droplet-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/droplet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/droplet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/droplet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/drum-steelpan.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/drum-steelpan.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/drum-steelpan.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/drum.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/drum.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/drum.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/drumstick-bite.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/drumstick-bite.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/drumstick-bite.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dumbbell.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dumbbell.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dumbbell.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dumpster-fire.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dumpster-fire.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dumpster-fire.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dumpster.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dumpster.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dumpster.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dungeon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/dungeon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/dungeon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/e.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/e.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/e.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ear-deaf.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ear-deaf.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ear-deaf.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ear-listen.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ear-listen.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ear-listen.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-africa.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/earth-africa.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/earth-africa.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-americas.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/earth-americas.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/earth-americas.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-asia.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/earth-asia.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/earth-asia.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-europe.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/earth-europe.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/earth-europe.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-oceania.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/earth-oceania.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/earth-oceania.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/egg.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/egg.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/egg.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eject.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/eject.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/eject.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/elevator.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/elevator.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/elevator.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ellipsis-vertical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ellipsis-vertical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ellipsis-vertical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ellipsis.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ellipsis.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ellipsis.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelope-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/envelope-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/envelope-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelope-open-text.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/envelope-open-text.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/envelope-open-text.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelope-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/envelope-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/envelope-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelope.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/envelope.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/envelope.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelopes-bulk.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/envelopes-bulk.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/envelopes-bulk.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/equals.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/equals.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/equals.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eraser.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/eraser.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/eraser.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ethernet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ethernet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ethernet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/euro-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/euro-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/euro-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/expand.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/expand.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/expand.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/explosion.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/explosion.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/explosion.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eye-dropper.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/eye-dropper.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/eye-dropper.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eye-low-vision.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/eye-low-vision.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/eye-low-vision.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eye-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/eye-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/eye-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eye.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/eye.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/eye.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/f.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/f.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/f.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-angry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-angry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-angry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-dizzy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-dizzy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-dizzy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-flushed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-flushed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-flushed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-frown-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-frown-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-frown-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-frown.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-frown.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-frown.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grimace.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grimace.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grimace.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-beam-sweat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-beam-sweat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-beam-sweat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-beam.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-beam.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-beam.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-hearts.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-hearts.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-hearts.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-squint-tears.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-squint-tears.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-squint-tears.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-squint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-squint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-squint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-stars.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-stars.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-stars.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-tears.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-tears.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-tears.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-tongue-squint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-tongue-squint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-tongue-squint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-tongue-wink.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-tongue-wink.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-tongue-wink.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-tongue.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-tongue.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-tongue.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-wide.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-wide.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-wide.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-wink.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin-wink.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin-wink.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-grin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-grin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-kiss-beam.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-kiss-beam.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-kiss-beam.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-kiss-wink-heart.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-kiss-wink-heart.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-kiss-wink-heart.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-kiss.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-kiss.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-kiss.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-laugh-beam.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-laugh-beam.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-laugh-beam.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-laugh-squint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-laugh-squint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-laugh-squint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-laugh-wink.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-laugh-wink.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-laugh-wink.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-laugh.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-laugh.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-laugh.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-meh-blank.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-meh-blank.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-meh-blank.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-meh.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-meh.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-meh.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-rolling-eyes.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-rolling-eyes.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-rolling-eyes.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-sad-cry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-sad-cry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-sad-cry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-sad-tear.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-sad-tear.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-sad-tear.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-smile-beam.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-smile-beam.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-smile-beam.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-smile-wink.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-smile-wink.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-smile-wink.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-smile.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-smile.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-smile.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-surprise.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-surprise.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-surprise.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-tired.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/face-tired.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/face-tired.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fan.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fan.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fan.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/faucet-drip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/faucet-drip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/faucet-drip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/faucet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/faucet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/faucet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fax.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fax.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fax.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/feather-pointed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/feather-pointed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/feather-pointed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/feather.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/feather.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/feather.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ferry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ferry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ferry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-arrow-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-arrow-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-arrow-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-arrow-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-arrow-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-arrow-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-audio.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-audio.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-audio.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-circle-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-circle-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-circle-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-circle-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-question.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-circle-question.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-circle-question.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-code.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-code.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-code.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-contract.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-contract.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-contract.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-csv.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-csv.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-csv.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-excel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-excel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-excel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-export.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-export.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-export.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-image.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-image.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-image.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-import.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-import.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-import.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-invoice-dollar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-invoice-dollar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-invoice-dollar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-invoice.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-invoice.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-invoice.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-lines.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-lines.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-lines.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-pdf.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-pdf.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-pdf.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-pen.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-pen.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-pen.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-powerpoint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-powerpoint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-powerpoint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-prescription.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-prescription.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-prescription.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-shield.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-shield.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-shield.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-signature.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-signature.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-signature.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-video.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-video.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-video.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-waveform.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-waveform.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-waveform.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-word.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-word.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-word.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-zipper.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file-zipper.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file-zipper.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/file.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/file.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fill-drip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fill-drip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fill-drip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fill.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fill.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fill.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/film.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/film.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/film.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/filter-circle-dollar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/filter-circle-dollar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/filter-circle-dollar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/filter-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/filter-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/filter-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/filter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/filter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/filter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fingerprint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fingerprint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fingerprint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire-burner.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fire-burner.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fire-burner.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire-extinguisher.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fire-extinguisher.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fire-extinguisher.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire-flame-curved.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fire-flame-curved.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fire-flame-curved.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire-flame-simple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fire-flame-simple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fire-flame-simple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fire.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fire.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fish-fins.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fish-fins.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fish-fins.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fish.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/fish.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/fish.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flag-checkered.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/flag-checkered.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/flag-checkered.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flag-usa.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/flag-usa.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/flag-usa.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/flag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/flag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flask-vial.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/flask-vial.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/flask-vial.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flask.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/flask.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/flask.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/floppy-disk.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/floppy-disk.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/floppy-disk.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/florin-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/florin-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/florin-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-closed.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/folder-closed.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/folder-closed.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/folder-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/folder-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/folder-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/folder-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/folder-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/folder-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-tree.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/folder-tree.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/folder-tree.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/folder.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/folder.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/font-awesome.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/font-awesome.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/font-awesome.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/font.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/font.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/font.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/football.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/football.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/football.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/forward-fast.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/forward-fast.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/forward-fast.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/forward-step.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/forward-step.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/forward-step.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/forward.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/forward.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/forward.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/franc-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/franc-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/franc-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/frog.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/frog.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/frog.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/futbol.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/futbol.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/futbol.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/g.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/g.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/g.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gamepad.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gamepad.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gamepad.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gas-pump.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gas-pump.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gas-pump.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gauge-high.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gauge-high.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gauge-high.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gauge-simple-high.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gauge-simple-high.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gauge-simple-high.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gauge-simple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gauge-simple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gauge-simple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gauge.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gauge.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gauge.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gavel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gavel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gavel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gear.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gear.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gear.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gears.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gears.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gears.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gem.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gem.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gem.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/genderless.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/genderless.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/genderless.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ghost.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ghost.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ghost.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gift.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gift.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gift.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gifts.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gifts.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gifts.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/glass-water-droplet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/glass-water-droplet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/glass-water-droplet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/glass-water.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/glass-water.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/glass-water.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/glasses.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/glasses.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/glasses.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/globe.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/globe.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/globe.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/golf-ball-tee.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/golf-ball-tee.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/golf-ball-tee.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gopuram.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gopuram.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gopuram.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/graduation-cap.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/graduation-cap.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/graduation-cap.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/greater-than-equal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/greater-than-equal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/greater-than-equal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/greater-than.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/greater-than.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/greater-than.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/grip-lines-vertical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/grip-lines-vertical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/grip-lines-vertical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/grip-lines.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/grip-lines.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/grip-lines.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/grip-vertical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/grip-vertical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/grip-vertical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/grip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/grip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/grip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/group-arrows-rotate.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/group-arrows-rotate.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/group-arrows-rotate.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/guarani-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/guarani-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/guarani-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/guitar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/guitar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/guitar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gun.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/gun.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/gun.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/h.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/h.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/h.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hammer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hammer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hammer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hamsa.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hamsa.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hamsa.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-back-fist.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-back-fist.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-back-fist.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-dots.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-dots.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-dots.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-fist.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-fist.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-fist.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-dollar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-holding-dollar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-holding-dollar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-droplet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-holding-droplet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-holding-droplet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-hand.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-holding-hand.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-holding-hand.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-heart.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-holding-heart.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-holding-heart.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-holding-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-holding-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-holding.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-holding.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-lizard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-lizard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-lizard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-middle-finger.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-middle-finger.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-middle-finger.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-peace.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-peace.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-peace.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-point-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-point-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-point-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-point-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-point-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-point-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-point-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-point-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-point-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-point-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-point-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-point-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-pointer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-pointer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-pointer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-scissors.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-scissors.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-scissors.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-sparkles.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-sparkles.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-sparkles.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-spock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand-spock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand-spock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hand.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hand.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handcuffs.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/handcuffs.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/handcuffs.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-asl-interpreting.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hands-asl-interpreting.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hands-asl-interpreting.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-bound.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hands-bound.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hands-bound.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-bubbles.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hands-bubbles.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hands-bubbles.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-clapping.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hands-clapping.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hands-clapping.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-holding-child.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hands-holding-child.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hands-holding-child.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-holding-circle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hands-holding-circle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hands-holding-circle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-holding.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hands-holding.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hands-holding.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-praying.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hands-praying.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hands-praying.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hands.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hands.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake-angle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/handshake-angle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/handshake-angle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake-simple-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/handshake-simple-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/handshake-simple-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake-simple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/handshake-simple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/handshake-simple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/handshake-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/handshake-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/handshake.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/handshake.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hanukiah.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hanukiah.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hanukiah.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hard-drive.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hard-drive.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hard-drive.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hashtag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hashtag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hashtag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hat-cowboy-side.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hat-cowboy-side.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hat-cowboy-side.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hat-cowboy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hat-cowboy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hat-cowboy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hat-wizard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hat-wizard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hat-wizard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/head-side-cough-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/head-side-cough-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/head-side-cough-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/head-side-cough.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/head-side-cough.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/head-side-cough.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/head-side-mask.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/head-side-mask.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/head-side-mask.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/head-side-virus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/head-side-virus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/head-side-virus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heading.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heading.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heading.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/headphones-simple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/headphones-simple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/headphones-simple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/headphones.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/headphones.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/headphones.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/headset.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/headset.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/headset.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-bolt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heart-circle-bolt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heart-circle-bolt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heart-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heart-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heart-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heart-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heart-circle-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heart-circle-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heart-circle-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heart-circle-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heart-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heart-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-crack.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heart-crack.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heart-crack.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-pulse.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heart-pulse.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heart-pulse.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/heart.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/heart.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/helicopter-symbol.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/helicopter-symbol.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/helicopter-symbol.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/helicopter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/helicopter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/helicopter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/helmet-safety.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/helmet-safety.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/helmet-safety.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/helmet-un.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/helmet-un.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/helmet-un.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/highlighter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/highlighter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/highlighter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hill-avalanche.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hill-avalanche.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hill-avalanche.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hill-rockslide.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hill-rockslide.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hill-rockslide.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hippo.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hippo.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hippo.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hockey-puck.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hockey-puck.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hockey-puck.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/holly-berry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/holly-berry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/holly-berry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/horse-head.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/horse-head.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/horse-head.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/horse.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/horse.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/horse.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hospital-user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hospital-user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hospital-user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hospital.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hospital.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hospital.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hot-tub-person.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hot-tub-person.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hot-tub-person.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hotdog.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hotdog.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hotdog.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hotel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hotel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hotel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hourglass-empty.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hourglass-empty.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hourglass-empty.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hourglass-end.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hourglass-end.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hourglass-end.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hourglass-start.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hourglass-start.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hourglass-start.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hourglass.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hourglass.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hourglass.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney-crack.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-chimney-crack.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-chimney-crack.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-chimney-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-chimney-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney-user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-chimney-user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-chimney-user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney-window.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-chimney-window.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-chimney-window.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-chimney.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-chimney.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-crack.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-crack.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-crack.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-fire.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-fire.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-fire.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-flag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-flag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-flag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-flood-water-circle-arrow-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-flood-water-circle-arrow-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-flood-water-circle-arrow-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-flood-water.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-flood-water.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-flood-water.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-laptop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-laptop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-laptop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-medical-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-medical-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-medical-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-medical-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-medical-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-medical-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical-flag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-medical-flag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-medical-flag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-signal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-signal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-signal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-tsunami.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-tsunami.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-tsunami.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house-user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house-user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/house.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/house.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hryvnia-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hryvnia-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hryvnia-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hurricane.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/hurricane.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/hurricane.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/i-cursor.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/i-cursor.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/i-cursor.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/i.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/i.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/i.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ice-cream.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ice-cream.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ice-cream.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/icicles.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/icicles.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/icicles.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/icons.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/icons.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/icons.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/id-badge.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/id-badge.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/id-badge.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/id-card-clip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/id-card-clip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/id-card-clip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/id-card.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/id-card.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/id-card.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/igloo.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/igloo.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/igloo.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/image-portrait.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/image-portrait.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/image-portrait.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/image.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/image.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/image.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/images.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/images.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/images.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/inbox.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/inbox.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/inbox.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/indent.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/indent.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/indent.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/indian-rupee-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/indian-rupee-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/indian-rupee-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/industry.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/industry.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/industry.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/infinity.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/infinity.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/infinity.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/info.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/info.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/info.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/italic.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/italic.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/italic.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/j.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/j.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/j.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jar-wheat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/jar-wheat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/jar-wheat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/jar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/jar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jedi.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/jedi.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/jedi.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jet-fighter-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/jet-fighter-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/jet-fighter-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jet-fighter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/jet-fighter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/jet-fighter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/joint.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/joint.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/joint.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jug-detergent.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/jug-detergent.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/jug-detergent.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/k.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/k.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/k.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kaaba.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/kaaba.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/kaaba.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/key.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/key.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/key.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/keyboard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/keyboard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/keyboard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/khanda.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/khanda.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/khanda.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kip-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/kip-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/kip-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kit-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/kit-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/kit-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kitchen-set.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/kitchen-set.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/kitchen-set.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kiwi-bird.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/kiwi-bird.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/kiwi-bird.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/l.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/l.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/l.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/land-mine-on.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/land-mine-on.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/land-mine-on.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/landmark-dome.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/landmark-dome.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/landmark-dome.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/landmark-flag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/landmark-flag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/landmark-flag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/landmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/landmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/landmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/language.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/language.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/language.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/laptop-code.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/laptop-code.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/laptop-code.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/laptop-file.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/laptop-file.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/laptop-file.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/laptop-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/laptop-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/laptop-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/laptop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/laptop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/laptop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lari-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/lari-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/lari-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/layer-group.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/layer-group.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/layer-group.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/leaf.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/leaf.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/leaf.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/left-long.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/left-long.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/left-long.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/left-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/left-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/left-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lemon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/lemon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/lemon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/less-than-equal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/less-than-equal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/less-than-equal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/less-than.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/less-than.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/less-than.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/life-ring.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/life-ring.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/life-ring.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lightbulb.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/lightbulb.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/lightbulb.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lines-leaning.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/lines-leaning.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/lines-leaning.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/link-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/link-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/link-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/link.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/link.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/link.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lira-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/lira-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/lira-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/list-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/list-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/list-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/list-ol.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/list-ol.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/list-ol.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/list-ul.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/list-ul.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/list-ul.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/list.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/list.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/list.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/litecoin-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/litecoin-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/litecoin-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-arrow.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/location-arrow.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/location-arrow.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-crosshairs.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/location-crosshairs.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/location-crosshairs.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-dot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/location-dot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/location-dot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-pin-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/location-pin-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/location-pin-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-pin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/location-pin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/location-pin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lock-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/lock-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/lock-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/locust.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/locust.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/locust.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lungs-virus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/lungs-virus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/lungs-virus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lungs.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/lungs.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/lungs.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/m.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/m.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/m.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/magnet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/magnet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-arrow-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/magnifying-glass-arrow-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-arrow-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-chart.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/magnifying-glass-chart.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-chart.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-dollar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/magnifying-glass-dollar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-dollar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-location.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/magnifying-glass-location.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-location.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/magnifying-glass-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/magnifying-glass-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/magnifying-glass.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/manat-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/manat-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/manat-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/map-location-dot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/map-location-dot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/map-location-dot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/map-location.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/map-location.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/map-location.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/map-pin.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/map-pin.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/map-pin.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/map.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/map.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/map.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/marker.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/marker.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/marker.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-and-venus-burst.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mars-and-venus-burst.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mars-and-venus-burst.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-and-venus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mars-and-venus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mars-and-venus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-double.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mars-double.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mars-double.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-stroke-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mars-stroke-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mars-stroke-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-stroke-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mars-stroke-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mars-stroke-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-stroke.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mars-stroke.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mars-stroke.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mars.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mars.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/martini-glass-citrus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/martini-glass-citrus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/martini-glass-citrus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/martini-glass-empty.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/martini-glass-empty.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/martini-glass-empty.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/martini-glass.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/martini-glass.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/martini-glass.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mask-face.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mask-face.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mask-face.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mask-ventilator.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mask-ventilator.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mask-ventilator.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mask.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mask.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mask.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/masks-theater.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/masks-theater.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/masks-theater.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mattress-pillow.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mattress-pillow.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mattress-pillow.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/maximize.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/maximize.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/maximize.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/medal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/medal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/medal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/memory.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/memory.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/memory.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/menorah.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/menorah.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/menorah.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mercury.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mercury.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mercury.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/message.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/message.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/message.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/meteor.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/meteor.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/meteor.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microchip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/microchip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/microchip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microphone-lines-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/microphone-lines-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/microphone-lines-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microphone-lines.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/microphone-lines.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/microphone-lines.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microphone-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/microphone-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/microphone-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microphone.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/microphone.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/microphone.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microscope.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/microscope.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/microscope.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mill-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mill-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mill-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/minimize.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/minimize.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/minimize.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mitten.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mitten.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mitten.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile-button.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mobile-button.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mobile-button.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile-retro.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mobile-retro.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mobile-retro.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile-screen-button.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mobile-screen-button.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mobile-screen-button.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile-screen.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mobile-screen.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mobile-screen.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mobile.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mobile.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-1-wave.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-bill-1-wave.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-bill-1-wave.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-1.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-bill-1.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-bill-1.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-transfer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-bill-transfer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-bill-transfer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-trend-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-bill-trend-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-bill-trend-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-wave.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-bill-wave.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-bill-wave.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-wheat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-bill-wheat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-bill-wheat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-bill.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-bill.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bills.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-bills.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-bills.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-check-dollar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-check-dollar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-check-dollar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/money-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/money-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/monument.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/monument.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/monument.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/moon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/moon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/moon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mortar-pestle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mortar-pestle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mortar-pestle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mosque.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mosque.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mosque.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mosquito-net.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mosquito-net.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mosquito-net.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mosquito.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mosquito.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mosquito.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/motorcycle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/motorcycle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/motorcycle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mound.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mound.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mound.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mountain-city.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mountain-city.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mountain-city.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mountain-sun.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mountain-sun.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mountain-sun.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mountain.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mountain.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mountain.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mug-hot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mug-hot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mug-hot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mug-saucer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/mug-saucer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/mug-saucer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/music.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/music.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/music.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/n.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/n.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/n.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/naira-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/naira-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/naira-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/network-wired.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/network-wired.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/network-wired.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/neuter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/neuter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/neuter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/newspaper.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/newspaper.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/newspaper.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/not-equal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/not-equal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/not-equal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/note-sticky.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/note-sticky.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/note-sticky.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/notes-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/notes-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/notes-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/o.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/o.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/o.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/object-group.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/object-group.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/object-group.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/object-ungroup.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/object-ungroup.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/object-ungroup.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/oil-can.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/oil-can.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/oil-can.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/oil-well.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/oil-well.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/oil-well.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/om.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/om.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/om.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/otter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/otter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/otter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/outdent.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/outdent.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/outdent.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/p.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/p.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/p.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pager.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pager.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pager.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paint-roller.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/paint-roller.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/paint-roller.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paintbrush.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/paintbrush.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/paintbrush.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/palette.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/palette.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/palette.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pallet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pallet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pallet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/panorama.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/panorama.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/panorama.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paper-plane.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/paper-plane.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/paper-plane.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paperclip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/paperclip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/paperclip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/parachute-box.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/parachute-box.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/parachute-box.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paragraph.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/paragraph.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/paragraph.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/passport.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/passport.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/passport.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paste.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/paste.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/paste.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pause.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pause.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pause.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paw.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/paw.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/paw.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/peace.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/peace.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/peace.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-clip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pen-clip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pen-clip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-fancy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pen-fancy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pen-fancy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-nib.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pen-nib.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pen-nib.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-ruler.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pen-ruler.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pen-ruler.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-to-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pen-to-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pen-to-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pen.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pen.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pencil.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pencil.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pencil.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-arrows-left-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/people-arrows-left-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/people-arrows-left-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-carry-box.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/people-carry-box.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/people-carry-box.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-group.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/people-group.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/people-group.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/people-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/people-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-pulling.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/people-pulling.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/people-pulling.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-robbery.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/people-robbery.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/people-robbery.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-roof.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/people-roof.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/people-roof.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pepper-hot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pepper-hot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pepper-hot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/percent.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/percent.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/percent.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-arrow-down-to-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-arrow-down-to-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-arrow-down-to-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-arrow-up-from-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-arrow-up-from-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-arrow-up-from-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-biking.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-biking.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-biking.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-booth.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-booth.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-booth.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-breastfeeding.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-breastfeeding.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-breastfeeding.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-burst.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-burst.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-burst.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-cane.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-cane.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-cane.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-chalkboard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-chalkboard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-chalkboard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-circle-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-circle-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-circle-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-circle-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-question.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-circle-question.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-circle-question.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-digging.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-digging.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-digging.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-dots-from-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-dots-from-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-dots-from-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-dress-burst.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-dress-burst.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-dress-burst.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-dress.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-dress.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-dress.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-drowning.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-drowning.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-drowning.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-falling-burst.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-falling-burst.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-falling-burst.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-falling.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-falling.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-falling.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-half-dress.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-half-dress.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-half-dress.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-harassing.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-harassing.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-harassing.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-hiking.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-hiking.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-hiking.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-military-pointing.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-military-pointing.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-military-pointing.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-military-rifle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-military-rifle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-military-rifle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-military-to-person.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-military-to-person.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-military-to-person.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-praying.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-praying.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-praying.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-pregnant.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-pregnant.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-pregnant.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-rays.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-rays.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-rays.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-rifle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-rifle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-rifle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-running.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-running.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-running.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-shelter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-shelter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-shelter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-skating.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-skating.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-skating.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-skiing-nordic.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-skiing-nordic.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-skiing-nordic.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-skiing.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-skiing.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-skiing.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-snowboarding.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-snowboarding.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-snowboarding.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-swimming.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-swimming.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-swimming.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-through-window.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-through-window.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-through-window.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-arrow-loop-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-walking-arrow-loop-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-walking-arrow-loop-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-arrow-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-walking-arrow-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-walking-arrow-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-dashed-line-arrow-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-walking-dashed-line-arrow-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-walking-dashed-line-arrow-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-luggage.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-walking-luggage.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-walking-luggage.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-with-cane.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-walking-with-cane.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-walking-with-cane.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person-walking.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person-walking.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/person.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/person.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/peseta-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/peseta-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/peseta-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/peso-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/peso-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/peso-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/phone-flip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/phone-flip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/phone-flip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/phone-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/phone-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/phone-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/phone-volume.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/phone-volume.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/phone-volume.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/phone.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/phone.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/phone.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/photo-film.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/photo-film.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/photo-film.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/piggy-bank.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/piggy-bank.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/piggy-bank.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pills.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pills.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pills.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pizza-slice.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pizza-slice.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pizza-slice.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/place-of-worship.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/place-of-worship.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/place-of-worship.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-arrival.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plane-arrival.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plane-arrival.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plane-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plane-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plane-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plane-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plane-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plane-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-departure.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plane-departure.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plane-departure.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plane-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plane-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plane-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plane-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plane-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plane-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plane.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plane.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plant-wilt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plant-wilt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plant-wilt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plate-wheat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plate-wheat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plate-wheat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/play.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/play.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/play.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-bolt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plug-circle-bolt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plug-circle-bolt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plug-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plug-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plug-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plug-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plug-circle-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plug-circle-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plug-circle-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plug-circle-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plug-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plug-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plug.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plug.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plus-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plus-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plus-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/podcast.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/podcast.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/podcast.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/poo-storm.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/poo-storm.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/poo-storm.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/poo.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/poo.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/poo.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/poop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/poop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/poop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/power-off.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/power-off.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/power-off.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/prescription-bottle-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/prescription-bottle-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/prescription-bottle-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/prescription-bottle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/prescription-bottle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/prescription-bottle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/prescription.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/prescription.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/prescription.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/print.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/print.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/print.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pump-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pump-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pump-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pump-soap.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/pump-soap.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/pump-soap.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/puzzle-piece.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/puzzle-piece.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/puzzle-piece.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/q.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/q.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/q.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/qrcode.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/qrcode.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/qrcode.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/question.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/question.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/question.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/quote-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/quote-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/quote-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/quote-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/quote-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/quote-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/r.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/r.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/r.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/radiation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/radiation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/radiation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/radio.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/radio.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/radio.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rainbow.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rainbow.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rainbow.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ranking-star.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ranking-star.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ranking-star.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/receipt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/receipt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/receipt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/record-vinyl.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/record-vinyl.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/record-vinyl.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rectangle-ad.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rectangle-ad.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rectangle-ad.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rectangle-list.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rectangle-list.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rectangle-list.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rectangle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rectangle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rectangle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/recycle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/recycle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/recycle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/registered.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/registered.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/registered.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/repeat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/repeat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/repeat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/reply-all.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/reply-all.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/reply-all.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/reply.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/reply.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/reply.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/republican.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/republican.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/republican.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/restroom.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/restroom.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/restroom.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/retweet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/retweet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/retweet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ribbon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ribbon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ribbon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/right-from-bracket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/right-from-bracket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/right-from-bracket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/right-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/right-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/right-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/right-long.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/right-long.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/right-long.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/right-to-bracket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/right-to-bracket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/right-to-bracket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ring.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ring.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ring.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-barrier.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/road-barrier.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/road-barrier.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-bridge.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/road-bridge.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/road-bridge.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/road-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/road-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/road-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/road-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/road-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/road-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/road-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/road-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-spikes.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/road-spikes.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/road-spikes.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/road.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/road.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/robot.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/robot.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/robot.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rocket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rocket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rocket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rotate-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rotate-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rotate-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rotate-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rotate-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rotate-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rotate.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rotate.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rotate.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/route.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/route.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/route.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rss.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rss.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rss.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruble-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ruble-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ruble-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rug.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rug.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rug.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruler-combined.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ruler-combined.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ruler-combined.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruler-horizontal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ruler-horizontal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ruler-horizontal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruler-vertical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ruler-vertical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ruler-vertical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruler.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ruler.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ruler.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rupee-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rupee-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rupee-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rupiah-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/rupiah-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/rupiah-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/s.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/s.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/s.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sack-dollar.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sack-dollar.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sack-dollar.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sack-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sack-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sack-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sailboat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sailboat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sailboat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/satellite-dish.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/satellite-dish.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/satellite-dish.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/satellite.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/satellite.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/satellite.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scale-balanced.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/scale-balanced.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/scale-balanced.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scale-unbalanced-flip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/scale-unbalanced-flip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/scale-unbalanced-flip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scale-unbalanced.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/scale-unbalanced.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/scale-unbalanced.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/school-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/school-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/school-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/school-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-circle-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/school-circle-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/school-circle-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-flag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/school-flag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/school-flag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/school-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/school-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/school.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/school.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scissors.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/scissors.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/scissors.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/screwdriver-wrench.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/screwdriver-wrench.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/screwdriver-wrench.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/screwdriver.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/screwdriver.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/screwdriver.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scroll-torah.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/scroll-torah.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/scroll-torah.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scroll.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/scroll.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/scroll.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sd-card.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sd-card.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sd-card.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/section.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/section.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/section.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/seedling.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/seedling.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/seedling.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/server.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/server.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/server.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shapes.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shapes.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shapes.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/share-from-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/share-from-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/share-from-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/share-nodes.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/share-nodes.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/share-nodes.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/share.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/share.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/share.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sheet-plastic.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sheet-plastic.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sheet-plastic.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shekel-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shekel-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shekel-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-cat.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shield-cat.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shield-cat.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-dog.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shield-dog.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shield-dog.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-halved.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shield-halved.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shield-halved.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-heart.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shield-heart.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shield-heart.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-virus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shield-virus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shield-virus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shield.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shield.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ship.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ship.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ship.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shirt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shirt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shirt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shoe-prints.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shoe-prints.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shoe-prints.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shop-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shop-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shop-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shop-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shop-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shop-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shower.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shower.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shower.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shrimp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shrimp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shrimp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shuffle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shuffle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shuffle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shuttle-space.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/shuttle-space.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/shuttle-space.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sign-hanging.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sign-hanging.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sign-hanging.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/signal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/signal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/signal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/signature.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/signature.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/signature.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/signs-post.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/signs-post.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/signs-post.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sim-card.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sim-card.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sim-card.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sink.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sink.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sink.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sitemap.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sitemap.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sitemap.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/skull-crossbones.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/skull-crossbones.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/skull-crossbones.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/skull.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/skull.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/skull.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sleigh.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sleigh.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sleigh.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sliders.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sliders.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sliders.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/smog.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/smog.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/smog.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/smoking.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/smoking.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/smoking.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/snowflake.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/snowflake.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/snowflake.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/snowman.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/snowman.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/snowman.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/snowplow.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/snowplow.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/snowplow.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/soap.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/soap.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/soap.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/socks.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/socks.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/socks.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/solar-panel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/solar-panel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/solar-panel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sort-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sort-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sort-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sort-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sort-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sort-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sort.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sort.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sort.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spa.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/spa.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/spa.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spaghetti-monster-flying.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/spaghetti-monster-flying.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/spaghetti-monster-flying.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spell-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/spell-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/spell-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spider.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/spider.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/spider.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spinner.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/spinner.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/spinner.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/splotch.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/splotch.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/splotch.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spoon.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/spoon.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/spoon.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spray-can-sparkles.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/spray-can-sparkles.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/spray-can-sparkles.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spray-can.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/spray-can.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/spray-can.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-arrow-up-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-arrow-up-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-arrow-up-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-caret-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-caret-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-caret-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-caret-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-caret-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-caret-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-caret-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-caret-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-caret-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-caret-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-caret-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-caret-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-envelope.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-envelope.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-envelope.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-full.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-full.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-full.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-h.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-h.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-h.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-nfi.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-nfi.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-nfi.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-parking.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-parking.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-parking.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-pen.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-pen.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-pen.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-person-confined.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-person-confined.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-person-confined.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-phone-flip.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-phone-flip.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-phone-flip.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-phone.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-phone.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-phone.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-poll-horizontal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-poll-horizontal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-poll-horizontal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-poll-vertical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-poll-vertical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-poll-vertical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-root-variable.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-root-variable.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-root-variable.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-rss.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-rss.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-rss.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-share-nodes.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-share-nodes.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-share-nodes.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-up-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-up-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-up-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-virus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-virus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-virus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/staff-aesculapius.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/staff-aesculapius.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/staff-aesculapius.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stairs.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/stairs.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/stairs.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stamp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/stamp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/stamp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-and-crescent.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/star-and-crescent.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/star-and-crescent.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-half-stroke.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/star-half-stroke.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/star-half-stroke.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-half.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/star-half.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/star-half.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-of-david.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/star-of-david.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/star-of-david.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-of-life.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/star-of-life.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/star-of-life.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/star.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/star.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sterling-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sterling-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sterling-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stethoscope.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/stethoscope.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/stethoscope.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stop.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/stop.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/stop.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stopwatch-20.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/stopwatch-20.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/stopwatch-20.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stopwatch.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/stopwatch.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/stopwatch.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/store-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/store-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/store-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/store.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/store.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/store.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/street-view.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/street-view.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/street-view.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/strikethrough.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/strikethrough.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/strikethrough.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stroopwafel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/stroopwafel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/stroopwafel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/subscript.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/subscript.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/subscript.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/suitcase-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/suitcase-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/suitcase-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/suitcase-rolling.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/suitcase-rolling.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/suitcase-rolling.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/suitcase.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/suitcase.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/suitcase.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sun-plant-wilt.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sun-plant-wilt.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sun-plant-wilt.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sun.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/sun.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/sun.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/superscript.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/superscript.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/superscript.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/swatchbook.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/swatchbook.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/swatchbook.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/synagogue.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/synagogue.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/synagogue.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/syringe.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/syringe.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/syringe.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/t.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/t.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/t.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-cells-large.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/table-cells-large.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/table-cells-large.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-cells.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/table-cells.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/table-cells.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-columns.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/table-columns.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/table-columns.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-list.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/table-list.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/table-list.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-tennis-paddle-ball.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/table-tennis-paddle-ball.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/table-tennis-paddle-ball.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/table.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/table.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tablet-button.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tablet-button.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tablet-button.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tablet-screen-button.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tablet-screen-button.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tablet-screen-button.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tablet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tablet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tablet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tablets.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tablets.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tablets.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tachograph-digital.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tachograph-digital.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tachograph-digital.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tags.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tags.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tags.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tape.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tape.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tape.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tarp-droplet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tarp-droplet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tarp-droplet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tarp.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tarp.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tarp.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/taxi.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/taxi.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/taxi.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/teeth-open.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/teeth-open.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/teeth-open.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/teeth.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/teeth.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/teeth.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-arrow-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/temperature-arrow-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/temperature-arrow-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-arrow-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/temperature-arrow-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/temperature-arrow-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-empty.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/temperature-empty.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/temperature-empty.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-full.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/temperature-full.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/temperature-full.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-half.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/temperature-half.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/temperature-half.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-high.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/temperature-high.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/temperature-high.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-low.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/temperature-low.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/temperature-low.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-quarter.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/temperature-quarter.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/temperature-quarter.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-three-quarters.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/temperature-three-quarters.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/temperature-three-quarters.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tenge-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tenge-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tenge-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent-arrow-down-to-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tent-arrow-down-to-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tent-arrow-down-to-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent-arrow-left-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tent-arrow-left-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tent-arrow-left-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent-arrow-turn-left.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tent-arrow-turn-left.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tent-arrow-turn-left.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent-arrows-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tent-arrows-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tent-arrows-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tent.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tent.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tents.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tents.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tents.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/terminal.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/terminal.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/terminal.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/text-height.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/text-height.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/text-height.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/text-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/text-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/text-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/text-width.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/text-width.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/text-width.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/thermometer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/thermometer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/thermometer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/thumbs-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/thumbs-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/thumbs-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/thumbs-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/thumbs-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/thumbs-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/thumbtack.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/thumbtack.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/thumbtack.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ticket-simple.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ticket-simple.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ticket-simple.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ticket.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/ticket.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/ticket.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/timeline.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/timeline.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/timeline.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toggle-off.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/toggle-off.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/toggle-off.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toggle-on.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/toggle-on.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/toggle-on.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilet-paper-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/toilet-paper-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/toilet-paper-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilet-paper.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/toilet-paper.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/toilet-paper.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilet-portable.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/toilet-portable.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/toilet-portable.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/toilet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/toilet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilets-portable.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/toilets-portable.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/toilets-portable.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toolbox.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/toolbox.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/toolbox.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tooth.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tooth.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tooth.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/torii-gate.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/torii-gate.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/torii-gate.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tornado.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tornado.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tornado.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tower-broadcast.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tower-broadcast.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tower-broadcast.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tower-cell.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tower-cell.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tower-cell.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tower-observation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tower-observation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tower-observation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tractor.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tractor.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tractor.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trademark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/trademark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/trademark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/traffic-light.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/traffic-light.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/traffic-light.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trailer.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/trailer.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/trailer.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/train-subway.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/train-subway.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/train-subway.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/train-tram.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/train-tram.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/train-tram.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/train.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/train.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/train.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/transgender.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/transgender.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/transgender.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trash-arrow-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/trash-arrow-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/trash-arrow-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trash-can-arrow-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/trash-can-arrow-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/trash-can-arrow-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trash-can.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/trash-can.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/trash-can.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/trash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/trash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tree-city.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tree-city.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tree-city.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tree.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tree.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tree.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/triangle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/triangle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/triangle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trophy.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/trophy.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/trophy.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trowel-bricks.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/trowel-bricks.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/trowel-bricks.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trowel.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/trowel.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/trowel.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-arrow-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-arrow-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-arrow-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-droplet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-droplet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-droplet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-fast.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-fast.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-fast.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-field-un.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-field-un.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-field-un.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-field.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-field.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-field.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-front.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-front.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-front.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-medical.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-medical.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-medical.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-monster.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-monster.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-monster.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-moving.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-moving.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-moving.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-pickup.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-pickup.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-pickup.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-plane.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-plane.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-plane.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-ramp-box.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck-ramp-box.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck-ramp-box.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/truck.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/truck.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tty.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tty.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tty.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/turkish-lira-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/turkish-lira-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/turkish-lira-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/turn-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/turn-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/turn-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/turn-up.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/turn-up.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/turn-up.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tv.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/tv.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/tv.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/u.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/u.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/u.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/umbrella-beach.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/umbrella-beach.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/umbrella-beach.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/umbrella.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/umbrella.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/umbrella.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/underline.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/underline.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/underline.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/universal-access.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/universal-access.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/universal-access.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/unlock-keyhole.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/unlock-keyhole.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/unlock-keyhole.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/unlock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/unlock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/unlock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-down-left-right.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/up-down-left-right.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/up-down-left-right.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-down.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/up-down.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/up-down.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-long.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/up-long.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/up-long.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-right-and-down-left-from-center.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/up-right-and-down-left-from-center.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/up-right-and-down-left-from-center.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-right-from-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/up-right-from-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/up-right-from-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/upload.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/upload.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/upload.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-astronaut.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-astronaut.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-astronaut.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-clock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-clock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-clock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-doctor.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-doctor.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-doctor.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-gear.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-gear.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-gear.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-graduate.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-graduate.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-graduate.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-group.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-group.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-group.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-injured.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-injured.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-injured.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-large-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-large-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-large-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-large.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-large.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-large.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-lock.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-lock.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-lock.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-minus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-minus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-minus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-ninja.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-ninja.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-ninja.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-nurse.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-nurse.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-nurse.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-pen.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-pen.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-pen.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-plus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-plus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-plus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-secret.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-secret.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-secret.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-shield.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-shield.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-shield.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-tag.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-tag.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-tag.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-tie.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-tie.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-tie.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/user.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/user.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-between-lines.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/users-between-lines.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/users-between-lines.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-gear.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/users-gear.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/users-gear.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-line.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/users-line.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/users-line.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-rays.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/users-rays.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/users-rays.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-rectangle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/users-rectangle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/users-rectangle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/users-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/users-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-viewfinder.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/users-viewfinder.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/users-viewfinder.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/users.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/users.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/utensils.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/utensils.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/utensils.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/v.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/v.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/v.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/van-shuttle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/van-shuttle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/van-shuttle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vault.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vault.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vault.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vector-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vector-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vector-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/venus-double.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/venus-double.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/venus-double.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/venus-mars.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/venus-mars.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/venus-mars.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/venus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/venus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/venus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vest-patches.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vest-patches.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vest-patches.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vest.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vest.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vest.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vial-circle-check.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vial-circle-check.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vial-circle-check.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vial-virus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vial-virus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vial-virus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vial.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vial.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vial.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vials.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vials.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vials.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/video-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/video-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/video-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/video.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/video.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/video.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vihara.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vihara.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vihara.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/virus-covid-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/virus-covid-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/virus-covid-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/virus-covid.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/virus-covid.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/virus-covid.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/virus-slash.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/virus-slash.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/virus-slash.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/virus.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/virus.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/virus.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/viruses.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/viruses.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/viruses.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/voicemail.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/voicemail.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/voicemail.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volcano.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/volcano.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/volcano.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volleyball.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/volleyball.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/volleyball.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volume-high.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/volume-high.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/volume-high.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volume-low.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/volume-low.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/volume-low.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volume-off.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/volume-off.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/volume-off.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volume-xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/volume-xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/volume-xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vr-cardboard.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/vr-cardboard.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/vr-cardboard.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/w.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/w.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/w.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/walkie-talkie.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/walkie-talkie.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/walkie-talkie.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wallet.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wallet.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wallet.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wand-magic-sparkles.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wand-magic-sparkles.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wand-magic-sparkles.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wand-magic.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wand-magic.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wand-magic.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wand-sparkles.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wand-sparkles.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wand-sparkles.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/warehouse.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/warehouse.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/warehouse.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/water-ladder.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/water-ladder.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/water-ladder.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/water.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/water.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/water.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wave-square.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wave-square.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wave-square.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/weight-hanging.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/weight-hanging.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/weight-hanging.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/weight-scale.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/weight-scale.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/weight-scale.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wheat-awn-circle-exclamation.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wheat-awn-circle-exclamation.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wheat-awn-circle-exclamation.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wheat-awn.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wheat-awn.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wheat-awn.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wheelchair-move.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wheelchair-move.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wheelchair-move.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wheelchair.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wheelchair.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wheelchair.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/whiskey-glass.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/whiskey-glass.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/whiskey-glass.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wifi.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wifi.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wifi.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wind.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wind.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wind.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/window-maximize.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/window-maximize.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/window-maximize.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/window-minimize.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/window-minimize.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/window-minimize.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/window-restore.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/window-restore.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/window-restore.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wine-bottle.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wine-bottle.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wine-bottle.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wine-glass-empty.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wine-glass-empty.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wine-glass-empty.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wine-glass.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wine-glass.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wine-glass.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/won-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/won-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/won-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/worm.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/worm.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/worm.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wrench.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/wrench.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/wrench.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/x-ray.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/x-ray.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/x-ray.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/x.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/x.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/x.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/xmark.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/xmark.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/xmark.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/xmarks-lines.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/xmarks-lines.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/xmarks-lines.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/y.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/y.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/y.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/yen-sign.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/yen-sign.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/yen-sign.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/yin-yang.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/yin-yang.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/yin-yang.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/z.svg",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/svgs/solid/z.svg",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/svgs/solid/z.svg"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-brands-400.ttf",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/webfonts/fa-brands-400.ttf",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/webfonts/fa-brands-400.ttf"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-brands-400.woff2",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/webfonts/fa-brands-400.woff2",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/webfonts/fa-brands-400.woff2"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-regular-400.ttf",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/webfonts/fa-regular-400.ttf",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/webfonts/fa-regular-400.ttf"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-regular-400.woff2",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/webfonts/fa-regular-400.woff2",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/webfonts/fa-regular-400.woff2"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-solid-900.ttf",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/webfonts/fa-solid-900.ttf",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/webfonts/fa-solid-900.ttf"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-solid-900.woff2",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/webfonts/fa-solid-900.woff2",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/webfonts/fa-solid-900.woff2"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-v4compatibility.ttf",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/webfonts/fa-v4compatibility.ttf",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/webfonts/fa-v4compatibility.ttf"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-v4compatibility.woff2",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/FontAwesome/webfonts/fa-v4compatibility.woff2",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/FontAwesome/webfonts/fa-v4compatibility.woff2"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery-validation-unobtrusive/LICENSE.txt",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/dist/additional-methods.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery-validation/dist/additional-methods.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery-validation/dist/additional-methods.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery-validation/dist/additional-methods.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery-validation/dist/additional-methods.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery-validation/dist/jquery.validate.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery-validation/dist/jquery.validate.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery-validation/dist/jquery.validate.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery-validation/dist/jquery.validate.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/LICENSE.md",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery-validation/LICENSE.md",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery-validation/LICENSE.md"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery/dist/jquery.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery/dist/jquery.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery/dist/jquery.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery/dist/jquery.min.js",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery/dist/jquery.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery/dist/jquery.min.js"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery/dist/jquery.min.map",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery/dist/jquery.min.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery/dist/jquery.min.map"
- },
- {
- "Identity": "/home/merlin/MyWebsite/wwwroot/lib/jquery/LICENSE.txt",
- "SourceId": "MyWebsite",
- "SourceType": "Discovered",
- "ContentRoot": "/home/merlin/MyWebsite/wwwroot/",
- "BasePath": "_content/MyWebsite",
- "RelativePath": "lib/jquery/LICENSE.txt",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot/lib/jquery/LICENSE.txt"
- }
- ]
-}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets.development.json b/obj/Debug/net7.0/staticwebassets.development.json
deleted file mode 100644
index 49e7936..0000000
--- a/obj/Debug/net7.0/staticwebassets.development.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["/home/merlin/MyWebsite/wwwroot/","/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/bundle/"],"Root":{"Children":{"Content":{"Children":{"Logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Content/Logo.png"},"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"Fonts":{"Children":{"JetBrainsMono-Regular.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Fonts/JetBrainsMono-Regular.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"FontAwesome":{"Children":{"css":{"Children":{"all.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/all.css"},"Patterns":null},"all.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/all.min.css"},"Patterns":null},"brands.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/brands.css"},"Patterns":null},"brands.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/brands.min.css"},"Patterns":null},"fontawesome.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/fontawesome.css"},"Patterns":null},"fontawesome.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/fontawesome.min.css"},"Patterns":null},"regular.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/regular.css"},"Patterns":null},"regular.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/regular.min.css"},"Patterns":null},"solid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/solid.css"},"Patterns":null},"solid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/solid.min.css"},"Patterns":null},"svg-with-js.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/svg-with-js.css"},"Patterns":null},"svg-with-js.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/svg-with-js.min.css"},"Patterns":null},"v4-font-face.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v4-font-face.css"},"Patterns":null},"v4-font-face.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v4-font-face.min.css"},"Patterns":null},"v4-shims.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v4-shims.css"},"Patterns":null},"v4-shims.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v4-shims.min.css"},"Patterns":null},"v5-font-face.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v5-font-face.css"},"Patterns":null},"v5-font-face.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/css/v5-font-face.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"all.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/all.js"},"Patterns":null},"all.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/all.min.js"},"Patterns":null},"brands.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/brands.js"},"Patterns":null},"brands.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/brands.min.js"},"Patterns":null},"conflict-detection.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/conflict-detection.js"},"Patterns":null},"conflict-detection.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/conflict-detection.min.js"},"Patterns":null},"fontawesome.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/fontawesome.js"},"Patterns":null},"fontawesome.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/fontawesome.min.js"},"Patterns":null},"regular.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/regular.js"},"Patterns":null},"regular.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/regular.min.js"},"Patterns":null},"solid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/solid.js"},"Patterns":null},"solid.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/solid.min.js"},"Patterns":null},"v4-shims.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/v4-shims.js"},"Patterns":null},"v4-shims.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/js/v4-shims.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"less":{"Children":{"brands.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/brands.less"},"Patterns":null},"fontawesome.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/fontawesome.less"},"Patterns":null},"regular.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/regular.less"},"Patterns":null},"solid.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/solid.less"},"Patterns":null},"v4-shims.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/v4-shims.less"},"Patterns":null},"_animated.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_animated.less"},"Patterns":null},"_bordered-pulled.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_bordered-pulled.less"},"Patterns":null},"_core.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_core.less"},"Patterns":null},"_fixed-width.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_fixed-width.less"},"Patterns":null},"_icons.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_icons.less"},"Patterns":null},"_list.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_list.less"},"Patterns":null},"_mixins.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_mixins.less"},"Patterns":null},"_rotated-flipped.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_rotated-flipped.less"},"Patterns":null},"_screen-reader.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_screen-reader.less"},"Patterns":null},"_shims.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_shims.less"},"Patterns":null},"_sizing.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_sizing.less"},"Patterns":null},"_stacked.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_stacked.less"},"Patterns":null},"_variables.less":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/less/_variables.less"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/LICENSE.txt"},"Patterns":null},"metadata":{"Children":{"categories.yml":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/categories.yml"},"Patterns":null},"icons.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/icons.json"},"Patterns":null},"icons.yml":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/icons.yml"},"Patterns":null},"shims.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/shims.json"},"Patterns":null},"shims.yml":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/shims.yml"},"Patterns":null},"sponsors.yml":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/metadata/sponsors.yml"},"Patterns":null}},"Asset":null,"Patterns":null},"scss":{"Children":{"brands.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/brands.scss"},"Patterns":null},"fontawesome.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/fontawesome.scss"},"Patterns":null},"regular.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/regular.scss"},"Patterns":null},"solid.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/solid.scss"},"Patterns":null},"v4-shims.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/v4-shims.scss"},"Patterns":null},"_animated.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_animated.scss"},"Patterns":null},"_bordered-pulled.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_bordered-pulled.scss"},"Patterns":null},"_core.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_core.scss"},"Patterns":null},"_fixed-width.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_fixed-width.scss"},"Patterns":null},"_functions.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_functions.scss"},"Patterns":null},"_icons.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_icons.scss"},"Patterns":null},"_list.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_list.scss"},"Patterns":null},"_mixins.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_mixins.scss"},"Patterns":null},"_rotated-flipped.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_rotated-flipped.scss"},"Patterns":null},"_screen-reader.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_screen-reader.scss"},"Patterns":null},"_shims.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_shims.scss"},"Patterns":null},"_sizing.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_sizing.scss"},"Patterns":null},"_stacked.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_stacked.scss"},"Patterns":null},"_variables.scss":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/scss/_variables.scss"},"Patterns":null}},"Asset":null,"Patterns":null},"sprites":{"Children":{"brands.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/sprites/brands.svg"},"Patterns":null},"regular.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/sprites/regular.svg"},"Patterns":null},"solid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/sprites/solid.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"svgs":{"Children":{"brands":{"Children":{"42-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/42-group.svg"},"Patterns":null},"500px.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/500px.svg"},"Patterns":null},"accessible-icon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/accessible-icon.svg"},"Patterns":null},"accusoft.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/accusoft.svg"},"Patterns":null},"adn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/adn.svg"},"Patterns":null},"adversal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/adversal.svg"},"Patterns":null},"affiliatetheme.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/affiliatetheme.svg"},"Patterns":null},"airbnb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/airbnb.svg"},"Patterns":null},"algolia.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/algolia.svg"},"Patterns":null},"alipay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/alipay.svg"},"Patterns":null},"amazon-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/amazon-pay.svg"},"Patterns":null},"amazon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/amazon.svg"},"Patterns":null},"amilia.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/amilia.svg"},"Patterns":null},"android.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/android.svg"},"Patterns":null},"angellist.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/angellist.svg"},"Patterns":null},"angrycreative.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/angrycreative.svg"},"Patterns":null},"angular.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/angular.svg"},"Patterns":null},"app-store-ios.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/app-store-ios.svg"},"Patterns":null},"app-store.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/app-store.svg"},"Patterns":null},"apper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/apper.svg"},"Patterns":null},"apple-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/apple-pay.svg"},"Patterns":null},"apple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/apple.svg"},"Patterns":null},"artstation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/artstation.svg"},"Patterns":null},"asymmetrik.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/asymmetrik.svg"},"Patterns":null},"atlassian.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/atlassian.svg"},"Patterns":null},"audible.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/audible.svg"},"Patterns":null},"autoprefixer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/autoprefixer.svg"},"Patterns":null},"avianex.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/avianex.svg"},"Patterns":null},"aviato.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/aviato.svg"},"Patterns":null},"aws.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/aws.svg"},"Patterns":null},"bandcamp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bandcamp.svg"},"Patterns":null},"battle-net.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/battle-net.svg"},"Patterns":null},"behance-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/behance-square.svg"},"Patterns":null},"behance.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/behance.svg"},"Patterns":null},"bilibili.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bilibili.svg"},"Patterns":null},"bimobject.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bimobject.svg"},"Patterns":null},"bitbucket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bitbucket.svg"},"Patterns":null},"bitcoin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bitcoin.svg"},"Patterns":null},"bity.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bity.svg"},"Patterns":null},"black-tie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/black-tie.svg"},"Patterns":null},"blackberry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/blackberry.svg"},"Patterns":null},"blogger-b.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/blogger-b.svg"},"Patterns":null},"blogger.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/blogger.svg"},"Patterns":null},"bluetooth-b.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bluetooth-b.svg"},"Patterns":null},"bluetooth.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bluetooth.svg"},"Patterns":null},"bootstrap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bootstrap.svg"},"Patterns":null},"bots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/bots.svg"},"Patterns":null},"btc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/btc.svg"},"Patterns":null},"buffer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/buffer.svg"},"Patterns":null},"buromobelexperte.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/buromobelexperte.svg"},"Patterns":null},"buy-n-large.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/buy-n-large.svg"},"Patterns":null},"buysellads.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/buysellads.svg"},"Patterns":null},"canadian-maple-leaf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/canadian-maple-leaf.svg"},"Patterns":null},"cc-amazon-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-amazon-pay.svg"},"Patterns":null},"cc-amex.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-amex.svg"},"Patterns":null},"cc-apple-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-apple-pay.svg"},"Patterns":null},"cc-diners-club.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-diners-club.svg"},"Patterns":null},"cc-discover.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-discover.svg"},"Patterns":null},"cc-jcb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-jcb.svg"},"Patterns":null},"cc-mastercard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-mastercard.svg"},"Patterns":null},"cc-paypal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-paypal.svg"},"Patterns":null},"cc-stripe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-stripe.svg"},"Patterns":null},"cc-visa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cc-visa.svg"},"Patterns":null},"centercode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/centercode.svg"},"Patterns":null},"centos.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/centos.svg"},"Patterns":null},"chrome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/chrome.svg"},"Patterns":null},"chromecast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/chromecast.svg"},"Patterns":null},"cloudflare.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cloudflare.svg"},"Patterns":null},"cloudscale.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cloudscale.svg"},"Patterns":null},"cloudsmith.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cloudsmith.svg"},"Patterns":null},"cloudversify.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cloudversify.svg"},"Patterns":null},"cmplid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cmplid.svg"},"Patterns":null},"codepen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/codepen.svg"},"Patterns":null},"codiepie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/codiepie.svg"},"Patterns":null},"confluence.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/confluence.svg"},"Patterns":null},"connectdevelop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/connectdevelop.svg"},"Patterns":null},"contao.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/contao.svg"},"Patterns":null},"cotton-bureau.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cotton-bureau.svg"},"Patterns":null},"cpanel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cpanel.svg"},"Patterns":null},"creative-commons-by.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-by.svg"},"Patterns":null},"creative-commons-nc-eu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-nc-eu.svg"},"Patterns":null},"creative-commons-nc-jp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-nc-jp.svg"},"Patterns":null},"creative-commons-nc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-nc.svg"},"Patterns":null},"creative-commons-nd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-nd.svg"},"Patterns":null},"creative-commons-pd-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-pd-alt.svg"},"Patterns":null},"creative-commons-pd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-pd.svg"},"Patterns":null},"creative-commons-remix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-remix.svg"},"Patterns":null},"creative-commons-sa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-sa.svg"},"Patterns":null},"creative-commons-sampling-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-sampling-plus.svg"},"Patterns":null},"creative-commons-sampling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-sampling.svg"},"Patterns":null},"creative-commons-share.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-share.svg"},"Patterns":null},"creative-commons-zero.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons-zero.svg"},"Patterns":null},"creative-commons.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/creative-commons.svg"},"Patterns":null},"critical-role.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/critical-role.svg"},"Patterns":null},"css3-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/css3-alt.svg"},"Patterns":null},"css3.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/css3.svg"},"Patterns":null},"cuttlefish.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/cuttlefish.svg"},"Patterns":null},"d-and-d-beyond.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/d-and-d-beyond.svg"},"Patterns":null},"d-and-d.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/d-and-d.svg"},"Patterns":null},"dailymotion.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dailymotion.svg"},"Patterns":null},"dashcube.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dashcube.svg"},"Patterns":null},"deezer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/deezer.svg"},"Patterns":null},"delicious.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/delicious.svg"},"Patterns":null},"deploydog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/deploydog.svg"},"Patterns":null},"deskpro.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/deskpro.svg"},"Patterns":null},"dev.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dev.svg"},"Patterns":null},"deviantart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/deviantart.svg"},"Patterns":null},"dhl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dhl.svg"},"Patterns":null},"diaspora.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/diaspora.svg"},"Patterns":null},"digg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/digg.svg"},"Patterns":null},"digital-ocean.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/digital-ocean.svg"},"Patterns":null},"discord.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/discord.svg"},"Patterns":null},"discourse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/discourse.svg"},"Patterns":null},"dochub.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dochub.svg"},"Patterns":null},"docker.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/docker.svg"},"Patterns":null},"draft2digital.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/draft2digital.svg"},"Patterns":null},"dribbble-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dribbble-square.svg"},"Patterns":null},"dribbble.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dribbble.svg"},"Patterns":null},"dropbox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dropbox.svg"},"Patterns":null},"drupal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/drupal.svg"},"Patterns":null},"dyalog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/dyalog.svg"},"Patterns":null},"earlybirds.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/earlybirds.svg"},"Patterns":null},"ebay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ebay.svg"},"Patterns":null},"edge-legacy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/edge-legacy.svg"},"Patterns":null},"edge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/edge.svg"},"Patterns":null},"elementor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/elementor.svg"},"Patterns":null},"ello.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ello.svg"},"Patterns":null},"ember.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ember.svg"},"Patterns":null},"empire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/empire.svg"},"Patterns":null},"envira.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/envira.svg"},"Patterns":null},"erlang.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/erlang.svg"},"Patterns":null},"ethereum.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ethereum.svg"},"Patterns":null},"etsy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/etsy.svg"},"Patterns":null},"evernote.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/evernote.svg"},"Patterns":null},"expeditedssl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/expeditedssl.svg"},"Patterns":null},"facebook-f.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/facebook-f.svg"},"Patterns":null},"facebook-messenger.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/facebook-messenger.svg"},"Patterns":null},"facebook-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/facebook-square.svg"},"Patterns":null},"facebook.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/facebook.svg"},"Patterns":null},"fantasy-flight-games.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fantasy-flight-games.svg"},"Patterns":null},"fedex.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fedex.svg"},"Patterns":null},"fedora.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fedora.svg"},"Patterns":null},"figma.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/figma.svg"},"Patterns":null},"firefox-browser.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/firefox-browser.svg"},"Patterns":null},"firefox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/firefox.svg"},"Patterns":null},"first-order-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/first-order-alt.svg"},"Patterns":null},"first-order.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/first-order.svg"},"Patterns":null},"firstdraft.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/firstdraft.svg"},"Patterns":null},"flickr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/flickr.svg"},"Patterns":null},"flipboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/flipboard.svg"},"Patterns":null},"fly.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fly.svg"},"Patterns":null},"font-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/font-awesome.svg"},"Patterns":null},"fonticons-fi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fonticons-fi.svg"},"Patterns":null},"fonticons.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fonticons.svg"},"Patterns":null},"fort-awesome-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fort-awesome-alt.svg"},"Patterns":null},"fort-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fort-awesome.svg"},"Patterns":null},"forumbee.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/forumbee.svg"},"Patterns":null},"foursquare.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/foursquare.svg"},"Patterns":null},"free-code-camp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/free-code-camp.svg"},"Patterns":null},"freebsd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/freebsd.svg"},"Patterns":null},"fulcrum.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/fulcrum.svg"},"Patterns":null},"galactic-republic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/galactic-republic.svg"},"Patterns":null},"galactic-senate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/galactic-senate.svg"},"Patterns":null},"get-pocket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/get-pocket.svg"},"Patterns":null},"gg-circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gg-circle.svg"},"Patterns":null},"gg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gg.svg"},"Patterns":null},"git-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/git-alt.svg"},"Patterns":null},"git-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/git-square.svg"},"Patterns":null},"git.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/git.svg"},"Patterns":null},"github-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/github-alt.svg"},"Patterns":null},"github-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/github-square.svg"},"Patterns":null},"github.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/github.svg"},"Patterns":null},"gitkraken.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gitkraken.svg"},"Patterns":null},"gitlab.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gitlab.svg"},"Patterns":null},"gitter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gitter.svg"},"Patterns":null},"glide-g.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/glide-g.svg"},"Patterns":null},"glide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/glide.svg"},"Patterns":null},"gofore.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gofore.svg"},"Patterns":null},"golang.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/golang.svg"},"Patterns":null},"goodreads-g.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/goodreads-g.svg"},"Patterns":null},"goodreads.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/goodreads.svg"},"Patterns":null},"google-drive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-drive.svg"},"Patterns":null},"google-pay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-pay.svg"},"Patterns":null},"google-play.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-play.svg"},"Patterns":null},"google-plus-g.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-plus-g.svg"},"Patterns":null},"google-plus-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-plus-square.svg"},"Patterns":null},"google-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-plus.svg"},"Patterns":null},"google-wallet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google-wallet.svg"},"Patterns":null},"google.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/google.svg"},"Patterns":null},"gratipay.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gratipay.svg"},"Patterns":null},"grav.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/grav.svg"},"Patterns":null},"gripfire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gripfire.svg"},"Patterns":null},"grunt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/grunt.svg"},"Patterns":null},"guilded.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/guilded.svg"},"Patterns":null},"gulp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/gulp.svg"},"Patterns":null},"hacker-news-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hacker-news-square.svg"},"Patterns":null},"hacker-news.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hacker-news.svg"},"Patterns":null},"hackerrank.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hackerrank.svg"},"Patterns":null},"hashnode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hashnode.svg"},"Patterns":null},"hips.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hips.svg"},"Patterns":null},"hire-a-helper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hire-a-helper.svg"},"Patterns":null},"hive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hive.svg"},"Patterns":null},"hooli.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hooli.svg"},"Patterns":null},"hornbill.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hornbill.svg"},"Patterns":null},"hotjar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hotjar.svg"},"Patterns":null},"houzz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/houzz.svg"},"Patterns":null},"html5.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/html5.svg"},"Patterns":null},"hubspot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/hubspot.svg"},"Patterns":null},"ideal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ideal.svg"},"Patterns":null},"imdb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/imdb.svg"},"Patterns":null},"instagram-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/instagram-square.svg"},"Patterns":null},"instagram.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/instagram.svg"},"Patterns":null},"instalod.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/instalod.svg"},"Patterns":null},"intercom.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/intercom.svg"},"Patterns":null},"internet-explorer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/internet-explorer.svg"},"Patterns":null},"invision.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/invision.svg"},"Patterns":null},"ioxhost.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ioxhost.svg"},"Patterns":null},"itch-io.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/itch-io.svg"},"Patterns":null},"itunes-note.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/itunes-note.svg"},"Patterns":null},"itunes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/itunes.svg"},"Patterns":null},"java.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/java.svg"},"Patterns":null},"jedi-order.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/jedi-order.svg"},"Patterns":null},"jenkins.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/jenkins.svg"},"Patterns":null},"jira.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/jira.svg"},"Patterns":null},"joget.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/joget.svg"},"Patterns":null},"joomla.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/joomla.svg"},"Patterns":null},"js-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/js-square.svg"},"Patterns":null},"js.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/js.svg"},"Patterns":null},"jsfiddle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/jsfiddle.svg"},"Patterns":null},"kaggle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/kaggle.svg"},"Patterns":null},"keybase.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/keybase.svg"},"Patterns":null},"keycdn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/keycdn.svg"},"Patterns":null},"kickstarter-k.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/kickstarter-k.svg"},"Patterns":null},"kickstarter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/kickstarter.svg"},"Patterns":null},"korvue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/korvue.svg"},"Patterns":null},"laravel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/laravel.svg"},"Patterns":null},"lastfm-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/lastfm-square.svg"},"Patterns":null},"lastfm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/lastfm.svg"},"Patterns":null},"leanpub.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/leanpub.svg"},"Patterns":null},"less.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/less.svg"},"Patterns":null},"line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/line.svg"},"Patterns":null},"linkedin-in.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/linkedin-in.svg"},"Patterns":null},"linkedin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/linkedin.svg"},"Patterns":null},"linode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/linode.svg"},"Patterns":null},"linux.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/linux.svg"},"Patterns":null},"lyft.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/lyft.svg"},"Patterns":null},"magento.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/magento.svg"},"Patterns":null},"mailchimp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mailchimp.svg"},"Patterns":null},"mandalorian.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mandalorian.svg"},"Patterns":null},"markdown.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/markdown.svg"},"Patterns":null},"mastodon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mastodon.svg"},"Patterns":null},"maxcdn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/maxcdn.svg"},"Patterns":null},"mdb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mdb.svg"},"Patterns":null},"medapps.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/medapps.svg"},"Patterns":null},"medium.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/medium.svg"},"Patterns":null},"medrt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/medrt.svg"},"Patterns":null},"meetup.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/meetup.svg"},"Patterns":null},"megaport.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/megaport.svg"},"Patterns":null},"mendeley.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mendeley.svg"},"Patterns":null},"microblog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/microblog.svg"},"Patterns":null},"microsoft.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/microsoft.svg"},"Patterns":null},"mix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mix.svg"},"Patterns":null},"mixcloud.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mixcloud.svg"},"Patterns":null},"mixer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mixer.svg"},"Patterns":null},"mizuni.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/mizuni.svg"},"Patterns":null},"modx.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/modx.svg"},"Patterns":null},"monero.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/monero.svg"},"Patterns":null},"napster.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/napster.svg"},"Patterns":null},"neos.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/neos.svg"},"Patterns":null},"nfc-directional.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/nfc-directional.svg"},"Patterns":null},"nfc-symbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/nfc-symbol.svg"},"Patterns":null},"nimblr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/nimblr.svg"},"Patterns":null},"node-js.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/node-js.svg"},"Patterns":null},"node.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/node.svg"},"Patterns":null},"npm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/npm.svg"},"Patterns":null},"ns8.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ns8.svg"},"Patterns":null},"nutritionix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/nutritionix.svg"},"Patterns":null},"octopus-deploy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/octopus-deploy.svg"},"Patterns":null},"odnoklassniki-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/odnoklassniki-square.svg"},"Patterns":null},"odnoklassniki.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/odnoklassniki.svg"},"Patterns":null},"old-republic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/old-republic.svg"},"Patterns":null},"opencart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/opencart.svg"},"Patterns":null},"openid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/openid.svg"},"Patterns":null},"opera.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/opera.svg"},"Patterns":null},"optin-monster.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/optin-monster.svg"},"Patterns":null},"orcid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/orcid.svg"},"Patterns":null},"osi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/osi.svg"},"Patterns":null},"padlet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/padlet.svg"},"Patterns":null},"page4.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/page4.svg"},"Patterns":null},"pagelines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pagelines.svg"},"Patterns":null},"palfed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/palfed.svg"},"Patterns":null},"patreon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/patreon.svg"},"Patterns":null},"paypal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/paypal.svg"},"Patterns":null},"perbyte.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/perbyte.svg"},"Patterns":null},"periscope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/periscope.svg"},"Patterns":null},"phabricator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/phabricator.svg"},"Patterns":null},"phoenix-framework.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/phoenix-framework.svg"},"Patterns":null},"phoenix-squadron.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/phoenix-squadron.svg"},"Patterns":null},"php.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/php.svg"},"Patterns":null},"pied-piper-alt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper-alt.svg"},"Patterns":null},"pied-piper-hat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper-hat.svg"},"Patterns":null},"pied-piper-pp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper-pp.svg"},"Patterns":null},"pied-piper-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper-square.svg"},"Patterns":null},"pied-piper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pied-piper.svg"},"Patterns":null},"pinterest-p.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pinterest-p.svg"},"Patterns":null},"pinterest-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pinterest-square.svg"},"Patterns":null},"pinterest.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pinterest.svg"},"Patterns":null},"pix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pix.svg"},"Patterns":null},"playstation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/playstation.svg"},"Patterns":null},"product-hunt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/product-hunt.svg"},"Patterns":null},"pushed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/pushed.svg"},"Patterns":null},"python.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/python.svg"},"Patterns":null},"qq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/qq.svg"},"Patterns":null},"quinscape.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/quinscape.svg"},"Patterns":null},"quora.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/quora.svg"},"Patterns":null},"r-project.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/r-project.svg"},"Patterns":null},"raspberry-pi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/raspberry-pi.svg"},"Patterns":null},"ravelry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ravelry.svg"},"Patterns":null},"react.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/react.svg"},"Patterns":null},"reacteurope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/reacteurope.svg"},"Patterns":null},"readme.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/readme.svg"},"Patterns":null},"rebel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rebel.svg"},"Patterns":null},"red-river.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/red-river.svg"},"Patterns":null},"reddit-alien.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/reddit-alien.svg"},"Patterns":null},"reddit-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/reddit-square.svg"},"Patterns":null},"reddit.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/reddit.svg"},"Patterns":null},"redhat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/redhat.svg"},"Patterns":null},"renren.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/renren.svg"},"Patterns":null},"replyd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/replyd.svg"},"Patterns":null},"researchgate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/researchgate.svg"},"Patterns":null},"resolving.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/resolving.svg"},"Patterns":null},"rev.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rev.svg"},"Patterns":null},"rocketchat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rocketchat.svg"},"Patterns":null},"rockrms.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rockrms.svg"},"Patterns":null},"rust.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/rust.svg"},"Patterns":null},"safari.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/safari.svg"},"Patterns":null},"salesforce.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/salesforce.svg"},"Patterns":null},"sass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sass.svg"},"Patterns":null},"schlix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/schlix.svg"},"Patterns":null},"screenpal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/screenpal.svg"},"Patterns":null},"scribd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/scribd.svg"},"Patterns":null},"searchengin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/searchengin.svg"},"Patterns":null},"sellcast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sellcast.svg"},"Patterns":null},"sellsy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sellsy.svg"},"Patterns":null},"servicestack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/servicestack.svg"},"Patterns":null},"shirtsinbulk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/shirtsinbulk.svg"},"Patterns":null},"shopify.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/shopify.svg"},"Patterns":null},"shopware.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/shopware.svg"},"Patterns":null},"simplybuilt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/simplybuilt.svg"},"Patterns":null},"sistrix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sistrix.svg"},"Patterns":null},"sith.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sith.svg"},"Patterns":null},"sitrox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sitrox.svg"},"Patterns":null},"sketch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sketch.svg"},"Patterns":null},"skyatlas.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/skyatlas.svg"},"Patterns":null},"skype.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/skype.svg"},"Patterns":null},"slack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/slack.svg"},"Patterns":null},"slideshare.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/slideshare.svg"},"Patterns":null},"snapchat-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/snapchat-square.svg"},"Patterns":null},"snapchat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/snapchat.svg"},"Patterns":null},"soundcloud.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/soundcloud.svg"},"Patterns":null},"sourcetree.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sourcetree.svg"},"Patterns":null},"speakap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/speakap.svg"},"Patterns":null},"speaker-deck.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/speaker-deck.svg"},"Patterns":null},"spotify.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/spotify.svg"},"Patterns":null},"square-font-awesome-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/square-font-awesome-stroke.svg"},"Patterns":null},"square-font-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/square-font-awesome.svg"},"Patterns":null},"squarespace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/squarespace.svg"},"Patterns":null},"stack-exchange.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stack-exchange.svg"},"Patterns":null},"stack-overflow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stack-overflow.svg"},"Patterns":null},"stackpath.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stackpath.svg"},"Patterns":null},"staylinked.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/staylinked.svg"},"Patterns":null},"steam-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/steam-square.svg"},"Patterns":null},"steam-symbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/steam-symbol.svg"},"Patterns":null},"steam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/steam.svg"},"Patterns":null},"sticker-mule.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/sticker-mule.svg"},"Patterns":null},"strava.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/strava.svg"},"Patterns":null},"stripe-s.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stripe-s.svg"},"Patterns":null},"stripe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stripe.svg"},"Patterns":null},"studiovinari.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/studiovinari.svg"},"Patterns":null},"stumbleupon-circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stumbleupon-circle.svg"},"Patterns":null},"stumbleupon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/stumbleupon.svg"},"Patterns":null},"superpowers.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/superpowers.svg"},"Patterns":null},"supple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/supple.svg"},"Patterns":null},"suse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/suse.svg"},"Patterns":null},"swift.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/swift.svg"},"Patterns":null},"symfony.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/symfony.svg"},"Patterns":null},"teamspeak.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/teamspeak.svg"},"Patterns":null},"telegram.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/telegram.svg"},"Patterns":null},"tencent-weibo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/tencent-weibo.svg"},"Patterns":null},"the-red-yeti.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/the-red-yeti.svg"},"Patterns":null},"themeco.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/themeco.svg"},"Patterns":null},"themeisle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/themeisle.svg"},"Patterns":null},"think-peaks.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/think-peaks.svg"},"Patterns":null},"tiktok.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/tiktok.svg"},"Patterns":null},"trade-federation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/trade-federation.svg"},"Patterns":null},"trello.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/trello.svg"},"Patterns":null},"tumblr-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/tumblr-square.svg"},"Patterns":null},"tumblr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/tumblr.svg"},"Patterns":null},"twitch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/twitch.svg"},"Patterns":null},"twitter-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/twitter-square.svg"},"Patterns":null},"twitter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/twitter.svg"},"Patterns":null},"typo3.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/typo3.svg"},"Patterns":null},"uber.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/uber.svg"},"Patterns":null},"ubuntu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ubuntu.svg"},"Patterns":null},"uikit.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/uikit.svg"},"Patterns":null},"umbraco.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/umbraco.svg"},"Patterns":null},"uncharted.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/uncharted.svg"},"Patterns":null},"uniregistry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/uniregistry.svg"},"Patterns":null},"unity.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/unity.svg"},"Patterns":null},"unsplash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/unsplash.svg"},"Patterns":null},"untappd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/untappd.svg"},"Patterns":null},"ups.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ups.svg"},"Patterns":null},"usb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/usb.svg"},"Patterns":null},"usps.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/usps.svg"},"Patterns":null},"ussunnah.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/ussunnah.svg"},"Patterns":null},"vaadin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vaadin.svg"},"Patterns":null},"viacoin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/viacoin.svg"},"Patterns":null},"viadeo-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/viadeo-square.svg"},"Patterns":null},"viadeo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/viadeo.svg"},"Patterns":null},"viber.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/viber.svg"},"Patterns":null},"vimeo-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vimeo-square.svg"},"Patterns":null},"vimeo-v.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vimeo-v.svg"},"Patterns":null},"vimeo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vimeo.svg"},"Patterns":null},"vine.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vine.svg"},"Patterns":null},"vk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vk.svg"},"Patterns":null},"vnv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vnv.svg"},"Patterns":null},"vuejs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/vuejs.svg"},"Patterns":null},"watchman-monitoring.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/watchman-monitoring.svg"},"Patterns":null},"waze.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/waze.svg"},"Patterns":null},"weebly.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/weebly.svg"},"Patterns":null},"weibo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/weibo.svg"},"Patterns":null},"weixin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/weixin.svg"},"Patterns":null},"whatsapp-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/whatsapp-square.svg"},"Patterns":null},"whatsapp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/whatsapp.svg"},"Patterns":null},"whmcs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/whmcs.svg"},"Patterns":null},"wikipedia-w.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wikipedia-w.svg"},"Patterns":null},"windows.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/windows.svg"},"Patterns":null},"wirsindhandwerk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wirsindhandwerk.svg"},"Patterns":null},"wix.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wix.svg"},"Patterns":null},"wizards-of-the-coast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wizards-of-the-coast.svg"},"Patterns":null},"wodu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wodu.svg"},"Patterns":null},"wolf-pack-battalion.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wolf-pack-battalion.svg"},"Patterns":null},"wordpress-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wordpress-simple.svg"},"Patterns":null},"wordpress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wordpress.svg"},"Patterns":null},"wpbeginner.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wpbeginner.svg"},"Patterns":null},"wpexplorer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wpexplorer.svg"},"Patterns":null},"wpforms.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wpforms.svg"},"Patterns":null},"wpressr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/wpressr.svg"},"Patterns":null},"xbox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/xbox.svg"},"Patterns":null},"xing-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/xing-square.svg"},"Patterns":null},"xing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/xing.svg"},"Patterns":null},"y-combinator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/y-combinator.svg"},"Patterns":null},"yahoo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yahoo.svg"},"Patterns":null},"yammer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yammer.svg"},"Patterns":null},"yandex-international.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yandex-international.svg"},"Patterns":null},"yandex.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yandex.svg"},"Patterns":null},"yarn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yarn.svg"},"Patterns":null},"yelp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yelp.svg"},"Patterns":null},"yoast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/yoast.svg"},"Patterns":null},"youtube-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/youtube-square.svg"},"Patterns":null},"youtube.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/youtube.svg"},"Patterns":null},"zhihu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/brands/zhihu.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"regular":{"Children":{"address-book.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/address-book.svg"},"Patterns":null},"address-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/address-card.svg"},"Patterns":null},"bell-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/bell-slash.svg"},"Patterns":null},"bell.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/bell.svg"},"Patterns":null},"bookmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/bookmark.svg"},"Patterns":null},"building.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/building.svg"},"Patterns":null},"calendar-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-check.svg"},"Patterns":null},"calendar-days.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-days.svg"},"Patterns":null},"calendar-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-minus.svg"},"Patterns":null},"calendar-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-plus.svg"},"Patterns":null},"calendar-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar-xmark.svg"},"Patterns":null},"calendar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/calendar.svg"},"Patterns":null},"chart-bar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chart-bar.svg"},"Patterns":null},"chess-bishop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-bishop.svg"},"Patterns":null},"chess-king.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-king.svg"},"Patterns":null},"chess-knight.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-knight.svg"},"Patterns":null},"chess-pawn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-pawn.svg"},"Patterns":null},"chess-queen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-queen.svg"},"Patterns":null},"chess-rook.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/chess-rook.svg"},"Patterns":null},"circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-check.svg"},"Patterns":null},"circle-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-dot.svg"},"Patterns":null},"circle-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-down.svg"},"Patterns":null},"circle-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-left.svg"},"Patterns":null},"circle-pause.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-pause.svg"},"Patterns":null},"circle-play.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-play.svg"},"Patterns":null},"circle-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-question.svg"},"Patterns":null},"circle-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-right.svg"},"Patterns":null},"circle-stop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-stop.svg"},"Patterns":null},"circle-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-up.svg"},"Patterns":null},"circle-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-user.svg"},"Patterns":null},"circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle-xmark.svg"},"Patterns":null},"circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/circle.svg"},"Patterns":null},"clipboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/clipboard.svg"},"Patterns":null},"clock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/clock.svg"},"Patterns":null},"clone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/clone.svg"},"Patterns":null},"closed-captioning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/closed-captioning.svg"},"Patterns":null},"comment-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/comment-dots.svg"},"Patterns":null},"comment.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/comment.svg"},"Patterns":null},"comments.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/comments.svg"},"Patterns":null},"compass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/compass.svg"},"Patterns":null},"copy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/copy.svg"},"Patterns":null},"copyright.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/copyright.svg"},"Patterns":null},"credit-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/credit-card.svg"},"Patterns":null},"envelope-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/envelope-open.svg"},"Patterns":null},"envelope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/envelope.svg"},"Patterns":null},"eye-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/eye-slash.svg"},"Patterns":null},"eye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/eye.svg"},"Patterns":null},"face-angry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-angry.svg"},"Patterns":null},"face-dizzy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-dizzy.svg"},"Patterns":null},"face-flushed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-flushed.svg"},"Patterns":null},"face-frown-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-frown-open.svg"},"Patterns":null},"face-frown.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-frown.svg"},"Patterns":null},"face-grimace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grimace.svg"},"Patterns":null},"face-grin-beam-sweat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-beam-sweat.svg"},"Patterns":null},"face-grin-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-beam.svg"},"Patterns":null},"face-grin-hearts.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-hearts.svg"},"Patterns":null},"face-grin-squint-tears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-squint-tears.svg"},"Patterns":null},"face-grin-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-squint.svg"},"Patterns":null},"face-grin-stars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-stars.svg"},"Patterns":null},"face-grin-tears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-tears.svg"},"Patterns":null},"face-grin-tongue-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-tongue-squint.svg"},"Patterns":null},"face-grin-tongue-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-tongue-wink.svg"},"Patterns":null},"face-grin-tongue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-tongue.svg"},"Patterns":null},"face-grin-wide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-wide.svg"},"Patterns":null},"face-grin-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin-wink.svg"},"Patterns":null},"face-grin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-grin.svg"},"Patterns":null},"face-kiss-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-kiss-beam.svg"},"Patterns":null},"face-kiss-wink-heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-kiss-wink-heart.svg"},"Patterns":null},"face-kiss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-kiss.svg"},"Patterns":null},"face-laugh-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-laugh-beam.svg"},"Patterns":null},"face-laugh-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-laugh-squint.svg"},"Patterns":null},"face-laugh-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-laugh-wink.svg"},"Patterns":null},"face-laugh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-laugh.svg"},"Patterns":null},"face-meh-blank.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-meh-blank.svg"},"Patterns":null},"face-meh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-meh.svg"},"Patterns":null},"face-rolling-eyes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-rolling-eyes.svg"},"Patterns":null},"face-sad-cry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-sad-cry.svg"},"Patterns":null},"face-sad-tear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-sad-tear.svg"},"Patterns":null},"face-smile-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-smile-beam.svg"},"Patterns":null},"face-smile-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-smile-wink.svg"},"Patterns":null},"face-smile.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-smile.svg"},"Patterns":null},"face-surprise.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-surprise.svg"},"Patterns":null},"face-tired.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/face-tired.svg"},"Patterns":null},"file-audio.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-audio.svg"},"Patterns":null},"file-code.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-code.svg"},"Patterns":null},"file-excel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-excel.svg"},"Patterns":null},"file-image.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-image.svg"},"Patterns":null},"file-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-lines.svg"},"Patterns":null},"file-pdf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-pdf.svg"},"Patterns":null},"file-powerpoint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-powerpoint.svg"},"Patterns":null},"file-video.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-video.svg"},"Patterns":null},"file-word.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-word.svg"},"Patterns":null},"file-zipper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file-zipper.svg"},"Patterns":null},"file.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/file.svg"},"Patterns":null},"flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/flag.svg"},"Patterns":null},"floppy-disk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/floppy-disk.svg"},"Patterns":null},"folder-closed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/folder-closed.svg"},"Patterns":null},"folder-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/folder-open.svg"},"Patterns":null},"folder.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/folder.svg"},"Patterns":null},"font-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/font-awesome.svg"},"Patterns":null},"futbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/futbol.svg"},"Patterns":null},"gem.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/gem.svg"},"Patterns":null},"hand-back-fist.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-back-fist.svg"},"Patterns":null},"hand-lizard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-lizard.svg"},"Patterns":null},"hand-peace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-peace.svg"},"Patterns":null},"hand-point-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-point-down.svg"},"Patterns":null},"hand-point-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-point-left.svg"},"Patterns":null},"hand-point-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-point-right.svg"},"Patterns":null},"hand-point-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-point-up.svg"},"Patterns":null},"hand-pointer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-pointer.svg"},"Patterns":null},"hand-scissors.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-scissors.svg"},"Patterns":null},"hand-spock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand-spock.svg"},"Patterns":null},"hand.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hand.svg"},"Patterns":null},"handshake.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/handshake.svg"},"Patterns":null},"hard-drive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hard-drive.svg"},"Patterns":null},"heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/heart.svg"},"Patterns":null},"hospital.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hospital.svg"},"Patterns":null},"hourglass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/hourglass.svg"},"Patterns":null},"id-badge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/id-badge.svg"},"Patterns":null},"id-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/id-card.svg"},"Patterns":null},"image.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/image.svg"},"Patterns":null},"images.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/images.svg"},"Patterns":null},"keyboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/keyboard.svg"},"Patterns":null},"lemon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/lemon.svg"},"Patterns":null},"life-ring.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/life-ring.svg"},"Patterns":null},"lightbulb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/lightbulb.svg"},"Patterns":null},"map.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/map.svg"},"Patterns":null},"message.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/message.svg"},"Patterns":null},"money-bill-1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/money-bill-1.svg"},"Patterns":null},"moon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/moon.svg"},"Patterns":null},"newspaper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/newspaper.svg"},"Patterns":null},"note-sticky.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/note-sticky.svg"},"Patterns":null},"object-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/object-group.svg"},"Patterns":null},"object-ungroup.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/object-ungroup.svg"},"Patterns":null},"paper-plane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/paper-plane.svg"},"Patterns":null},"paste.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/paste.svg"},"Patterns":null},"pen-to-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/pen-to-square.svg"},"Patterns":null},"rectangle-list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/rectangle-list.svg"},"Patterns":null},"rectangle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/rectangle-xmark.svg"},"Patterns":null},"registered.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/registered.svg"},"Patterns":null},"share-from-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/share-from-square.svg"},"Patterns":null},"snowflake.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/snowflake.svg"},"Patterns":null},"square-caret-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-caret-down.svg"},"Patterns":null},"square-caret-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-caret-left.svg"},"Patterns":null},"square-caret-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-caret-right.svg"},"Patterns":null},"square-caret-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-caret-up.svg"},"Patterns":null},"square-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-check.svg"},"Patterns":null},"square-full.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-full.svg"},"Patterns":null},"square-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-minus.svg"},"Patterns":null},"square-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square-plus.svg"},"Patterns":null},"square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/square.svg"},"Patterns":null},"star-half-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/star-half-stroke.svg"},"Patterns":null},"star-half.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/star-half.svg"},"Patterns":null},"star.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/star.svg"},"Patterns":null},"sun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/sun.svg"},"Patterns":null},"thumbs-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/thumbs-down.svg"},"Patterns":null},"thumbs-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/thumbs-up.svg"},"Patterns":null},"trash-can.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/trash-can.svg"},"Patterns":null},"user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/user.svg"},"Patterns":null},"window-maximize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/window-maximize.svg"},"Patterns":null},"window-minimize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/window-minimize.svg"},"Patterns":null},"window-restore.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/regular/window-restore.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"solid":{"Children":{"0.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/0.svg"},"Patterns":null},"1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/1.svg"},"Patterns":null},"2.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/2.svg"},"Patterns":null},"3.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/3.svg"},"Patterns":null},"4.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/4.svg"},"Patterns":null},"5.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/5.svg"},"Patterns":null},"6.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/6.svg"},"Patterns":null},"7.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/7.svg"},"Patterns":null},"8.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/8.svg"},"Patterns":null},"9.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/9.svg"},"Patterns":null},"a.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/a.svg"},"Patterns":null},"address-book.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/address-book.svg"},"Patterns":null},"address-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/address-card.svg"},"Patterns":null},"align-center.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/align-center.svg"},"Patterns":null},"align-justify.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/align-justify.svg"},"Patterns":null},"align-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/align-left.svg"},"Patterns":null},"align-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/align-right.svg"},"Patterns":null},"anchor-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor-circle-check.svg"},"Patterns":null},"anchor-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor-circle-exclamation.svg"},"Patterns":null},"anchor-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor-circle-xmark.svg"},"Patterns":null},"anchor-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor-lock.svg"},"Patterns":null},"anchor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/anchor.svg"},"Patterns":null},"angle-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angle-down.svg"},"Patterns":null},"angle-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angle-left.svg"},"Patterns":null},"angle-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angle-right.svg"},"Patterns":null},"angle-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angle-up.svg"},"Patterns":null},"angles-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angles-down.svg"},"Patterns":null},"angles-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angles-left.svg"},"Patterns":null},"angles-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angles-right.svg"},"Patterns":null},"angles-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/angles-up.svg"},"Patterns":null},"ankh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ankh.svg"},"Patterns":null},"apple-whole.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/apple-whole.svg"},"Patterns":null},"archway.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/archway.svg"},"Patterns":null},"arrow-down-1-9.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-1-9.svg"},"Patterns":null},"arrow-down-9-1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-9-1.svg"},"Patterns":null},"arrow-down-a-z.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-a-z.svg"},"Patterns":null},"arrow-down-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-long.svg"},"Patterns":null},"arrow-down-short-wide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-short-wide.svg"},"Patterns":null},"arrow-down-up-across-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-up-across-line.svg"},"Patterns":null},"arrow-down-up-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-up-lock.svg"},"Patterns":null},"arrow-down-wide-short.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-wide-short.svg"},"Patterns":null},"arrow-down-z-a.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down-z-a.svg"},"Patterns":null},"arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-down.svg"},"Patterns":null},"arrow-left-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-left-long.svg"},"Patterns":null},"arrow-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-left.svg"},"Patterns":null},"arrow-pointer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-pointer.svg"},"Patterns":null},"arrow-right-arrow-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-arrow-left.svg"},"Patterns":null},"arrow-right-from-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-from-bracket.svg"},"Patterns":null},"arrow-right-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-long.svg"},"Patterns":null},"arrow-right-to-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-to-bracket.svg"},"Patterns":null},"arrow-right-to-city.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right-to-city.svg"},"Patterns":null},"arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-right.svg"},"Patterns":null},"arrow-rotate-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-rotate-left.svg"},"Patterns":null},"arrow-rotate-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-rotate-right.svg"},"Patterns":null},"arrow-trend-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-trend-down.svg"},"Patterns":null},"arrow-trend-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-trend-up.svg"},"Patterns":null},"arrow-turn-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-turn-down.svg"},"Patterns":null},"arrow-turn-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-turn-up.svg"},"Patterns":null},"arrow-up-1-9.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-1-9.svg"},"Patterns":null},"arrow-up-9-1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-9-1.svg"},"Patterns":null},"arrow-up-a-z.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-a-z.svg"},"Patterns":null},"arrow-up-from-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-from-bracket.svg"},"Patterns":null},"arrow-up-from-ground-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-from-ground-water.svg"},"Patterns":null},"arrow-up-from-water-pump.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-from-water-pump.svg"},"Patterns":null},"arrow-up-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-long.svg"},"Patterns":null},"arrow-up-right-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-right-dots.svg"},"Patterns":null},"arrow-up-right-from-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-right-from-square.svg"},"Patterns":null},"arrow-up-short-wide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-short-wide.svg"},"Patterns":null},"arrow-up-wide-short.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-wide-short.svg"},"Patterns":null},"arrow-up-z-a.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up-z-a.svg"},"Patterns":null},"arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrow-up.svg"},"Patterns":null},"arrows-down-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-down-to-line.svg"},"Patterns":null},"arrows-down-to-people.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-down-to-people.svg"},"Patterns":null},"arrows-left-right-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-left-right-to-line.svg"},"Patterns":null},"arrows-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-left-right.svg"},"Patterns":null},"arrows-rotate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-rotate.svg"},"Patterns":null},"arrows-spin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-spin.svg"},"Patterns":null},"arrows-split-up-and-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-split-up-and-left.svg"},"Patterns":null},"arrows-to-circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-to-circle.svg"},"Patterns":null},"arrows-to-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-to-dot.svg"},"Patterns":null},"arrows-to-eye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-to-eye.svg"},"Patterns":null},"arrows-turn-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-turn-right.svg"},"Patterns":null},"arrows-turn-to-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-turn-to-dots.svg"},"Patterns":null},"arrows-up-down-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-up-down-left-right.svg"},"Patterns":null},"arrows-up-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-up-down.svg"},"Patterns":null},"arrows-up-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/arrows-up-to-line.svg"},"Patterns":null},"asterisk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/asterisk.svg"},"Patterns":null},"at.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/at.svg"},"Patterns":null},"atom.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/atom.svg"},"Patterns":null},"audio-description.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/audio-description.svg"},"Patterns":null},"austral-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/austral-sign.svg"},"Patterns":null},"award.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/award.svg"},"Patterns":null},"b.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/b.svg"},"Patterns":null},"baby-carriage.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baby-carriage.svg"},"Patterns":null},"baby.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baby.svg"},"Patterns":null},"backward-fast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/backward-fast.svg"},"Patterns":null},"backward-step.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/backward-step.svg"},"Patterns":null},"backward.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/backward.svg"},"Patterns":null},"bacon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bacon.svg"},"Patterns":null},"bacteria.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bacteria.svg"},"Patterns":null},"bacterium.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bacterium.svg"},"Patterns":null},"bag-shopping.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bag-shopping.svg"},"Patterns":null},"bahai.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bahai.svg"},"Patterns":null},"baht-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baht-sign.svg"},"Patterns":null},"ban-smoking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ban-smoking.svg"},"Patterns":null},"ban.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ban.svg"},"Patterns":null},"bandage.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bandage.svg"},"Patterns":null},"barcode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/barcode.svg"},"Patterns":null},"bars-progress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bars-progress.svg"},"Patterns":null},"bars-staggered.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bars-staggered.svg"},"Patterns":null},"bars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bars.svg"},"Patterns":null},"baseball-bat-ball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baseball-bat-ball.svg"},"Patterns":null},"baseball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/baseball.svg"},"Patterns":null},"basket-shopping.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/basket-shopping.svg"},"Patterns":null},"basketball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/basketball.svg"},"Patterns":null},"bath.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bath.svg"},"Patterns":null},"battery-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-empty.svg"},"Patterns":null},"battery-full.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-full.svg"},"Patterns":null},"battery-half.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-half.svg"},"Patterns":null},"battery-quarter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-quarter.svg"},"Patterns":null},"battery-three-quarters.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/battery-three-quarters.svg"},"Patterns":null},"bed-pulse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bed-pulse.svg"},"Patterns":null},"bed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bed.svg"},"Patterns":null},"beer-mug-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/beer-mug-empty.svg"},"Patterns":null},"bell-concierge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bell-concierge.svg"},"Patterns":null},"bell-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bell-slash.svg"},"Patterns":null},"bell.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bell.svg"},"Patterns":null},"bezier-curve.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bezier-curve.svg"},"Patterns":null},"bicycle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bicycle.svg"},"Patterns":null},"binoculars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/binoculars.svg"},"Patterns":null},"biohazard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/biohazard.svg"},"Patterns":null},"bitcoin-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bitcoin-sign.svg"},"Patterns":null},"blender-phone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/blender-phone.svg"},"Patterns":null},"blender.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/blender.svg"},"Patterns":null},"blog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/blog.svg"},"Patterns":null},"bold.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bold.svg"},"Patterns":null},"bolt-lightning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bolt-lightning.svg"},"Patterns":null},"bolt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bolt.svg"},"Patterns":null},"bomb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bomb.svg"},"Patterns":null},"bone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bone.svg"},"Patterns":null},"bong.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bong.svg"},"Patterns":null},"book-atlas.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-atlas.svg"},"Patterns":null},"book-bible.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-bible.svg"},"Patterns":null},"book-bookmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-bookmark.svg"},"Patterns":null},"book-journal-whills.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-journal-whills.svg"},"Patterns":null},"book-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-medical.svg"},"Patterns":null},"book-open-reader.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-open-reader.svg"},"Patterns":null},"book-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-open.svg"},"Patterns":null},"book-quran.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-quran.svg"},"Patterns":null},"book-skull.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book-skull.svg"},"Patterns":null},"book.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/book.svg"},"Patterns":null},"bookmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bookmark.svg"},"Patterns":null},"border-all.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/border-all.svg"},"Patterns":null},"border-none.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/border-none.svg"},"Patterns":null},"border-top-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/border-top-left.svg"},"Patterns":null},"bore-hole.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bore-hole.svg"},"Patterns":null},"bottle-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bottle-droplet.svg"},"Patterns":null},"bottle-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bottle-water.svg"},"Patterns":null},"bowl-food.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bowl-food.svg"},"Patterns":null},"bowl-rice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bowl-rice.svg"},"Patterns":null},"bowling-ball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bowling-ball.svg"},"Patterns":null},"box-archive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/box-archive.svg"},"Patterns":null},"box-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/box-open.svg"},"Patterns":null},"box-tissue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/box-tissue.svg"},"Patterns":null},"box.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/box.svg"},"Patterns":null},"boxes-packing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/boxes-packing.svg"},"Patterns":null},"boxes-stacked.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/boxes-stacked.svg"},"Patterns":null},"braille.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/braille.svg"},"Patterns":null},"brain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/brain.svg"},"Patterns":null},"brazilian-real-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/brazilian-real-sign.svg"},"Patterns":null},"bread-slice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bread-slice.svg"},"Patterns":null},"bridge-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-circle-check.svg"},"Patterns":null},"bridge-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-circle-exclamation.svg"},"Patterns":null},"bridge-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-circle-xmark.svg"},"Patterns":null},"bridge-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-lock.svg"},"Patterns":null},"bridge-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge-water.svg"},"Patterns":null},"bridge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bridge.svg"},"Patterns":null},"briefcase-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/briefcase-medical.svg"},"Patterns":null},"briefcase.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/briefcase.svg"},"Patterns":null},"broom-ball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/broom-ball.svg"},"Patterns":null},"broom.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/broom.svg"},"Patterns":null},"brush.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/brush.svg"},"Patterns":null},"bucket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bucket.svg"},"Patterns":null},"bug-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bug-slash.svg"},"Patterns":null},"bug.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bug.svg"},"Patterns":null},"bugs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bugs.svg"},"Patterns":null},"building-circle-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-circle-arrow-right.svg"},"Patterns":null},"building-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-circle-check.svg"},"Patterns":null},"building-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-circle-exclamation.svg"},"Patterns":null},"building-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-circle-xmark.svg"},"Patterns":null},"building-columns.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-columns.svg"},"Patterns":null},"building-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-flag.svg"},"Patterns":null},"building-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-lock.svg"},"Patterns":null},"building-ngo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-ngo.svg"},"Patterns":null},"building-shield.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-shield.svg"},"Patterns":null},"building-un.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-un.svg"},"Patterns":null},"building-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-user.svg"},"Patterns":null},"building-wheat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building-wheat.svg"},"Patterns":null},"building.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/building.svg"},"Patterns":null},"bullhorn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bullhorn.svg"},"Patterns":null},"bullseye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bullseye.svg"},"Patterns":null},"burger.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/burger.svg"},"Patterns":null},"burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/burst.svg"},"Patterns":null},"bus-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bus-simple.svg"},"Patterns":null},"bus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/bus.svg"},"Patterns":null},"business-time.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/business-time.svg"},"Patterns":null},"c.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/c.svg"},"Patterns":null},"cake-candles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cake-candles.svg"},"Patterns":null},"calculator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calculator.svg"},"Patterns":null},"calendar-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-check.svg"},"Patterns":null},"calendar-day.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-day.svg"},"Patterns":null},"calendar-days.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-days.svg"},"Patterns":null},"calendar-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-minus.svg"},"Patterns":null},"calendar-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-plus.svg"},"Patterns":null},"calendar-week.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-week.svg"},"Patterns":null},"calendar-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar-xmark.svg"},"Patterns":null},"calendar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/calendar.svg"},"Patterns":null},"camera-retro.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/camera-retro.svg"},"Patterns":null},"camera-rotate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/camera-rotate.svg"},"Patterns":null},"camera.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/camera.svg"},"Patterns":null},"campground.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/campground.svg"},"Patterns":null},"candy-cane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/candy-cane.svg"},"Patterns":null},"cannabis.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cannabis.svg"},"Patterns":null},"capsules.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/capsules.svg"},"Patterns":null},"car-battery.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-battery.svg"},"Patterns":null},"car-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-burst.svg"},"Patterns":null},"car-on.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-on.svg"},"Patterns":null},"car-rear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-rear.svg"},"Patterns":null},"car-side.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-side.svg"},"Patterns":null},"car-tunnel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car-tunnel.svg"},"Patterns":null},"car.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/car.svg"},"Patterns":null},"caravan.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caravan.svg"},"Patterns":null},"caret-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caret-down.svg"},"Patterns":null},"caret-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caret-left.svg"},"Patterns":null},"caret-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caret-right.svg"},"Patterns":null},"caret-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/caret-up.svg"},"Patterns":null},"carrot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/carrot.svg"},"Patterns":null},"cart-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-arrow-down.svg"},"Patterns":null},"cart-flatbed-suitcase.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-flatbed-suitcase.svg"},"Patterns":null},"cart-flatbed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-flatbed.svg"},"Patterns":null},"cart-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-plus.svg"},"Patterns":null},"cart-shopping.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cart-shopping.svg"},"Patterns":null},"cash-register.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cash-register.svg"},"Patterns":null},"cat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cat.svg"},"Patterns":null},"cedi-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cedi-sign.svg"},"Patterns":null},"cent-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cent-sign.svg"},"Patterns":null},"certificate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/certificate.svg"},"Patterns":null},"chair.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chair.svg"},"Patterns":null},"chalkboard-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chalkboard-user.svg"},"Patterns":null},"chalkboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chalkboard.svg"},"Patterns":null},"champagne-glasses.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/champagne-glasses.svg"},"Patterns":null},"charging-station.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/charging-station.svg"},"Patterns":null},"chart-area.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-area.svg"},"Patterns":null},"chart-bar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-bar.svg"},"Patterns":null},"chart-column.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-column.svg"},"Patterns":null},"chart-gantt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-gantt.svg"},"Patterns":null},"chart-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-line.svg"},"Patterns":null},"chart-pie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-pie.svg"},"Patterns":null},"chart-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chart-simple.svg"},"Patterns":null},"check-double.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/check-double.svg"},"Patterns":null},"check-to-slot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/check-to-slot.svg"},"Patterns":null},"check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/check.svg"},"Patterns":null},"cheese.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cheese.svg"},"Patterns":null},"chess-bishop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-bishop.svg"},"Patterns":null},"chess-board.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-board.svg"},"Patterns":null},"chess-king.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-king.svg"},"Patterns":null},"chess-knight.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-knight.svg"},"Patterns":null},"chess-pawn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-pawn.svg"},"Patterns":null},"chess-queen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-queen.svg"},"Patterns":null},"chess-rook.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess-rook.svg"},"Patterns":null},"chess.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chess.svg"},"Patterns":null},"chevron-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chevron-down.svg"},"Patterns":null},"chevron-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chevron-left.svg"},"Patterns":null},"chevron-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chevron-right.svg"},"Patterns":null},"chevron-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/chevron-up.svg"},"Patterns":null},"child-dress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/child-dress.svg"},"Patterns":null},"child-reaching.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/child-reaching.svg"},"Patterns":null},"child-rifle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/child-rifle.svg"},"Patterns":null},"child.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/child.svg"},"Patterns":null},"children.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/children.svg"},"Patterns":null},"church.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/church.svg"},"Patterns":null},"circle-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-arrow-down.svg"},"Patterns":null},"circle-arrow-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-arrow-left.svg"},"Patterns":null},"circle-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-arrow-right.svg"},"Patterns":null},"circle-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-arrow-up.svg"},"Patterns":null},"circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-check.svg"},"Patterns":null},"circle-chevron-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-chevron-down.svg"},"Patterns":null},"circle-chevron-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-chevron-left.svg"},"Patterns":null},"circle-chevron-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-chevron-right.svg"},"Patterns":null},"circle-chevron-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-chevron-up.svg"},"Patterns":null},"circle-dollar-to-slot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-dollar-to-slot.svg"},"Patterns":null},"circle-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-dot.svg"},"Patterns":null},"circle-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-down.svg"},"Patterns":null},"circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-exclamation.svg"},"Patterns":null},"circle-h.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-h.svg"},"Patterns":null},"circle-half-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-half-stroke.svg"},"Patterns":null},"circle-info.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-info.svg"},"Patterns":null},"circle-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-left.svg"},"Patterns":null},"circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-minus.svg"},"Patterns":null},"circle-nodes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-nodes.svg"},"Patterns":null},"circle-notch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-notch.svg"},"Patterns":null},"circle-pause.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-pause.svg"},"Patterns":null},"circle-play.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-play.svg"},"Patterns":null},"circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-plus.svg"},"Patterns":null},"circle-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-question.svg"},"Patterns":null},"circle-radiation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-radiation.svg"},"Patterns":null},"circle-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-right.svg"},"Patterns":null},"circle-stop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-stop.svg"},"Patterns":null},"circle-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-up.svg"},"Patterns":null},"circle-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-user.svg"},"Patterns":null},"circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle-xmark.svg"},"Patterns":null},"circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/circle.svg"},"Patterns":null},"city.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/city.svg"},"Patterns":null},"clapperboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clapperboard.svg"},"Patterns":null},"clipboard-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard-check.svg"},"Patterns":null},"clipboard-list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard-list.svg"},"Patterns":null},"clipboard-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard-question.svg"},"Patterns":null},"clipboard-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard-user.svg"},"Patterns":null},"clipboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clipboard.svg"},"Patterns":null},"clock-rotate-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clock-rotate-left.svg"},"Patterns":null},"clock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clock.svg"},"Patterns":null},"clone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clone.svg"},"Patterns":null},"closed-captioning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/closed-captioning.svg"},"Patterns":null},"cloud-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-arrow-down.svg"},"Patterns":null},"cloud-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-arrow-up.svg"},"Patterns":null},"cloud-bolt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-bolt.svg"},"Patterns":null},"cloud-meatball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-meatball.svg"},"Patterns":null},"cloud-moon-rain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-moon-rain.svg"},"Patterns":null},"cloud-moon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-moon.svg"},"Patterns":null},"cloud-rain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-rain.svg"},"Patterns":null},"cloud-showers-heavy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-showers-heavy.svg"},"Patterns":null},"cloud-showers-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-showers-water.svg"},"Patterns":null},"cloud-sun-rain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-sun-rain.svg"},"Patterns":null},"cloud-sun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud-sun.svg"},"Patterns":null},"cloud.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cloud.svg"},"Patterns":null},"clover.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/clover.svg"},"Patterns":null},"code-branch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-branch.svg"},"Patterns":null},"code-commit.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-commit.svg"},"Patterns":null},"code-compare.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-compare.svg"},"Patterns":null},"code-fork.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-fork.svg"},"Patterns":null},"code-merge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-merge.svg"},"Patterns":null},"code-pull-request.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code-pull-request.svg"},"Patterns":null},"code.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/code.svg"},"Patterns":null},"coins.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/coins.svg"},"Patterns":null},"colon-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/colon-sign.svg"},"Patterns":null},"comment-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-dollar.svg"},"Patterns":null},"comment-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-dots.svg"},"Patterns":null},"comment-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-medical.svg"},"Patterns":null},"comment-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-slash.svg"},"Patterns":null},"comment-sms.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment-sms.svg"},"Patterns":null},"comment.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comment.svg"},"Patterns":null},"comments-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comments-dollar.svg"},"Patterns":null},"comments.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/comments.svg"},"Patterns":null},"compact-disc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/compact-disc.svg"},"Patterns":null},"compass-drafting.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/compass-drafting.svg"},"Patterns":null},"compass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/compass.svg"},"Patterns":null},"compress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/compress.svg"},"Patterns":null},"computer-mouse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/computer-mouse.svg"},"Patterns":null},"computer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/computer.svg"},"Patterns":null},"cookie-bite.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cookie-bite.svg"},"Patterns":null},"cookie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cookie.svg"},"Patterns":null},"copy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/copy.svg"},"Patterns":null},"copyright.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/copyright.svg"},"Patterns":null},"couch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/couch.svg"},"Patterns":null},"cow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cow.svg"},"Patterns":null},"credit-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/credit-card.svg"},"Patterns":null},"crop-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crop-simple.svg"},"Patterns":null},"crop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crop.svg"},"Patterns":null},"cross.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cross.svg"},"Patterns":null},"crosshairs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crosshairs.svg"},"Patterns":null},"crow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crow.svg"},"Patterns":null},"crown.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crown.svg"},"Patterns":null},"crutch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/crutch.svg"},"Patterns":null},"cruzeiro-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cruzeiro-sign.svg"},"Patterns":null},"cube.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cube.svg"},"Patterns":null},"cubes-stacked.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cubes-stacked.svg"},"Patterns":null},"cubes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/cubes.svg"},"Patterns":null},"d.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/d.svg"},"Patterns":null},"database.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/database.svg"},"Patterns":null},"delete-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/delete-left.svg"},"Patterns":null},"democrat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/democrat.svg"},"Patterns":null},"desktop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/desktop.svg"},"Patterns":null},"dharmachakra.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dharmachakra.svg"},"Patterns":null},"diagram-next.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diagram-next.svg"},"Patterns":null},"diagram-predecessor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diagram-predecessor.svg"},"Patterns":null},"diagram-project.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diagram-project.svg"},"Patterns":null},"diagram-successor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diagram-successor.svg"},"Patterns":null},"diamond-turn-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diamond-turn-right.svg"},"Patterns":null},"diamond.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/diamond.svg"},"Patterns":null},"dice-d20.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-d20.svg"},"Patterns":null},"dice-d6.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-d6.svg"},"Patterns":null},"dice-five.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-five.svg"},"Patterns":null},"dice-four.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-four.svg"},"Patterns":null},"dice-one.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-one.svg"},"Patterns":null},"dice-six.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-six.svg"},"Patterns":null},"dice-three.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-three.svg"},"Patterns":null},"dice-two.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice-two.svg"},"Patterns":null},"dice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dice.svg"},"Patterns":null},"disease.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/disease.svg"},"Patterns":null},"display.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/display.svg"},"Patterns":null},"divide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/divide.svg"},"Patterns":null},"dna.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dna.svg"},"Patterns":null},"dog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dog.svg"},"Patterns":null},"dollar-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dollar-sign.svg"},"Patterns":null},"dolly.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dolly.svg"},"Patterns":null},"dong-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dong-sign.svg"},"Patterns":null},"door-closed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/door-closed.svg"},"Patterns":null},"door-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/door-open.svg"},"Patterns":null},"dove.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dove.svg"},"Patterns":null},"down-left-and-up-right-to-center.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/down-left-and-up-right-to-center.svg"},"Patterns":null},"down-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/down-long.svg"},"Patterns":null},"download.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/download.svg"},"Patterns":null},"dragon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dragon.svg"},"Patterns":null},"draw-polygon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/draw-polygon.svg"},"Patterns":null},"droplet-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/droplet-slash.svg"},"Patterns":null},"droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/droplet.svg"},"Patterns":null},"drum-steelpan.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/drum-steelpan.svg"},"Patterns":null},"drum.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/drum.svg"},"Patterns":null},"drumstick-bite.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/drumstick-bite.svg"},"Patterns":null},"dumbbell.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dumbbell.svg"},"Patterns":null},"dumpster-fire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dumpster-fire.svg"},"Patterns":null},"dumpster.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dumpster.svg"},"Patterns":null},"dungeon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/dungeon.svg"},"Patterns":null},"e.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/e.svg"},"Patterns":null},"ear-deaf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ear-deaf.svg"},"Patterns":null},"ear-listen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ear-listen.svg"},"Patterns":null},"earth-africa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-africa.svg"},"Patterns":null},"earth-americas.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-americas.svg"},"Patterns":null},"earth-asia.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-asia.svg"},"Patterns":null},"earth-europe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-europe.svg"},"Patterns":null},"earth-oceania.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/earth-oceania.svg"},"Patterns":null},"egg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/egg.svg"},"Patterns":null},"eject.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eject.svg"},"Patterns":null},"elevator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/elevator.svg"},"Patterns":null},"ellipsis-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ellipsis-vertical.svg"},"Patterns":null},"ellipsis.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ellipsis.svg"},"Patterns":null},"envelope-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelope-circle-check.svg"},"Patterns":null},"envelope-open-text.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelope-open-text.svg"},"Patterns":null},"envelope-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelope-open.svg"},"Patterns":null},"envelope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelope.svg"},"Patterns":null},"envelopes-bulk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/envelopes-bulk.svg"},"Patterns":null},"equals.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/equals.svg"},"Patterns":null},"eraser.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eraser.svg"},"Patterns":null},"ethernet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ethernet.svg"},"Patterns":null},"euro-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/euro-sign.svg"},"Patterns":null},"exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/exclamation.svg"},"Patterns":null},"expand.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/expand.svg"},"Patterns":null},"explosion.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/explosion.svg"},"Patterns":null},"eye-dropper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eye-dropper.svg"},"Patterns":null},"eye-low-vision.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eye-low-vision.svg"},"Patterns":null},"eye-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eye-slash.svg"},"Patterns":null},"eye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/eye.svg"},"Patterns":null},"f.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/f.svg"},"Patterns":null},"face-angry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-angry.svg"},"Patterns":null},"face-dizzy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-dizzy.svg"},"Patterns":null},"face-flushed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-flushed.svg"},"Patterns":null},"face-frown-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-frown-open.svg"},"Patterns":null},"face-frown.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-frown.svg"},"Patterns":null},"face-grimace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grimace.svg"},"Patterns":null},"face-grin-beam-sweat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-beam-sweat.svg"},"Patterns":null},"face-grin-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-beam.svg"},"Patterns":null},"face-grin-hearts.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-hearts.svg"},"Patterns":null},"face-grin-squint-tears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-squint-tears.svg"},"Patterns":null},"face-grin-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-squint.svg"},"Patterns":null},"face-grin-stars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-stars.svg"},"Patterns":null},"face-grin-tears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-tears.svg"},"Patterns":null},"face-grin-tongue-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-tongue-squint.svg"},"Patterns":null},"face-grin-tongue-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-tongue-wink.svg"},"Patterns":null},"face-grin-tongue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-tongue.svg"},"Patterns":null},"face-grin-wide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-wide.svg"},"Patterns":null},"face-grin-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin-wink.svg"},"Patterns":null},"face-grin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-grin.svg"},"Patterns":null},"face-kiss-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-kiss-beam.svg"},"Patterns":null},"face-kiss-wink-heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-kiss-wink-heart.svg"},"Patterns":null},"face-kiss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-kiss.svg"},"Patterns":null},"face-laugh-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-laugh-beam.svg"},"Patterns":null},"face-laugh-squint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-laugh-squint.svg"},"Patterns":null},"face-laugh-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-laugh-wink.svg"},"Patterns":null},"face-laugh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-laugh.svg"},"Patterns":null},"face-meh-blank.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-meh-blank.svg"},"Patterns":null},"face-meh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-meh.svg"},"Patterns":null},"face-rolling-eyes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-rolling-eyes.svg"},"Patterns":null},"face-sad-cry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-sad-cry.svg"},"Patterns":null},"face-sad-tear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-sad-tear.svg"},"Patterns":null},"face-smile-beam.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-smile-beam.svg"},"Patterns":null},"face-smile-wink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-smile-wink.svg"},"Patterns":null},"face-smile.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-smile.svg"},"Patterns":null},"face-surprise.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-surprise.svg"},"Patterns":null},"face-tired.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/face-tired.svg"},"Patterns":null},"fan.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fan.svg"},"Patterns":null},"faucet-drip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/faucet-drip.svg"},"Patterns":null},"faucet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/faucet.svg"},"Patterns":null},"fax.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fax.svg"},"Patterns":null},"feather-pointed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/feather-pointed.svg"},"Patterns":null},"feather.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/feather.svg"},"Patterns":null},"ferry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ferry.svg"},"Patterns":null},"file-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-arrow-down.svg"},"Patterns":null},"file-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-arrow-up.svg"},"Patterns":null},"file-audio.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-audio.svg"},"Patterns":null},"file-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-check.svg"},"Patterns":null},"file-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-exclamation.svg"},"Patterns":null},"file-circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-minus.svg"},"Patterns":null},"file-circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-plus.svg"},"Patterns":null},"file-circle-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-question.svg"},"Patterns":null},"file-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-circle-xmark.svg"},"Patterns":null},"file-code.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-code.svg"},"Patterns":null},"file-contract.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-contract.svg"},"Patterns":null},"file-csv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-csv.svg"},"Patterns":null},"file-excel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-excel.svg"},"Patterns":null},"file-export.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-export.svg"},"Patterns":null},"file-image.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-image.svg"},"Patterns":null},"file-import.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-import.svg"},"Patterns":null},"file-invoice-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-invoice-dollar.svg"},"Patterns":null},"file-invoice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-invoice.svg"},"Patterns":null},"file-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-lines.svg"},"Patterns":null},"file-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-medical.svg"},"Patterns":null},"file-pdf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-pdf.svg"},"Patterns":null},"file-pen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-pen.svg"},"Patterns":null},"file-powerpoint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-powerpoint.svg"},"Patterns":null},"file-prescription.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-prescription.svg"},"Patterns":null},"file-shield.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-shield.svg"},"Patterns":null},"file-signature.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-signature.svg"},"Patterns":null},"file-video.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-video.svg"},"Patterns":null},"file-waveform.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-waveform.svg"},"Patterns":null},"file-word.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-word.svg"},"Patterns":null},"file-zipper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file-zipper.svg"},"Patterns":null},"file.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/file.svg"},"Patterns":null},"fill-drip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fill-drip.svg"},"Patterns":null},"fill.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fill.svg"},"Patterns":null},"film.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/film.svg"},"Patterns":null},"filter-circle-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/filter-circle-dollar.svg"},"Patterns":null},"filter-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/filter-circle-xmark.svg"},"Patterns":null},"filter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/filter.svg"},"Patterns":null},"fingerprint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fingerprint.svg"},"Patterns":null},"fire-burner.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire-burner.svg"},"Patterns":null},"fire-extinguisher.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire-extinguisher.svg"},"Patterns":null},"fire-flame-curved.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire-flame-curved.svg"},"Patterns":null},"fire-flame-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire-flame-simple.svg"},"Patterns":null},"fire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fire.svg"},"Patterns":null},"fish-fins.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fish-fins.svg"},"Patterns":null},"fish.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/fish.svg"},"Patterns":null},"flag-checkered.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flag-checkered.svg"},"Patterns":null},"flag-usa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flag-usa.svg"},"Patterns":null},"flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flag.svg"},"Patterns":null},"flask-vial.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flask-vial.svg"},"Patterns":null},"flask.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/flask.svg"},"Patterns":null},"floppy-disk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/floppy-disk.svg"},"Patterns":null},"florin-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/florin-sign.svg"},"Patterns":null},"folder-closed.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-closed.svg"},"Patterns":null},"folder-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-minus.svg"},"Patterns":null},"folder-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-open.svg"},"Patterns":null},"folder-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-plus.svg"},"Patterns":null},"folder-tree.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder-tree.svg"},"Patterns":null},"folder.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/folder.svg"},"Patterns":null},"font-awesome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/font-awesome.svg"},"Patterns":null},"font.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/font.svg"},"Patterns":null},"football.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/football.svg"},"Patterns":null},"forward-fast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/forward-fast.svg"},"Patterns":null},"forward-step.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/forward-step.svg"},"Patterns":null},"forward.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/forward.svg"},"Patterns":null},"franc-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/franc-sign.svg"},"Patterns":null},"frog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/frog.svg"},"Patterns":null},"futbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/futbol.svg"},"Patterns":null},"g.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/g.svg"},"Patterns":null},"gamepad.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gamepad.svg"},"Patterns":null},"gas-pump.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gas-pump.svg"},"Patterns":null},"gauge-high.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gauge-high.svg"},"Patterns":null},"gauge-simple-high.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gauge-simple-high.svg"},"Patterns":null},"gauge-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gauge-simple.svg"},"Patterns":null},"gauge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gauge.svg"},"Patterns":null},"gavel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gavel.svg"},"Patterns":null},"gear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gear.svg"},"Patterns":null},"gears.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gears.svg"},"Patterns":null},"gem.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gem.svg"},"Patterns":null},"genderless.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/genderless.svg"},"Patterns":null},"ghost.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ghost.svg"},"Patterns":null},"gift.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gift.svg"},"Patterns":null},"gifts.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gifts.svg"},"Patterns":null},"glass-water-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/glass-water-droplet.svg"},"Patterns":null},"glass-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/glass-water.svg"},"Patterns":null},"glasses.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/glasses.svg"},"Patterns":null},"globe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/globe.svg"},"Patterns":null},"golf-ball-tee.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/golf-ball-tee.svg"},"Patterns":null},"gopuram.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gopuram.svg"},"Patterns":null},"graduation-cap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/graduation-cap.svg"},"Patterns":null},"greater-than-equal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/greater-than-equal.svg"},"Patterns":null},"greater-than.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/greater-than.svg"},"Patterns":null},"grip-lines-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/grip-lines-vertical.svg"},"Patterns":null},"grip-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/grip-lines.svg"},"Patterns":null},"grip-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/grip-vertical.svg"},"Patterns":null},"grip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/grip.svg"},"Patterns":null},"group-arrows-rotate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/group-arrows-rotate.svg"},"Patterns":null},"guarani-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/guarani-sign.svg"},"Patterns":null},"guitar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/guitar.svg"},"Patterns":null},"gun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/gun.svg"},"Patterns":null},"h.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/h.svg"},"Patterns":null},"hammer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hammer.svg"},"Patterns":null},"hamsa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hamsa.svg"},"Patterns":null},"hand-back-fist.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-back-fist.svg"},"Patterns":null},"hand-dots.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-dots.svg"},"Patterns":null},"hand-fist.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-fist.svg"},"Patterns":null},"hand-holding-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-dollar.svg"},"Patterns":null},"hand-holding-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-droplet.svg"},"Patterns":null},"hand-holding-hand.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-hand.svg"},"Patterns":null},"hand-holding-heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-heart.svg"},"Patterns":null},"hand-holding-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding-medical.svg"},"Patterns":null},"hand-holding.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-holding.svg"},"Patterns":null},"hand-lizard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-lizard.svg"},"Patterns":null},"hand-middle-finger.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-middle-finger.svg"},"Patterns":null},"hand-peace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-peace.svg"},"Patterns":null},"hand-point-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-point-down.svg"},"Patterns":null},"hand-point-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-point-left.svg"},"Patterns":null},"hand-point-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-point-right.svg"},"Patterns":null},"hand-point-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-point-up.svg"},"Patterns":null},"hand-pointer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-pointer.svg"},"Patterns":null},"hand-scissors.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-scissors.svg"},"Patterns":null},"hand-sparkles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-sparkles.svg"},"Patterns":null},"hand-spock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand-spock.svg"},"Patterns":null},"hand.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hand.svg"},"Patterns":null},"handcuffs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handcuffs.svg"},"Patterns":null},"hands-asl-interpreting.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-asl-interpreting.svg"},"Patterns":null},"hands-bound.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-bound.svg"},"Patterns":null},"hands-bubbles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-bubbles.svg"},"Patterns":null},"hands-clapping.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-clapping.svg"},"Patterns":null},"hands-holding-child.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-holding-child.svg"},"Patterns":null},"hands-holding-circle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-holding-circle.svg"},"Patterns":null},"hands-holding.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-holding.svg"},"Patterns":null},"hands-praying.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands-praying.svg"},"Patterns":null},"hands.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hands.svg"},"Patterns":null},"handshake-angle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake-angle.svg"},"Patterns":null},"handshake-simple-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake-simple-slash.svg"},"Patterns":null},"handshake-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake-simple.svg"},"Patterns":null},"handshake-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake-slash.svg"},"Patterns":null},"handshake.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/handshake.svg"},"Patterns":null},"hanukiah.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hanukiah.svg"},"Patterns":null},"hard-drive.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hard-drive.svg"},"Patterns":null},"hashtag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hashtag.svg"},"Patterns":null},"hat-cowboy-side.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hat-cowboy-side.svg"},"Patterns":null},"hat-cowboy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hat-cowboy.svg"},"Patterns":null},"hat-wizard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hat-wizard.svg"},"Patterns":null},"head-side-cough-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/head-side-cough-slash.svg"},"Patterns":null},"head-side-cough.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/head-side-cough.svg"},"Patterns":null},"head-side-mask.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/head-side-mask.svg"},"Patterns":null},"head-side-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/head-side-virus.svg"},"Patterns":null},"heading.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heading.svg"},"Patterns":null},"headphones-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/headphones-simple.svg"},"Patterns":null},"headphones.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/headphones.svg"},"Patterns":null},"headset.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/headset.svg"},"Patterns":null},"heart-circle-bolt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-bolt.svg"},"Patterns":null},"heart-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-check.svg"},"Patterns":null},"heart-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-exclamation.svg"},"Patterns":null},"heart-circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-minus.svg"},"Patterns":null},"heart-circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-plus.svg"},"Patterns":null},"heart-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-circle-xmark.svg"},"Patterns":null},"heart-crack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-crack.svg"},"Patterns":null},"heart-pulse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart-pulse.svg"},"Patterns":null},"heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/heart.svg"},"Patterns":null},"helicopter-symbol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/helicopter-symbol.svg"},"Patterns":null},"helicopter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/helicopter.svg"},"Patterns":null},"helmet-safety.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/helmet-safety.svg"},"Patterns":null},"helmet-un.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/helmet-un.svg"},"Patterns":null},"highlighter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/highlighter.svg"},"Patterns":null},"hill-avalanche.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hill-avalanche.svg"},"Patterns":null},"hill-rockslide.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hill-rockslide.svg"},"Patterns":null},"hippo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hippo.svg"},"Patterns":null},"hockey-puck.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hockey-puck.svg"},"Patterns":null},"holly-berry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/holly-berry.svg"},"Patterns":null},"horse-head.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/horse-head.svg"},"Patterns":null},"horse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/horse.svg"},"Patterns":null},"hospital-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hospital-user.svg"},"Patterns":null},"hospital.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hospital.svg"},"Patterns":null},"hot-tub-person.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hot-tub-person.svg"},"Patterns":null},"hotdog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hotdog.svg"},"Patterns":null},"hotel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hotel.svg"},"Patterns":null},"hourglass-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hourglass-empty.svg"},"Patterns":null},"hourglass-end.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hourglass-end.svg"},"Patterns":null},"hourglass-start.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hourglass-start.svg"},"Patterns":null},"hourglass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hourglass.svg"},"Patterns":null},"house-chimney-crack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney-crack.svg"},"Patterns":null},"house-chimney-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney-medical.svg"},"Patterns":null},"house-chimney-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney-user.svg"},"Patterns":null},"house-chimney-window.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney-window.svg"},"Patterns":null},"house-chimney.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-chimney.svg"},"Patterns":null},"house-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-circle-check.svg"},"Patterns":null},"house-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-circle-exclamation.svg"},"Patterns":null},"house-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-circle-xmark.svg"},"Patterns":null},"house-crack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-crack.svg"},"Patterns":null},"house-fire.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-fire.svg"},"Patterns":null},"house-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-flag.svg"},"Patterns":null},"house-flood-water-circle-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-flood-water-circle-arrow-right.svg"},"Patterns":null},"house-flood-water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-flood-water.svg"},"Patterns":null},"house-laptop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-laptop.svg"},"Patterns":null},"house-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-lock.svg"},"Patterns":null},"house-medical-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical-circle-check.svg"},"Patterns":null},"house-medical-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical-circle-exclamation.svg"},"Patterns":null},"house-medical-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical-circle-xmark.svg"},"Patterns":null},"house-medical-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical-flag.svg"},"Patterns":null},"house-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-medical.svg"},"Patterns":null},"house-signal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-signal.svg"},"Patterns":null},"house-tsunami.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-tsunami.svg"},"Patterns":null},"house-user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house-user.svg"},"Patterns":null},"house.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/house.svg"},"Patterns":null},"hryvnia-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hryvnia-sign.svg"},"Patterns":null},"hurricane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/hurricane.svg"},"Patterns":null},"i-cursor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/i-cursor.svg"},"Patterns":null},"i.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/i.svg"},"Patterns":null},"ice-cream.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ice-cream.svg"},"Patterns":null},"icicles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/icicles.svg"},"Patterns":null},"icons.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/icons.svg"},"Patterns":null},"id-badge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/id-badge.svg"},"Patterns":null},"id-card-clip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/id-card-clip.svg"},"Patterns":null},"id-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/id-card.svg"},"Patterns":null},"igloo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/igloo.svg"},"Patterns":null},"image-portrait.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/image-portrait.svg"},"Patterns":null},"image.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/image.svg"},"Patterns":null},"images.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/images.svg"},"Patterns":null},"inbox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/inbox.svg"},"Patterns":null},"indent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/indent.svg"},"Patterns":null},"indian-rupee-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/indian-rupee-sign.svg"},"Patterns":null},"industry.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/industry.svg"},"Patterns":null},"infinity.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/infinity.svg"},"Patterns":null},"info.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/info.svg"},"Patterns":null},"italic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/italic.svg"},"Patterns":null},"j.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/j.svg"},"Patterns":null},"jar-wheat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jar-wheat.svg"},"Patterns":null},"jar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jar.svg"},"Patterns":null},"jedi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jedi.svg"},"Patterns":null},"jet-fighter-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jet-fighter-up.svg"},"Patterns":null},"jet-fighter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jet-fighter.svg"},"Patterns":null},"joint.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/joint.svg"},"Patterns":null},"jug-detergent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/jug-detergent.svg"},"Patterns":null},"k.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/k.svg"},"Patterns":null},"kaaba.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kaaba.svg"},"Patterns":null},"key.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/key.svg"},"Patterns":null},"keyboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/keyboard.svg"},"Patterns":null},"khanda.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/khanda.svg"},"Patterns":null},"kip-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kip-sign.svg"},"Patterns":null},"kit-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kit-medical.svg"},"Patterns":null},"kitchen-set.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kitchen-set.svg"},"Patterns":null},"kiwi-bird.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/kiwi-bird.svg"},"Patterns":null},"l.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/l.svg"},"Patterns":null},"land-mine-on.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/land-mine-on.svg"},"Patterns":null},"landmark-dome.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/landmark-dome.svg"},"Patterns":null},"landmark-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/landmark-flag.svg"},"Patterns":null},"landmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/landmark.svg"},"Patterns":null},"language.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/language.svg"},"Patterns":null},"laptop-code.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/laptop-code.svg"},"Patterns":null},"laptop-file.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/laptop-file.svg"},"Patterns":null},"laptop-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/laptop-medical.svg"},"Patterns":null},"laptop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/laptop.svg"},"Patterns":null},"lari-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lari-sign.svg"},"Patterns":null},"layer-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/layer-group.svg"},"Patterns":null},"leaf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/leaf.svg"},"Patterns":null},"left-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/left-long.svg"},"Patterns":null},"left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/left-right.svg"},"Patterns":null},"lemon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lemon.svg"},"Patterns":null},"less-than-equal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/less-than-equal.svg"},"Patterns":null},"less-than.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/less-than.svg"},"Patterns":null},"life-ring.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/life-ring.svg"},"Patterns":null},"lightbulb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lightbulb.svg"},"Patterns":null},"lines-leaning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lines-leaning.svg"},"Patterns":null},"link-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/link-slash.svg"},"Patterns":null},"link.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/link.svg"},"Patterns":null},"lira-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lira-sign.svg"},"Patterns":null},"list-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/list-check.svg"},"Patterns":null},"list-ol.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/list-ol.svg"},"Patterns":null},"list-ul.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/list-ul.svg"},"Patterns":null},"list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/list.svg"},"Patterns":null},"litecoin-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/litecoin-sign.svg"},"Patterns":null},"location-arrow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-arrow.svg"},"Patterns":null},"location-crosshairs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-crosshairs.svg"},"Patterns":null},"location-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-dot.svg"},"Patterns":null},"location-pin-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-pin-lock.svg"},"Patterns":null},"location-pin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/location-pin.svg"},"Patterns":null},"lock-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lock-open.svg"},"Patterns":null},"lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lock.svg"},"Patterns":null},"locust.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/locust.svg"},"Patterns":null},"lungs-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lungs-virus.svg"},"Patterns":null},"lungs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/lungs.svg"},"Patterns":null},"m.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/m.svg"},"Patterns":null},"magnet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnet.svg"},"Patterns":null},"magnifying-glass-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-arrow-right.svg"},"Patterns":null},"magnifying-glass-chart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-chart.svg"},"Patterns":null},"magnifying-glass-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-dollar.svg"},"Patterns":null},"magnifying-glass-location.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-location.svg"},"Patterns":null},"magnifying-glass-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-minus.svg"},"Patterns":null},"magnifying-glass-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass-plus.svg"},"Patterns":null},"magnifying-glass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/magnifying-glass.svg"},"Patterns":null},"manat-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/manat-sign.svg"},"Patterns":null},"map-location-dot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/map-location-dot.svg"},"Patterns":null},"map-location.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/map-location.svg"},"Patterns":null},"map-pin.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/map-pin.svg"},"Patterns":null},"map.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/map.svg"},"Patterns":null},"marker.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/marker.svg"},"Patterns":null},"mars-and-venus-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-and-venus-burst.svg"},"Patterns":null},"mars-and-venus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-and-venus.svg"},"Patterns":null},"mars-double.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-double.svg"},"Patterns":null},"mars-stroke-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-stroke-right.svg"},"Patterns":null},"mars-stroke-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-stroke-up.svg"},"Patterns":null},"mars-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars-stroke.svg"},"Patterns":null},"mars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mars.svg"},"Patterns":null},"martini-glass-citrus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/martini-glass-citrus.svg"},"Patterns":null},"martini-glass-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/martini-glass-empty.svg"},"Patterns":null},"martini-glass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/martini-glass.svg"},"Patterns":null},"mask-face.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mask-face.svg"},"Patterns":null},"mask-ventilator.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mask-ventilator.svg"},"Patterns":null},"mask.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mask.svg"},"Patterns":null},"masks-theater.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/masks-theater.svg"},"Patterns":null},"mattress-pillow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mattress-pillow.svg"},"Patterns":null},"maximize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/maximize.svg"},"Patterns":null},"medal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/medal.svg"},"Patterns":null},"memory.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/memory.svg"},"Patterns":null},"menorah.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/menorah.svg"},"Patterns":null},"mercury.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mercury.svg"},"Patterns":null},"message.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/message.svg"},"Patterns":null},"meteor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/meteor.svg"},"Patterns":null},"microchip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microchip.svg"},"Patterns":null},"microphone-lines-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microphone-lines-slash.svg"},"Patterns":null},"microphone-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microphone-lines.svg"},"Patterns":null},"microphone-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microphone-slash.svg"},"Patterns":null},"microphone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microphone.svg"},"Patterns":null},"microscope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/microscope.svg"},"Patterns":null},"mill-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mill-sign.svg"},"Patterns":null},"minimize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/minimize.svg"},"Patterns":null},"minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/minus.svg"},"Patterns":null},"mitten.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mitten.svg"},"Patterns":null},"mobile-button.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile-button.svg"},"Patterns":null},"mobile-retro.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile-retro.svg"},"Patterns":null},"mobile-screen-button.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile-screen-button.svg"},"Patterns":null},"mobile-screen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile-screen.svg"},"Patterns":null},"mobile.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mobile.svg"},"Patterns":null},"money-bill-1-wave.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-1-wave.svg"},"Patterns":null},"money-bill-1.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-1.svg"},"Patterns":null},"money-bill-transfer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-transfer.svg"},"Patterns":null},"money-bill-trend-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-trend-up.svg"},"Patterns":null},"money-bill-wave.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-wave.svg"},"Patterns":null},"money-bill-wheat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill-wheat.svg"},"Patterns":null},"money-bill.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bill.svg"},"Patterns":null},"money-bills.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-bills.svg"},"Patterns":null},"money-check-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-check-dollar.svg"},"Patterns":null},"money-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/money-check.svg"},"Patterns":null},"monument.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/monument.svg"},"Patterns":null},"moon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/moon.svg"},"Patterns":null},"mortar-pestle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mortar-pestle.svg"},"Patterns":null},"mosque.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mosque.svg"},"Patterns":null},"mosquito-net.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mosquito-net.svg"},"Patterns":null},"mosquito.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mosquito.svg"},"Patterns":null},"motorcycle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/motorcycle.svg"},"Patterns":null},"mound.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mound.svg"},"Patterns":null},"mountain-city.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mountain-city.svg"},"Patterns":null},"mountain-sun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mountain-sun.svg"},"Patterns":null},"mountain.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mountain.svg"},"Patterns":null},"mug-hot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mug-hot.svg"},"Patterns":null},"mug-saucer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/mug-saucer.svg"},"Patterns":null},"music.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/music.svg"},"Patterns":null},"n.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/n.svg"},"Patterns":null},"naira-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/naira-sign.svg"},"Patterns":null},"network-wired.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/network-wired.svg"},"Patterns":null},"neuter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/neuter.svg"},"Patterns":null},"newspaper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/newspaper.svg"},"Patterns":null},"not-equal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/not-equal.svg"},"Patterns":null},"note-sticky.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/note-sticky.svg"},"Patterns":null},"notes-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/notes-medical.svg"},"Patterns":null},"o.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/o.svg"},"Patterns":null},"object-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/object-group.svg"},"Patterns":null},"object-ungroup.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/object-ungroup.svg"},"Patterns":null},"oil-can.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/oil-can.svg"},"Patterns":null},"oil-well.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/oil-well.svg"},"Patterns":null},"om.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/om.svg"},"Patterns":null},"otter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/otter.svg"},"Patterns":null},"outdent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/outdent.svg"},"Patterns":null},"p.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/p.svg"},"Patterns":null},"pager.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pager.svg"},"Patterns":null},"paint-roller.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paint-roller.svg"},"Patterns":null},"paintbrush.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paintbrush.svg"},"Patterns":null},"palette.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/palette.svg"},"Patterns":null},"pallet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pallet.svg"},"Patterns":null},"panorama.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/panorama.svg"},"Patterns":null},"paper-plane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paper-plane.svg"},"Patterns":null},"paperclip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paperclip.svg"},"Patterns":null},"parachute-box.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/parachute-box.svg"},"Patterns":null},"paragraph.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paragraph.svg"},"Patterns":null},"passport.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/passport.svg"},"Patterns":null},"paste.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paste.svg"},"Patterns":null},"pause.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pause.svg"},"Patterns":null},"paw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/paw.svg"},"Patterns":null},"peace.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/peace.svg"},"Patterns":null},"pen-clip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-clip.svg"},"Patterns":null},"pen-fancy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-fancy.svg"},"Patterns":null},"pen-nib.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-nib.svg"},"Patterns":null},"pen-ruler.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-ruler.svg"},"Patterns":null},"pen-to-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen-to-square.svg"},"Patterns":null},"pen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pen.svg"},"Patterns":null},"pencil.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pencil.svg"},"Patterns":null},"people-arrows-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-arrows-left-right.svg"},"Patterns":null},"people-carry-box.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-carry-box.svg"},"Patterns":null},"people-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-group.svg"},"Patterns":null},"people-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-line.svg"},"Patterns":null},"people-pulling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-pulling.svg"},"Patterns":null},"people-robbery.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-robbery.svg"},"Patterns":null},"people-roof.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/people-roof.svg"},"Patterns":null},"pepper-hot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pepper-hot.svg"},"Patterns":null},"percent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/percent.svg"},"Patterns":null},"person-arrow-down-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-arrow-down-to-line.svg"},"Patterns":null},"person-arrow-up-from-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-arrow-up-from-line.svg"},"Patterns":null},"person-biking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-biking.svg"},"Patterns":null},"person-booth.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-booth.svg"},"Patterns":null},"person-breastfeeding.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-breastfeeding.svg"},"Patterns":null},"person-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-burst.svg"},"Patterns":null},"person-cane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-cane.svg"},"Patterns":null},"person-chalkboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-chalkboard.svg"},"Patterns":null},"person-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-check.svg"},"Patterns":null},"person-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-exclamation.svg"},"Patterns":null},"person-circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-minus.svg"},"Patterns":null},"person-circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-plus.svg"},"Patterns":null},"person-circle-question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-question.svg"},"Patterns":null},"person-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-circle-xmark.svg"},"Patterns":null},"person-digging.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-digging.svg"},"Patterns":null},"person-dots-from-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-dots-from-line.svg"},"Patterns":null},"person-dress-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-dress-burst.svg"},"Patterns":null},"person-dress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-dress.svg"},"Patterns":null},"person-drowning.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-drowning.svg"},"Patterns":null},"person-falling-burst.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-falling-burst.svg"},"Patterns":null},"person-falling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-falling.svg"},"Patterns":null},"person-half-dress.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-half-dress.svg"},"Patterns":null},"person-harassing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-harassing.svg"},"Patterns":null},"person-hiking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-hiking.svg"},"Patterns":null},"person-military-pointing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-military-pointing.svg"},"Patterns":null},"person-military-rifle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-military-rifle.svg"},"Patterns":null},"person-military-to-person.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-military-to-person.svg"},"Patterns":null},"person-praying.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-praying.svg"},"Patterns":null},"person-pregnant.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-pregnant.svg"},"Patterns":null},"person-rays.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-rays.svg"},"Patterns":null},"person-rifle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-rifle.svg"},"Patterns":null},"person-running.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-running.svg"},"Patterns":null},"person-shelter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-shelter.svg"},"Patterns":null},"person-skating.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-skating.svg"},"Patterns":null},"person-skiing-nordic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-skiing-nordic.svg"},"Patterns":null},"person-skiing.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-skiing.svg"},"Patterns":null},"person-snowboarding.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-snowboarding.svg"},"Patterns":null},"person-swimming.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-swimming.svg"},"Patterns":null},"person-through-window.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-through-window.svg"},"Patterns":null},"person-walking-arrow-loop-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-arrow-loop-left.svg"},"Patterns":null},"person-walking-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-arrow-right.svg"},"Patterns":null},"person-walking-dashed-line-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-dashed-line-arrow-right.svg"},"Patterns":null},"person-walking-luggage.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-luggage.svg"},"Patterns":null},"person-walking-with-cane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking-with-cane.svg"},"Patterns":null},"person-walking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person-walking.svg"},"Patterns":null},"person.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/person.svg"},"Patterns":null},"peseta-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/peseta-sign.svg"},"Patterns":null},"peso-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/peso-sign.svg"},"Patterns":null},"phone-flip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/phone-flip.svg"},"Patterns":null},"phone-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/phone-slash.svg"},"Patterns":null},"phone-volume.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/phone-volume.svg"},"Patterns":null},"phone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/phone.svg"},"Patterns":null},"photo-film.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/photo-film.svg"},"Patterns":null},"piggy-bank.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/piggy-bank.svg"},"Patterns":null},"pills.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pills.svg"},"Patterns":null},"pizza-slice.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pizza-slice.svg"},"Patterns":null},"place-of-worship.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/place-of-worship.svg"},"Patterns":null},"plane-arrival.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-arrival.svg"},"Patterns":null},"plane-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-circle-check.svg"},"Patterns":null},"plane-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-circle-exclamation.svg"},"Patterns":null},"plane-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-circle-xmark.svg"},"Patterns":null},"plane-departure.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-departure.svg"},"Patterns":null},"plane-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-lock.svg"},"Patterns":null},"plane-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-slash.svg"},"Patterns":null},"plane-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane-up.svg"},"Patterns":null},"plane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plane.svg"},"Patterns":null},"plant-wilt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plant-wilt.svg"},"Patterns":null},"plate-wheat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plate-wheat.svg"},"Patterns":null},"play.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/play.svg"},"Patterns":null},"plug-circle-bolt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-bolt.svg"},"Patterns":null},"plug-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-check.svg"},"Patterns":null},"plug-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-exclamation.svg"},"Patterns":null},"plug-circle-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-minus.svg"},"Patterns":null},"plug-circle-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-plus.svg"},"Patterns":null},"plug-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug-circle-xmark.svg"},"Patterns":null},"plug.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plug.svg"},"Patterns":null},"plus-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plus-minus.svg"},"Patterns":null},"plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/plus.svg"},"Patterns":null},"podcast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/podcast.svg"},"Patterns":null},"poo-storm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/poo-storm.svg"},"Patterns":null},"poo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/poo.svg"},"Patterns":null},"poop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/poop.svg"},"Patterns":null},"power-off.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/power-off.svg"},"Patterns":null},"prescription-bottle-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/prescription-bottle-medical.svg"},"Patterns":null},"prescription-bottle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/prescription-bottle.svg"},"Patterns":null},"prescription.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/prescription.svg"},"Patterns":null},"print.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/print.svg"},"Patterns":null},"pump-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pump-medical.svg"},"Patterns":null},"pump-soap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/pump-soap.svg"},"Patterns":null},"puzzle-piece.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/puzzle-piece.svg"},"Patterns":null},"q.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/q.svg"},"Patterns":null},"qrcode.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/qrcode.svg"},"Patterns":null},"question.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/question.svg"},"Patterns":null},"quote-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/quote-left.svg"},"Patterns":null},"quote-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/quote-right.svg"},"Patterns":null},"r.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/r.svg"},"Patterns":null},"radiation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/radiation.svg"},"Patterns":null},"radio.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/radio.svg"},"Patterns":null},"rainbow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rainbow.svg"},"Patterns":null},"ranking-star.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ranking-star.svg"},"Patterns":null},"receipt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/receipt.svg"},"Patterns":null},"record-vinyl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/record-vinyl.svg"},"Patterns":null},"rectangle-ad.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rectangle-ad.svg"},"Patterns":null},"rectangle-list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rectangle-list.svg"},"Patterns":null},"rectangle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rectangle-xmark.svg"},"Patterns":null},"recycle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/recycle.svg"},"Patterns":null},"registered.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/registered.svg"},"Patterns":null},"repeat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/repeat.svg"},"Patterns":null},"reply-all.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/reply-all.svg"},"Patterns":null},"reply.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/reply.svg"},"Patterns":null},"republican.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/republican.svg"},"Patterns":null},"restroom.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/restroom.svg"},"Patterns":null},"retweet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/retweet.svg"},"Patterns":null},"ribbon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ribbon.svg"},"Patterns":null},"right-from-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/right-from-bracket.svg"},"Patterns":null},"right-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/right-left.svg"},"Patterns":null},"right-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/right-long.svg"},"Patterns":null},"right-to-bracket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/right-to-bracket.svg"},"Patterns":null},"ring.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ring.svg"},"Patterns":null},"road-barrier.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-barrier.svg"},"Patterns":null},"road-bridge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-bridge.svg"},"Patterns":null},"road-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-circle-check.svg"},"Patterns":null},"road-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-circle-exclamation.svg"},"Patterns":null},"road-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-circle-xmark.svg"},"Patterns":null},"road-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-lock.svg"},"Patterns":null},"road-spikes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road-spikes.svg"},"Patterns":null},"road.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/road.svg"},"Patterns":null},"robot.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/robot.svg"},"Patterns":null},"rocket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rocket.svg"},"Patterns":null},"rotate-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rotate-left.svg"},"Patterns":null},"rotate-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rotate-right.svg"},"Patterns":null},"rotate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rotate.svg"},"Patterns":null},"route.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/route.svg"},"Patterns":null},"rss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rss.svg"},"Patterns":null},"ruble-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruble-sign.svg"},"Patterns":null},"rug.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rug.svg"},"Patterns":null},"ruler-combined.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruler-combined.svg"},"Patterns":null},"ruler-horizontal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruler-horizontal.svg"},"Patterns":null},"ruler-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruler-vertical.svg"},"Patterns":null},"ruler.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ruler.svg"},"Patterns":null},"rupee-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rupee-sign.svg"},"Patterns":null},"rupiah-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/rupiah-sign.svg"},"Patterns":null},"s.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/s.svg"},"Patterns":null},"sack-dollar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sack-dollar.svg"},"Patterns":null},"sack-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sack-xmark.svg"},"Patterns":null},"sailboat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sailboat.svg"},"Patterns":null},"satellite-dish.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/satellite-dish.svg"},"Patterns":null},"satellite.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/satellite.svg"},"Patterns":null},"scale-balanced.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scale-balanced.svg"},"Patterns":null},"scale-unbalanced-flip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scale-unbalanced-flip.svg"},"Patterns":null},"scale-unbalanced.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scale-unbalanced.svg"},"Patterns":null},"school-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-circle-check.svg"},"Patterns":null},"school-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-circle-exclamation.svg"},"Patterns":null},"school-circle-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-circle-xmark.svg"},"Patterns":null},"school-flag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-flag.svg"},"Patterns":null},"school-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school-lock.svg"},"Patterns":null},"school.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/school.svg"},"Patterns":null},"scissors.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scissors.svg"},"Patterns":null},"screwdriver-wrench.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/screwdriver-wrench.svg"},"Patterns":null},"screwdriver.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/screwdriver.svg"},"Patterns":null},"scroll-torah.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scroll-torah.svg"},"Patterns":null},"scroll.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/scroll.svg"},"Patterns":null},"sd-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sd-card.svg"},"Patterns":null},"section.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/section.svg"},"Patterns":null},"seedling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/seedling.svg"},"Patterns":null},"server.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/server.svg"},"Patterns":null},"shapes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shapes.svg"},"Patterns":null},"share-from-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/share-from-square.svg"},"Patterns":null},"share-nodes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/share-nodes.svg"},"Patterns":null},"share.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/share.svg"},"Patterns":null},"sheet-plastic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sheet-plastic.svg"},"Patterns":null},"shekel-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shekel-sign.svg"},"Patterns":null},"shield-cat.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-cat.svg"},"Patterns":null},"shield-dog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-dog.svg"},"Patterns":null},"shield-halved.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-halved.svg"},"Patterns":null},"shield-heart.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-heart.svg"},"Patterns":null},"shield-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield-virus.svg"},"Patterns":null},"shield.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shield.svg"},"Patterns":null},"ship.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ship.svg"},"Patterns":null},"shirt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shirt.svg"},"Patterns":null},"shoe-prints.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shoe-prints.svg"},"Patterns":null},"shop-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shop-lock.svg"},"Patterns":null},"shop-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shop-slash.svg"},"Patterns":null},"shop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shop.svg"},"Patterns":null},"shower.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shower.svg"},"Patterns":null},"shrimp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shrimp.svg"},"Patterns":null},"shuffle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shuffle.svg"},"Patterns":null},"shuttle-space.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/shuttle-space.svg"},"Patterns":null},"sign-hanging.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sign-hanging.svg"},"Patterns":null},"signal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/signal.svg"},"Patterns":null},"signature.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/signature.svg"},"Patterns":null},"signs-post.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/signs-post.svg"},"Patterns":null},"sim-card.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sim-card.svg"},"Patterns":null},"sink.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sink.svg"},"Patterns":null},"sitemap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sitemap.svg"},"Patterns":null},"skull-crossbones.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/skull-crossbones.svg"},"Patterns":null},"skull.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/skull.svg"},"Patterns":null},"slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/slash.svg"},"Patterns":null},"sleigh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sleigh.svg"},"Patterns":null},"sliders.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sliders.svg"},"Patterns":null},"smog.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/smog.svg"},"Patterns":null},"smoking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/smoking.svg"},"Patterns":null},"snowflake.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/snowflake.svg"},"Patterns":null},"snowman.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/snowman.svg"},"Patterns":null},"snowplow.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/snowplow.svg"},"Patterns":null},"soap.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/soap.svg"},"Patterns":null},"socks.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/socks.svg"},"Patterns":null},"solar-panel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/solar-panel.svg"},"Patterns":null},"sort-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sort-down.svg"},"Patterns":null},"sort-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sort-up.svg"},"Patterns":null},"sort.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sort.svg"},"Patterns":null},"spa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spa.svg"},"Patterns":null},"spaghetti-monster-flying.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spaghetti-monster-flying.svg"},"Patterns":null},"spell-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spell-check.svg"},"Patterns":null},"spider.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spider.svg"},"Patterns":null},"spinner.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spinner.svg"},"Patterns":null},"splotch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/splotch.svg"},"Patterns":null},"spoon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spoon.svg"},"Patterns":null},"spray-can-sparkles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spray-can-sparkles.svg"},"Patterns":null},"spray-can.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/spray-can.svg"},"Patterns":null},"square-arrow-up-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-arrow-up-right.svg"},"Patterns":null},"square-caret-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-caret-down.svg"},"Patterns":null},"square-caret-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-caret-left.svg"},"Patterns":null},"square-caret-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-caret-right.svg"},"Patterns":null},"square-caret-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-caret-up.svg"},"Patterns":null},"square-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-check.svg"},"Patterns":null},"square-envelope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-envelope.svg"},"Patterns":null},"square-full.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-full.svg"},"Patterns":null},"square-h.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-h.svg"},"Patterns":null},"square-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-minus.svg"},"Patterns":null},"square-nfi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-nfi.svg"},"Patterns":null},"square-parking.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-parking.svg"},"Patterns":null},"square-pen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-pen.svg"},"Patterns":null},"square-person-confined.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-person-confined.svg"},"Patterns":null},"square-phone-flip.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-phone-flip.svg"},"Patterns":null},"square-phone.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-phone.svg"},"Patterns":null},"square-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-plus.svg"},"Patterns":null},"square-poll-horizontal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-poll-horizontal.svg"},"Patterns":null},"square-poll-vertical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-poll-vertical.svg"},"Patterns":null},"square-root-variable.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-root-variable.svg"},"Patterns":null},"square-rss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-rss.svg"},"Patterns":null},"square-share-nodes.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-share-nodes.svg"},"Patterns":null},"square-up-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-up-right.svg"},"Patterns":null},"square-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-virus.svg"},"Patterns":null},"square-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square-xmark.svg"},"Patterns":null},"square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/square.svg"},"Patterns":null},"staff-aesculapius.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/staff-aesculapius.svg"},"Patterns":null},"stairs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stairs.svg"},"Patterns":null},"stamp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stamp.svg"},"Patterns":null},"star-and-crescent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-and-crescent.svg"},"Patterns":null},"star-half-stroke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-half-stroke.svg"},"Patterns":null},"star-half.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-half.svg"},"Patterns":null},"star-of-david.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-of-david.svg"},"Patterns":null},"star-of-life.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star-of-life.svg"},"Patterns":null},"star.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/star.svg"},"Patterns":null},"sterling-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sterling-sign.svg"},"Patterns":null},"stethoscope.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stethoscope.svg"},"Patterns":null},"stop.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stop.svg"},"Patterns":null},"stopwatch-20.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stopwatch-20.svg"},"Patterns":null},"stopwatch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stopwatch.svg"},"Patterns":null},"store-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/store-slash.svg"},"Patterns":null},"store.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/store.svg"},"Patterns":null},"street-view.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/street-view.svg"},"Patterns":null},"strikethrough.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/strikethrough.svg"},"Patterns":null},"stroopwafel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/stroopwafel.svg"},"Patterns":null},"subscript.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/subscript.svg"},"Patterns":null},"suitcase-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/suitcase-medical.svg"},"Patterns":null},"suitcase-rolling.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/suitcase-rolling.svg"},"Patterns":null},"suitcase.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/suitcase.svg"},"Patterns":null},"sun-plant-wilt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sun-plant-wilt.svg"},"Patterns":null},"sun.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/sun.svg"},"Patterns":null},"superscript.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/superscript.svg"},"Patterns":null},"swatchbook.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/swatchbook.svg"},"Patterns":null},"synagogue.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/synagogue.svg"},"Patterns":null},"syringe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/syringe.svg"},"Patterns":null},"t.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/t.svg"},"Patterns":null},"table-cells-large.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-cells-large.svg"},"Patterns":null},"table-cells.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-cells.svg"},"Patterns":null},"table-columns.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-columns.svg"},"Patterns":null},"table-list.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-list.svg"},"Patterns":null},"table-tennis-paddle-ball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table-tennis-paddle-ball.svg"},"Patterns":null},"table.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/table.svg"},"Patterns":null},"tablet-button.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tablet-button.svg"},"Patterns":null},"tablet-screen-button.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tablet-screen-button.svg"},"Patterns":null},"tablet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tablet.svg"},"Patterns":null},"tablets.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tablets.svg"},"Patterns":null},"tachograph-digital.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tachograph-digital.svg"},"Patterns":null},"tag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tag.svg"},"Patterns":null},"tags.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tags.svg"},"Patterns":null},"tape.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tape.svg"},"Patterns":null},"tarp-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tarp-droplet.svg"},"Patterns":null},"tarp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tarp.svg"},"Patterns":null},"taxi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/taxi.svg"},"Patterns":null},"teeth-open.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/teeth-open.svg"},"Patterns":null},"teeth.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/teeth.svg"},"Patterns":null},"temperature-arrow-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-arrow-down.svg"},"Patterns":null},"temperature-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-arrow-up.svg"},"Patterns":null},"temperature-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-empty.svg"},"Patterns":null},"temperature-full.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-full.svg"},"Patterns":null},"temperature-half.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-half.svg"},"Patterns":null},"temperature-high.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-high.svg"},"Patterns":null},"temperature-low.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-low.svg"},"Patterns":null},"temperature-quarter.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-quarter.svg"},"Patterns":null},"temperature-three-quarters.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/temperature-three-quarters.svg"},"Patterns":null},"tenge-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tenge-sign.svg"},"Patterns":null},"tent-arrow-down-to-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent-arrow-down-to-line.svg"},"Patterns":null},"tent-arrow-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent-arrow-left-right.svg"},"Patterns":null},"tent-arrow-turn-left.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent-arrow-turn-left.svg"},"Patterns":null},"tent-arrows-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent-arrows-down.svg"},"Patterns":null},"tent.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tent.svg"},"Patterns":null},"tents.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tents.svg"},"Patterns":null},"terminal.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/terminal.svg"},"Patterns":null},"text-height.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/text-height.svg"},"Patterns":null},"text-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/text-slash.svg"},"Patterns":null},"text-width.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/text-width.svg"},"Patterns":null},"thermometer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/thermometer.svg"},"Patterns":null},"thumbs-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/thumbs-down.svg"},"Patterns":null},"thumbs-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/thumbs-up.svg"},"Patterns":null},"thumbtack.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/thumbtack.svg"},"Patterns":null},"ticket-simple.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ticket-simple.svg"},"Patterns":null},"ticket.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/ticket.svg"},"Patterns":null},"timeline.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/timeline.svg"},"Patterns":null},"toggle-off.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toggle-off.svg"},"Patterns":null},"toggle-on.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toggle-on.svg"},"Patterns":null},"toilet-paper-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilet-paper-slash.svg"},"Patterns":null},"toilet-paper.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilet-paper.svg"},"Patterns":null},"toilet-portable.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilet-portable.svg"},"Patterns":null},"toilet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilet.svg"},"Patterns":null},"toilets-portable.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toilets-portable.svg"},"Patterns":null},"toolbox.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/toolbox.svg"},"Patterns":null},"tooth.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tooth.svg"},"Patterns":null},"torii-gate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/torii-gate.svg"},"Patterns":null},"tornado.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tornado.svg"},"Patterns":null},"tower-broadcast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tower-broadcast.svg"},"Patterns":null},"tower-cell.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tower-cell.svg"},"Patterns":null},"tower-observation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tower-observation.svg"},"Patterns":null},"tractor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tractor.svg"},"Patterns":null},"trademark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trademark.svg"},"Patterns":null},"traffic-light.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/traffic-light.svg"},"Patterns":null},"trailer.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trailer.svg"},"Patterns":null},"train-subway.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/train-subway.svg"},"Patterns":null},"train-tram.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/train-tram.svg"},"Patterns":null},"train.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/train.svg"},"Patterns":null},"transgender.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/transgender.svg"},"Patterns":null},"trash-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trash-arrow-up.svg"},"Patterns":null},"trash-can-arrow-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trash-can-arrow-up.svg"},"Patterns":null},"trash-can.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trash-can.svg"},"Patterns":null},"trash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trash.svg"},"Patterns":null},"tree-city.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tree-city.svg"},"Patterns":null},"tree.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tree.svg"},"Patterns":null},"triangle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/triangle-exclamation.svg"},"Patterns":null},"trophy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trophy.svg"},"Patterns":null},"trowel-bricks.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trowel-bricks.svg"},"Patterns":null},"trowel.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/trowel.svg"},"Patterns":null},"truck-arrow-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-arrow-right.svg"},"Patterns":null},"truck-droplet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-droplet.svg"},"Patterns":null},"truck-fast.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-fast.svg"},"Patterns":null},"truck-field-un.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-field-un.svg"},"Patterns":null},"truck-field.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-field.svg"},"Patterns":null},"truck-front.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-front.svg"},"Patterns":null},"truck-medical.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-medical.svg"},"Patterns":null},"truck-monster.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-monster.svg"},"Patterns":null},"truck-moving.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-moving.svg"},"Patterns":null},"truck-pickup.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-pickup.svg"},"Patterns":null},"truck-plane.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-plane.svg"},"Patterns":null},"truck-ramp-box.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck-ramp-box.svg"},"Patterns":null},"truck.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/truck.svg"},"Patterns":null},"tty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tty.svg"},"Patterns":null},"turkish-lira-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/turkish-lira-sign.svg"},"Patterns":null},"turn-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/turn-down.svg"},"Patterns":null},"turn-up.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/turn-up.svg"},"Patterns":null},"tv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/tv.svg"},"Patterns":null},"u.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/u.svg"},"Patterns":null},"umbrella-beach.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/umbrella-beach.svg"},"Patterns":null},"umbrella.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/umbrella.svg"},"Patterns":null},"underline.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/underline.svg"},"Patterns":null},"universal-access.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/universal-access.svg"},"Patterns":null},"unlock-keyhole.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/unlock-keyhole.svg"},"Patterns":null},"unlock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/unlock.svg"},"Patterns":null},"up-down-left-right.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-down-left-right.svg"},"Patterns":null},"up-down.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-down.svg"},"Patterns":null},"up-long.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-long.svg"},"Patterns":null},"up-right-and-down-left-from-center.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-right-and-down-left-from-center.svg"},"Patterns":null},"up-right-from-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/up-right-from-square.svg"},"Patterns":null},"upload.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/upload.svg"},"Patterns":null},"user-astronaut.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-astronaut.svg"},"Patterns":null},"user-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-check.svg"},"Patterns":null},"user-clock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-clock.svg"},"Patterns":null},"user-doctor.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-doctor.svg"},"Patterns":null},"user-gear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-gear.svg"},"Patterns":null},"user-graduate.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-graduate.svg"},"Patterns":null},"user-group.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-group.svg"},"Patterns":null},"user-injured.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-injured.svg"},"Patterns":null},"user-large-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-large-slash.svg"},"Patterns":null},"user-large.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-large.svg"},"Patterns":null},"user-lock.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-lock.svg"},"Patterns":null},"user-minus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-minus.svg"},"Patterns":null},"user-ninja.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-ninja.svg"},"Patterns":null},"user-nurse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-nurse.svg"},"Patterns":null},"user-pen.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-pen.svg"},"Patterns":null},"user-plus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-plus.svg"},"Patterns":null},"user-secret.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-secret.svg"},"Patterns":null},"user-shield.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-shield.svg"},"Patterns":null},"user-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-slash.svg"},"Patterns":null},"user-tag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-tag.svg"},"Patterns":null},"user-tie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-tie.svg"},"Patterns":null},"user-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user-xmark.svg"},"Patterns":null},"user.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/user.svg"},"Patterns":null},"users-between-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-between-lines.svg"},"Patterns":null},"users-gear.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-gear.svg"},"Patterns":null},"users-line.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-line.svg"},"Patterns":null},"users-rays.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-rays.svg"},"Patterns":null},"users-rectangle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-rectangle.svg"},"Patterns":null},"users-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-slash.svg"},"Patterns":null},"users-viewfinder.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users-viewfinder.svg"},"Patterns":null},"users.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/users.svg"},"Patterns":null},"utensils.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/utensils.svg"},"Patterns":null},"v.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/v.svg"},"Patterns":null},"van-shuttle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/van-shuttle.svg"},"Patterns":null},"vault.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vault.svg"},"Patterns":null},"vector-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vector-square.svg"},"Patterns":null},"venus-double.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/venus-double.svg"},"Patterns":null},"venus-mars.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/venus-mars.svg"},"Patterns":null},"venus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/venus.svg"},"Patterns":null},"vest-patches.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vest-patches.svg"},"Patterns":null},"vest.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vest.svg"},"Patterns":null},"vial-circle-check.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vial-circle-check.svg"},"Patterns":null},"vial-virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vial-virus.svg"},"Patterns":null},"vial.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vial.svg"},"Patterns":null},"vials.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vials.svg"},"Patterns":null},"video-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/video-slash.svg"},"Patterns":null},"video.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/video.svg"},"Patterns":null},"vihara.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vihara.svg"},"Patterns":null},"virus-covid-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/virus-covid-slash.svg"},"Patterns":null},"virus-covid.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/virus-covid.svg"},"Patterns":null},"virus-slash.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/virus-slash.svg"},"Patterns":null},"virus.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/virus.svg"},"Patterns":null},"viruses.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/viruses.svg"},"Patterns":null},"voicemail.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/voicemail.svg"},"Patterns":null},"volcano.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volcano.svg"},"Patterns":null},"volleyball.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volleyball.svg"},"Patterns":null},"volume-high.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volume-high.svg"},"Patterns":null},"volume-low.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volume-low.svg"},"Patterns":null},"volume-off.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volume-off.svg"},"Patterns":null},"volume-xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/volume-xmark.svg"},"Patterns":null},"vr-cardboard.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/vr-cardboard.svg"},"Patterns":null},"w.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/w.svg"},"Patterns":null},"walkie-talkie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/walkie-talkie.svg"},"Patterns":null},"wallet.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wallet.svg"},"Patterns":null},"wand-magic-sparkles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wand-magic-sparkles.svg"},"Patterns":null},"wand-magic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wand-magic.svg"},"Patterns":null},"wand-sparkles.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wand-sparkles.svg"},"Patterns":null},"warehouse.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/warehouse.svg"},"Patterns":null},"water-ladder.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/water-ladder.svg"},"Patterns":null},"water.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/water.svg"},"Patterns":null},"wave-square.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wave-square.svg"},"Patterns":null},"weight-hanging.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/weight-hanging.svg"},"Patterns":null},"weight-scale.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/weight-scale.svg"},"Patterns":null},"wheat-awn-circle-exclamation.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wheat-awn-circle-exclamation.svg"},"Patterns":null},"wheat-awn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wheat-awn.svg"},"Patterns":null},"wheelchair-move.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wheelchair-move.svg"},"Patterns":null},"wheelchair.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wheelchair.svg"},"Patterns":null},"whiskey-glass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/whiskey-glass.svg"},"Patterns":null},"wifi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wifi.svg"},"Patterns":null},"wind.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wind.svg"},"Patterns":null},"window-maximize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/window-maximize.svg"},"Patterns":null},"window-minimize.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/window-minimize.svg"},"Patterns":null},"window-restore.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/window-restore.svg"},"Patterns":null},"wine-bottle.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wine-bottle.svg"},"Patterns":null},"wine-glass-empty.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wine-glass-empty.svg"},"Patterns":null},"wine-glass.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wine-glass.svg"},"Patterns":null},"won-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/won-sign.svg"},"Patterns":null},"worm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/worm.svg"},"Patterns":null},"wrench.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/wrench.svg"},"Patterns":null},"x-ray.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/x-ray.svg"},"Patterns":null},"x.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/x.svg"},"Patterns":null},"xmark.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/xmark.svg"},"Patterns":null},"xmarks-lines.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/xmarks-lines.svg"},"Patterns":null},"y.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/y.svg"},"Patterns":null},"yen-sign.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/yen-sign.svg"},"Patterns":null},"yin-yang.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/yin-yang.svg"},"Patterns":null},"z.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/svgs/solid/z.svg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"webfonts":{"Children":{"fa-brands-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-brands-400.ttf"},"Patterns":null},"fa-brands-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-brands-400.woff2"},"Patterns":null},"fa-regular-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-regular-400.ttf"},"Patterns":null},"fa-regular-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-regular-400.woff2"},"Patterns":null},"fa-solid-900.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-solid-900.ttf"},"Patterns":null},"fa-solid-900.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-solid-900.woff2"},"Patterns":null},"fa-v4compatibility.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-v4compatibility.ttf"},"Patterns":null},"fa-v4compatibility.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/FontAwesome/webfonts/fa-v4compatibility.woff2"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"MyWebsite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MyWebsite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets.pack.json b/obj/Debug/net7.0/staticwebassets.pack.json
deleted file mode 100644
index e1d3530..0000000
--- a/obj/Debug/net7.0/staticwebassets.pack.json
+++ /dev/null
@@ -1,8657 +0,0 @@
-{
- "Files": [
- {
- "Id": "/home/merlin/MyWebsite/obj/Debug/net7.0/scopedcss/projectbundle/MyWebsite.bundle.scp.css",
- "PackagePath": "staticwebassets/MyWebsite.bundle.scp.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/Content/Logo.png",
- "PackagePath": "staticwebassets/Content/Logo.png"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/Fonts/JetBrainsMono-Regular.woff2",
- "PackagePath": "staticwebassets/Fonts/JetBrainsMono-Regular.woff2"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/css/site.css",
- "PackagePath": "staticwebassets/css/site.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/favicon.ico",
- "PackagePath": "staticwebassets/favicon.ico"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/js/site.js",
- "PackagePath": "staticwebassets/js/site.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/LICENSE.txt",
- "PackagePath": "staticwebassets/lib/FontAwesome/LICENSE.txt"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/all.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/all.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/all.min.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/all.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/brands.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/brands.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/brands.min.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/brands.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/fontawesome.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/fontawesome.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/fontawesome.min.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/fontawesome.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/regular.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/regular.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/regular.min.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/regular.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/solid.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/solid.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/solid.min.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/solid.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/svg-with-js.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/svg-with-js.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/svg-with-js.min.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/svg-with-js.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v4-font-face.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/v4-font-face.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v4-font-face.min.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/v4-font-face.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v4-shims.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/v4-shims.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v4-shims.min.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/v4-shims.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v5-font-face.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/v5-font-face.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/css/v5-font-face.min.css",
- "PackagePath": "staticwebassets/lib/FontAwesome/css/v5-font-face.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/all.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/all.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/all.min.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/all.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/brands.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/brands.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/brands.min.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/brands.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/conflict-detection.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/conflict-detection.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/conflict-detection.min.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/conflict-detection.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/fontawesome.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/fontawesome.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/fontawesome.min.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/fontawesome.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/regular.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/regular.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/regular.min.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/regular.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/solid.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/solid.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/solid.min.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/solid.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/v4-shims.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/v4-shims.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/js/v4-shims.min.js",
- "PackagePath": "staticwebassets/lib/FontAwesome/js/v4-shims.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_animated.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_animated.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_bordered-pulled.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_bordered-pulled.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_core.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_core.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_fixed-width.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_fixed-width.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_icons.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_icons.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_list.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_list.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_mixins.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_mixins.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_rotated-flipped.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_rotated-flipped.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_screen-reader.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_screen-reader.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_shims.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_shims.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_sizing.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_sizing.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_stacked.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_stacked.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/_variables.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/_variables.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/brands.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/brands.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/fontawesome.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/fontawesome.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/regular.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/regular.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/solid.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/solid.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/less/v4-shims.less",
- "PackagePath": "staticwebassets/lib/FontAwesome/less/v4-shims.less"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/categories.yml",
- "PackagePath": "staticwebassets/lib/FontAwesome/metadata/categories.yml"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/icons.json",
- "PackagePath": "staticwebassets/lib/FontAwesome/metadata/icons.json"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/icons.yml",
- "PackagePath": "staticwebassets/lib/FontAwesome/metadata/icons.yml"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/shims.json",
- "PackagePath": "staticwebassets/lib/FontAwesome/metadata/shims.json"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/shims.yml",
- "PackagePath": "staticwebassets/lib/FontAwesome/metadata/shims.yml"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/metadata/sponsors.yml",
- "PackagePath": "staticwebassets/lib/FontAwesome/metadata/sponsors.yml"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_animated.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_animated.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_bordered-pulled.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_bordered-pulled.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_core.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_core.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_fixed-width.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_fixed-width.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_functions.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_functions.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_icons.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_icons.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_list.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_list.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_mixins.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_mixins.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_rotated-flipped.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_rotated-flipped.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_screen-reader.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_screen-reader.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_shims.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_shims.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_sizing.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_sizing.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_stacked.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_stacked.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/_variables.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/_variables.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/brands.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/brands.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/fontawesome.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/fontawesome.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/regular.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/regular.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/solid.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/solid.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/scss/v4-shims.scss",
- "PackagePath": "staticwebassets/lib/FontAwesome/scss/v4-shims.scss"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/sprites/brands.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/sprites/brands.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/sprites/regular.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/sprites/regular.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/sprites/solid.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/sprites/solid.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/42-group.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/42-group.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/500px.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/500px.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/accessible-icon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/accessible-icon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/accusoft.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/accusoft.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/adn.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/adn.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/adversal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/adversal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/affiliatetheme.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/affiliatetheme.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/airbnb.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/airbnb.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/algolia.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/algolia.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/alipay.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/alipay.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/amazon-pay.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/amazon-pay.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/amazon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/amazon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/amilia.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/amilia.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/android.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/android.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/angellist.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/angellist.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/angrycreative.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/angrycreative.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/angular.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/angular.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/app-store-ios.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/app-store-ios.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/app-store.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/app-store.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/apper.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/apper.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/apple-pay.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/apple-pay.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/apple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/apple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/artstation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/artstation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/asymmetrik.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/asymmetrik.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/atlassian.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/atlassian.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/audible.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/audible.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/autoprefixer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/autoprefixer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/avianex.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/avianex.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/aviato.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/aviato.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/aws.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/aws.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bandcamp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bandcamp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/battle-net.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/battle-net.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/behance-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/behance-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/behance.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/behance.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bilibili.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bilibili.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bimobject.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bimobject.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bitbucket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bitbucket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bitcoin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bitcoin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bity.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bity.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/black-tie.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/black-tie.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/blackberry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/blackberry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/blogger-b.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/blogger-b.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/blogger.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/blogger.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bluetooth-b.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bluetooth-b.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bluetooth.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bluetooth.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bootstrap.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bootstrap.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/bots.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/bots.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/btc.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/btc.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/buffer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/buffer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/buromobelexperte.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/buromobelexperte.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/buy-n-large.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/buy-n-large.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/buysellads.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/buysellads.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/canadian-maple-leaf.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/canadian-maple-leaf.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-amazon-pay.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-amazon-pay.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-amex.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-amex.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-apple-pay.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-apple-pay.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-diners-club.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-diners-club.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-discover.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-discover.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-jcb.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-jcb.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-mastercard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-mastercard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-paypal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-paypal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-stripe.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-stripe.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cc-visa.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cc-visa.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/centercode.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/centercode.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/centos.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/centos.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/chrome.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/chrome.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/chromecast.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/chromecast.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cloudflare.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cloudflare.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cloudscale.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cloudscale.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cloudsmith.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cloudsmith.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cloudversify.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cloudversify.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cmplid.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cmplid.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/codepen.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/codepen.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/codiepie.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/codiepie.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/confluence.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/confluence.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/connectdevelop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/connectdevelop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/contao.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/contao.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cotton-bureau.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cotton-bureau.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cpanel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cpanel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-by.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-by.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nc-eu.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-nc-eu.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nc-jp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-nc-jp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nc.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-nc.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-nd.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-nd.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-pd-alt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-pd-alt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-pd.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-pd.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-remix.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-remix.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-sa.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-sa.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-sampling-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-sampling-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-sampling.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-sampling.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-share.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-share.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons-zero.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons-zero.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/creative-commons.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/creative-commons.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/critical-role.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/critical-role.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/css3-alt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/css3-alt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/css3.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/css3.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/cuttlefish.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/cuttlefish.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/d-and-d-beyond.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/d-and-d-beyond.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/d-and-d.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/d-and-d.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dailymotion.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/dailymotion.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dashcube.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/dashcube.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/deezer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/deezer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/delicious.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/delicious.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/deploydog.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/deploydog.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/deskpro.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/deskpro.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dev.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/dev.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/deviantart.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/deviantart.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dhl.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/dhl.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/diaspora.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/diaspora.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/digg.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/digg.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/digital-ocean.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/digital-ocean.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/discord.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/discord.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/discourse.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/discourse.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dochub.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/dochub.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/docker.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/docker.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/draft2digital.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/draft2digital.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dribbble-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/dribbble-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dribbble.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/dribbble.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dropbox.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/dropbox.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/drupal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/drupal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/dyalog.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/dyalog.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/earlybirds.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/earlybirds.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ebay.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ebay.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/edge-legacy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/edge-legacy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/edge.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/edge.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/elementor.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/elementor.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ello.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ello.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ember.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ember.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/empire.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/empire.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/envira.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/envira.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/erlang.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/erlang.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ethereum.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ethereum.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/etsy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/etsy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/evernote.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/evernote.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/expeditedssl.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/expeditedssl.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/facebook-f.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/facebook-f.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/facebook-messenger.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/facebook-messenger.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/facebook-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/facebook-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/facebook.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/facebook.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fantasy-flight-games.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/fantasy-flight-games.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fedex.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/fedex.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fedora.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/fedora.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/figma.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/figma.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/firefox-browser.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/firefox-browser.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/firefox.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/firefox.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/first-order-alt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/first-order-alt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/first-order.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/first-order.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/firstdraft.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/firstdraft.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/flickr.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/flickr.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/flipboard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/flipboard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fly.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/fly.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/font-awesome.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/font-awesome.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fonticons-fi.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/fonticons-fi.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fonticons.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/fonticons.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fort-awesome-alt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/fort-awesome-alt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fort-awesome.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/fort-awesome.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/forumbee.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/forumbee.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/foursquare.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/foursquare.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/free-code-camp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/free-code-camp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/freebsd.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/freebsd.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/fulcrum.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/fulcrum.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/galactic-republic.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/galactic-republic.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/galactic-senate.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/galactic-senate.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/get-pocket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/get-pocket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gg-circle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/gg-circle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gg.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/gg.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/git-alt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/git-alt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/git-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/git-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/git.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/git.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/github-alt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/github-alt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/github-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/github-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/github.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/github.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gitkraken.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/gitkraken.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gitlab.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/gitlab.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gitter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/gitter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/glide-g.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/glide-g.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/glide.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/glide.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gofore.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/gofore.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/golang.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/golang.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/goodreads-g.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/goodreads-g.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/goodreads.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/goodreads.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-drive.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/google-drive.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-pay.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/google-pay.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-play.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/google-play.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-plus-g.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/google-plus-g.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-plus-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/google-plus-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/google-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google-wallet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/google-wallet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/google.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/google.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gratipay.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/gratipay.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/grav.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/grav.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gripfire.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/gripfire.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/grunt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/grunt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/guilded.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/guilded.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/gulp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/gulp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hacker-news-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hacker-news-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hacker-news.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hacker-news.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hackerrank.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hackerrank.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hashnode.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hashnode.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hips.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hips.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hire-a-helper.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hire-a-helper.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hive.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hive.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hooli.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hooli.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hornbill.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hornbill.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hotjar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hotjar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/houzz.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/houzz.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/html5.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/html5.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/hubspot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/hubspot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ideal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ideal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/imdb.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/imdb.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/instagram-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/instagram-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/instagram.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/instagram.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/instalod.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/instalod.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/intercom.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/intercom.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/internet-explorer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/internet-explorer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/invision.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/invision.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ioxhost.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ioxhost.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/itch-io.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/itch-io.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/itunes-note.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/itunes-note.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/itunes.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/itunes.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/java.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/java.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/jedi-order.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/jedi-order.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/jenkins.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/jenkins.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/jira.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/jira.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/joget.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/joget.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/joomla.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/joomla.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/js-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/js-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/js.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/js.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/jsfiddle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/jsfiddle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/kaggle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/kaggle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/keybase.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/keybase.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/keycdn.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/keycdn.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/kickstarter-k.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/kickstarter-k.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/kickstarter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/kickstarter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/korvue.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/korvue.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/laravel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/laravel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/lastfm-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/lastfm-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/lastfm.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/lastfm.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/leanpub.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/leanpub.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/less.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/less.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/linkedin-in.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/linkedin-in.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/linkedin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/linkedin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/linode.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/linode.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/linux.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/linux.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/lyft.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/lyft.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/magento.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/magento.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mailchimp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/mailchimp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mandalorian.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/mandalorian.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/markdown.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/markdown.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mastodon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/mastodon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/maxcdn.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/maxcdn.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mdb.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/mdb.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/medapps.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/medapps.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/medium.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/medium.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/medrt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/medrt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/meetup.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/meetup.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/megaport.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/megaport.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mendeley.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/mendeley.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/microblog.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/microblog.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/microsoft.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/microsoft.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mix.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/mix.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mixcloud.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/mixcloud.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mixer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/mixer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/mizuni.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/mizuni.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/modx.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/modx.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/monero.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/monero.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/napster.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/napster.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/neos.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/neos.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/nfc-directional.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/nfc-directional.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/nfc-symbol.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/nfc-symbol.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/nimblr.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/nimblr.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/node-js.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/node-js.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/node.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/node.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/npm.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/npm.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ns8.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ns8.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/nutritionix.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/nutritionix.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/octopus-deploy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/octopus-deploy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/odnoklassniki-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/odnoklassniki-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/odnoklassniki.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/odnoklassniki.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/old-republic.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/old-republic.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/opencart.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/opencart.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/openid.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/openid.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/opera.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/opera.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/optin-monster.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/optin-monster.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/orcid.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/orcid.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/osi.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/osi.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/padlet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/padlet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/page4.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/page4.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pagelines.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pagelines.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/palfed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/palfed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/patreon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/patreon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/paypal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/paypal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/perbyte.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/perbyte.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/periscope.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/periscope.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/phabricator.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/phabricator.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/phoenix-framework.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/phoenix-framework.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/phoenix-squadron.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/phoenix-squadron.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/php.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/php.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper-alt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pied-piper-alt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper-hat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pied-piper-hat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper-pp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pied-piper-pp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pied-piper-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pied-piper.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pied-piper.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pinterest-p.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pinterest-p.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pinterest-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pinterest-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pinterest.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pinterest.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pix.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pix.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/playstation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/playstation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/product-hunt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/product-hunt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/pushed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/pushed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/python.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/python.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/qq.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/qq.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/quinscape.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/quinscape.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/quora.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/quora.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/r-project.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/r-project.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/raspberry-pi.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/raspberry-pi.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ravelry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ravelry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/react.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/react.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/reacteurope.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/reacteurope.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/readme.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/readme.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rebel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/rebel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/red-river.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/red-river.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/reddit-alien.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/reddit-alien.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/reddit-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/reddit-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/reddit.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/reddit.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/redhat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/redhat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/renren.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/renren.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/replyd.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/replyd.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/researchgate.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/researchgate.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/resolving.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/resolving.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rev.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/rev.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rocketchat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/rocketchat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rockrms.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/rockrms.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/rust.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/rust.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/safari.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/safari.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/salesforce.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/salesforce.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sass.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/sass.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/schlix.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/schlix.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/screenpal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/screenpal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/scribd.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/scribd.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/searchengin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/searchengin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sellcast.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/sellcast.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sellsy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/sellsy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/servicestack.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/servicestack.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/shirtsinbulk.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/shirtsinbulk.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/shopify.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/shopify.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/shopware.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/shopware.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/simplybuilt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/simplybuilt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sistrix.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/sistrix.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sith.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/sith.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sitrox.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/sitrox.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sketch.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/sketch.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/skyatlas.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/skyatlas.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/skype.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/skype.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/slack.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/slack.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/slideshare.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/slideshare.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/snapchat-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/snapchat-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/snapchat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/snapchat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/soundcloud.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/soundcloud.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sourcetree.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/sourcetree.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/speakap.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/speakap.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/speaker-deck.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/speaker-deck.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/spotify.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/spotify.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/square-font-awesome-stroke.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/square-font-awesome-stroke.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/square-font-awesome.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/square-font-awesome.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/squarespace.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/squarespace.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stack-exchange.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/stack-exchange.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stack-overflow.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/stack-overflow.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stackpath.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/stackpath.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/staylinked.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/staylinked.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/steam-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/steam-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/steam-symbol.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/steam-symbol.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/steam.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/steam.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/sticker-mule.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/sticker-mule.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/strava.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/strava.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stripe-s.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/stripe-s.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stripe.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/stripe.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/studiovinari.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/studiovinari.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stumbleupon-circle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/stumbleupon-circle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/stumbleupon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/stumbleupon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/superpowers.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/superpowers.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/supple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/supple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/suse.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/suse.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/swift.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/swift.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/symfony.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/symfony.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/teamspeak.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/teamspeak.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/telegram.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/telegram.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/tencent-weibo.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/tencent-weibo.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/the-red-yeti.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/the-red-yeti.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/themeco.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/themeco.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/themeisle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/themeisle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/think-peaks.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/think-peaks.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/tiktok.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/tiktok.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/trade-federation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/trade-federation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/trello.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/trello.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/tumblr-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/tumblr-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/tumblr.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/tumblr.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/twitch.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/twitch.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/twitter-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/twitter-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/twitter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/twitter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/typo3.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/typo3.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/uber.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/uber.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ubuntu.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ubuntu.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/uikit.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/uikit.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/umbraco.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/umbraco.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/uncharted.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/uncharted.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/uniregistry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/uniregistry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/unity.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/unity.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/unsplash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/unsplash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/untappd.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/untappd.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ups.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ups.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/usb.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/usb.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/usps.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/usps.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/ussunnah.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/ussunnah.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vaadin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/vaadin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/viacoin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/viacoin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/viadeo-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/viadeo-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/viadeo.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/viadeo.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/viber.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/viber.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vimeo-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/vimeo-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vimeo-v.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/vimeo-v.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vimeo.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/vimeo.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vine.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/vine.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vk.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/vk.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vnv.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/vnv.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/vuejs.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/vuejs.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/watchman-monitoring.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/watchman-monitoring.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/waze.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/waze.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/weebly.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/weebly.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/weibo.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/weibo.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/weixin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/weixin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/whatsapp-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/whatsapp-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/whatsapp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/whatsapp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/whmcs.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/whmcs.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wikipedia-w.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wikipedia-w.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/windows.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/windows.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wirsindhandwerk.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wirsindhandwerk.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wix.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wix.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wizards-of-the-coast.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wizards-of-the-coast.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wodu.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wodu.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wolf-pack-battalion.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wolf-pack-battalion.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wordpress-simple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wordpress-simple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wordpress.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wordpress.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wpbeginner.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wpbeginner.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wpexplorer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wpexplorer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wpforms.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wpforms.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/wpressr.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/wpressr.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/xbox.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/xbox.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/xing-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/xing-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/xing.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/xing.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/y-combinator.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/y-combinator.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yahoo.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/yahoo.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yammer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/yammer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yandex-international.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/yandex-international.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yandex.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/yandex.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yarn.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/yarn.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yelp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/yelp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/yoast.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/yoast.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/youtube-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/youtube-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/youtube.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/youtube.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/brands/zhihu.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/brands/zhihu.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/address-book.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/address-book.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/address-card.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/address-card.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/bell-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/bell-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/bell.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/bell.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/bookmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/bookmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/building.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/building.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/calendar-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-days.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/calendar-days.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/calendar-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/calendar-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/calendar-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/calendar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/calendar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chart-bar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/chart-bar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-bishop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/chess-bishop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-king.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/chess-king.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-knight.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/chess-knight.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-pawn.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/chess-pawn.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-queen.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/chess-queen.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/chess-rook.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/chess-rook.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-dot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-dot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-pause.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-pause.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-play.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-play.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-question.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-question.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-stop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-stop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/circle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/circle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/clipboard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/clipboard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/clock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/clock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/clone.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/clone.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/closed-captioning.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/closed-captioning.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/comment-dots.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/comment-dots.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/comment.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/comment.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/comments.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/comments.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/compass.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/compass.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/copy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/copy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/copyright.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/copyright.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/credit-card.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/credit-card.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/envelope-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/envelope-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/envelope.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/envelope.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/eye-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/eye-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/eye.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/eye.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-angry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-angry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-dizzy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-dizzy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-flushed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-flushed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-frown-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-frown-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-frown.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-frown.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grimace.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grimace.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-beam-sweat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-beam-sweat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-beam.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-beam.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-hearts.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-hearts.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-squint-tears.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-squint-tears.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-squint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-squint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-stars.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-stars.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-tears.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-tears.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-tongue-squint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-tongue-squint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-tongue-wink.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-tongue-wink.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-tongue.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-tongue.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-wide.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-wide.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin-wink.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin-wink.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-grin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-grin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-kiss-beam.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-kiss-beam.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-kiss-wink-heart.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-kiss-wink-heart.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-kiss.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-kiss.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-laugh-beam.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-laugh-beam.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-laugh-squint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-laugh-squint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-laugh-wink.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-laugh-wink.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-laugh.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-laugh.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-meh-blank.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-meh-blank.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-meh.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-meh.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-rolling-eyes.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-rolling-eyes.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-sad-cry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-sad-cry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-sad-tear.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-sad-tear.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-smile-beam.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-smile-beam.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-smile-wink.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-smile-wink.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-smile.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-smile.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-surprise.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-surprise.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/face-tired.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/face-tired.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-audio.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-audio.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-code.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-code.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-excel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-excel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-image.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-image.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-lines.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-lines.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-pdf.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-pdf.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-powerpoint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-powerpoint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-video.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-video.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-word.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-word.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file-zipper.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file-zipper.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/file.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/file.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/flag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/flag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/floppy-disk.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/floppy-disk.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/folder-closed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/folder-closed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/folder-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/folder-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/folder.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/folder.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/font-awesome.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/font-awesome.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/futbol.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/futbol.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/gem.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/gem.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-back-fist.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-back-fist.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-lizard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-lizard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-peace.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-peace.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-point-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-point-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-point-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-point-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-point-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-point-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-point-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-point-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-pointer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-pointer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-scissors.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-scissors.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand-spock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand-spock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hand.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hand.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/handshake.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/handshake.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hard-drive.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hard-drive.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/heart.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/heart.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hospital.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hospital.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/hourglass.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/hourglass.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/id-badge.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/id-badge.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/id-card.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/id-card.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/image.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/image.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/images.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/images.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/keyboard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/keyboard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/lemon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/lemon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/life-ring.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/life-ring.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/lightbulb.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/lightbulb.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/map.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/map.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/message.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/message.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/money-bill-1.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/money-bill-1.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/moon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/moon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/newspaper.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/newspaper.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/note-sticky.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/note-sticky.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/object-group.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/object-group.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/object-ungroup.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/object-ungroup.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/paper-plane.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/paper-plane.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/paste.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/paste.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/pen-to-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/pen-to-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/rectangle-list.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/rectangle-list.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/rectangle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/rectangle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/registered.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/registered.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/share-from-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/share-from-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/snowflake.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/snowflake.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-caret-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/square-caret-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-caret-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/square-caret-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-caret-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/square-caret-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-caret-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/square-caret-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/square-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-full.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/square-full.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/square-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/square-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/star-half-stroke.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/star-half-stroke.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/star-half.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/star-half.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/star.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/star.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/sun.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/sun.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/thumbs-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/thumbs-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/thumbs-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/thumbs-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/trash-can.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/trash-can.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/window-maximize.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/window-maximize.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/window-minimize.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/window-minimize.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/regular/window-restore.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/regular/window-restore.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/0.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/0.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/1.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/1.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/2.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/2.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/3.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/3.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/4.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/4.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/5.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/5.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/6.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/6.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/7.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/7.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/8.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/8.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/9.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/9.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/a.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/a.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/address-book.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/address-book.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/address-card.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/address-card.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/align-center.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/align-center.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/align-justify.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/align-justify.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/align-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/align-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/align-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/align-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/anchor-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/anchor-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/anchor-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/anchor-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/anchor.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/anchor.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angle-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/angle-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angle-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/angle-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angle-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/angle-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angle-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/angle-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angles-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/angles-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angles-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/angles-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angles-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/angles-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/angles-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/angles-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ankh.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ankh.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/apple-whole.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/apple-whole.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/archway.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/archway.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-1-9.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down-1-9.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-9-1.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down-9-1.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-a-z.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down-a-z.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-long.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down-long.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-short-wide.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down-short-wide.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-up-across-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down-up-across-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-up-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down-up-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-wide-short.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down-wide-short.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down-z-a.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down-z-a.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-left-long.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-left-long.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-pointer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-pointer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-arrow-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-right-arrow-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-from-bracket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-right-from-bracket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-long.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-right-long.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-to-bracket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-right-to-bracket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right-to-city.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-right-to-city.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-rotate-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-rotate-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-rotate-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-rotate-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-trend-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-trend-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-trend-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-trend-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-turn-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-turn-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-turn-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-turn-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-1-9.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-1-9.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-9-1.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-9-1.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-a-z.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-a-z.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-from-bracket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-from-bracket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-from-ground-water.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-from-ground-water.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-from-water-pump.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-from-water-pump.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-long.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-long.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-right-dots.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-right-dots.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-right-from-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-right-from-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-short-wide.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-short-wide.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-wide-short.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-wide-short.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up-z-a.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up-z-a.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrow-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrow-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-down-to-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-down-to-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-down-to-people.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-down-to-people.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-left-right-to-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-left-right-to-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-left-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-left-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-rotate.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-rotate.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-spin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-spin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-split-up-and-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-split-up-and-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-to-circle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-to-circle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-to-dot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-to-dot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-to-eye.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-to-eye.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-turn-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-turn-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-turn-to-dots.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-turn-to-dots.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-up-down-left-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-up-down-left-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-up-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-up-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/arrows-up-to-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/arrows-up-to-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/asterisk.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/asterisk.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/at.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/at.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/atom.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/atom.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/audio-description.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/audio-description.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/austral-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/austral-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/award.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/award.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/b.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/b.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baby-carriage.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/baby-carriage.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baby.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/baby.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/backward-fast.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/backward-fast.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/backward-step.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/backward-step.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/backward.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/backward.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bacon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bacon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bacteria.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bacteria.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bacterium.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bacterium.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bag-shopping.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bag-shopping.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bahai.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bahai.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baht-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/baht-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ban-smoking.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ban-smoking.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ban.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ban.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bandage.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bandage.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/barcode.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/barcode.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bars-progress.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bars-progress.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bars-staggered.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bars-staggered.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bars.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bars.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baseball-bat-ball.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/baseball-bat-ball.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/baseball.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/baseball.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/basket-shopping.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/basket-shopping.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/basketball.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/basketball.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bath.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bath.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-empty.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/battery-empty.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-full.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/battery-full.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-half.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/battery-half.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-quarter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/battery-quarter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/battery-three-quarters.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/battery-three-quarters.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bed-pulse.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bed-pulse.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/beer-mug-empty.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/beer-mug-empty.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bell-concierge.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bell-concierge.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bell-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bell-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bell.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bell.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bezier-curve.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bezier-curve.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bicycle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bicycle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/binoculars.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/binoculars.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/biohazard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/biohazard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bitcoin-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bitcoin-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/blender-phone.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/blender-phone.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/blender.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/blender.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/blog.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/blog.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bold.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bold.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bolt-lightning.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bolt-lightning.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bolt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bolt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bomb.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bomb.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bone.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bone.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bong.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bong.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-atlas.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book-atlas.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-bible.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book-bible.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-bookmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book-bookmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-journal-whills.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book-journal-whills.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-open-reader.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book-open-reader.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-quran.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book-quran.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book-skull.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book-skull.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/book.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/book.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bookmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bookmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/border-all.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/border-all.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/border-none.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/border-none.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/border-top-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/border-top-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bore-hole.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bore-hole.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bottle-droplet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bottle-droplet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bottle-water.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bottle-water.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bowl-food.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bowl-food.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bowl-rice.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bowl-rice.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bowling-ball.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bowling-ball.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/box-archive.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/box-archive.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/box-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/box-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/box-tissue.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/box-tissue.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/box.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/box.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/boxes-packing.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/boxes-packing.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/boxes-stacked.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/boxes-stacked.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/braille.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/braille.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/brain.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/brain.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/brazilian-real-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/brazilian-real-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bread-slice.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bread-slice.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bridge-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bridge-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bridge-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bridge-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge-water.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bridge-water.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bridge.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bridge.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/briefcase-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/briefcase-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/briefcase.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/briefcase.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/broom-ball.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/broom-ball.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/broom.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/broom.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/brush.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/brush.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bucket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bucket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bug-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bug-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bug.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bug.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bugs.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bugs.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-circle-arrow-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-circle-arrow-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-columns.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-columns.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-flag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-flag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-ngo.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-ngo.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-shield.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-shield.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-un.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-un.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building-wheat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building-wheat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/building.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/building.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bullhorn.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bullhorn.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bullseye.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bullseye.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/burger.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/burger.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/burst.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/burst.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bus-simple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bus-simple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/bus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/bus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/business-time.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/business-time.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/c.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/c.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cake-candles.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cake-candles.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calculator.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/calculator.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/calendar-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-day.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/calendar-day.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-days.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/calendar-days.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/calendar-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/calendar-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-week.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/calendar-week.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/calendar-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/calendar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/calendar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/camera-retro.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/camera-retro.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/camera-rotate.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/camera-rotate.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/camera.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/camera.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/campground.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/campground.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/candy-cane.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/candy-cane.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cannabis.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cannabis.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/capsules.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/capsules.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-battery.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/car-battery.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-burst.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/car-burst.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-on.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/car-on.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-rear.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/car-rear.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-side.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/car-side.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car-tunnel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/car-tunnel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/car.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/car.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caravan.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/caravan.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caret-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/caret-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caret-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/caret-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caret-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/caret-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/caret-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/caret-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/carrot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/carrot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-arrow-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cart-arrow-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-flatbed-suitcase.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cart-flatbed-suitcase.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-flatbed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cart-flatbed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cart-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cart-shopping.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cart-shopping.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cash-register.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cash-register.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cedi-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cedi-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cent-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cent-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/certificate.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/certificate.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chair.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chair.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chalkboard-user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chalkboard-user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chalkboard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chalkboard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/champagne-glasses.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/champagne-glasses.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/charging-station.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/charging-station.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-area.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chart-area.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-bar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chart-bar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-column.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chart-column.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-gantt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chart-gantt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chart-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-pie.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chart-pie.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chart-simple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chart-simple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/check-double.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/check-double.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/check-to-slot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/check-to-slot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cheese.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cheese.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-bishop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chess-bishop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-board.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chess-board.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-king.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chess-king.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-knight.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chess-knight.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-pawn.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chess-pawn.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-queen.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chess-queen.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess-rook.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chess-rook.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chess.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chess.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chevron-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chevron-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chevron-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chevron-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chevron-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chevron-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/chevron-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/chevron-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/child-dress.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/child-dress.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/child-reaching.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/child-reaching.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/child-rifle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/child-rifle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/child.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/child.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/children.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/children.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/church.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/church.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-arrow-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-arrow-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-arrow-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-arrow-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-arrow-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-chevron-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-chevron-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-chevron-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-chevron-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-chevron-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-dollar-to-slot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-dollar-to-slot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-dot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-dot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-h.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-h.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-half-stroke.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-half-stroke.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-info.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-info.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-nodes.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-nodes.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-notch.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-notch.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-pause.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-pause.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-play.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-play.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-question.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-question.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-radiation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-radiation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-stop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-stop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/circle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/circle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/city.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/city.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clapperboard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clapperboard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clipboard-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard-list.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clipboard-list.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard-question.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clipboard-question.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard-user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clipboard-user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clipboard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clipboard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clock-rotate-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clock-rotate-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clone.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clone.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/closed-captioning.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/closed-captioning.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-arrow-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-arrow-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-arrow-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-arrow-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-bolt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-bolt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-meatball.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-meatball.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-moon-rain.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-moon-rain.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-moon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-moon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-rain.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-rain.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-showers-heavy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-showers-heavy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-showers-water.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-showers-water.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-sun-rain.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-sun-rain.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud-sun.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud-sun.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cloud.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cloud.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/clover.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/clover.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-branch.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/code-branch.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-commit.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/code-commit.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-compare.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/code-compare.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-fork.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/code-fork.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-merge.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/code-merge.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code-pull-request.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/code-pull-request.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/code.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/code.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/coins.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/coins.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/colon-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/colon-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-dollar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/comment-dollar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-dots.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/comment-dots.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/comment-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/comment-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment-sms.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/comment-sms.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comment.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/comment.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comments-dollar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/comments-dollar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/comments.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/comments.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/compact-disc.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/compact-disc.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/compass-drafting.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/compass-drafting.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/compass.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/compass.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/compress.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/compress.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/computer-mouse.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/computer-mouse.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/computer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/computer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cookie-bite.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cookie-bite.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cookie.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cookie.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/copy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/copy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/copyright.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/copyright.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/couch.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/couch.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cow.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cow.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/credit-card.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/credit-card.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crop-simple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/crop-simple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/crop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cross.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cross.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crosshairs.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/crosshairs.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crow.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/crow.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crown.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/crown.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/crutch.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/crutch.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cruzeiro-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cruzeiro-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cube.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cube.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cubes-stacked.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cubes-stacked.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/cubes.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/cubes.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/d.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/d.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/database.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/database.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/delete-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/delete-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/democrat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/democrat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/desktop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/desktop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dharmachakra.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dharmachakra.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diagram-next.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/diagram-next.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diagram-predecessor.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/diagram-predecessor.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diagram-project.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/diagram-project.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diagram-successor.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/diagram-successor.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diamond-turn-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/diamond-turn-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/diamond.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/diamond.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-d20.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dice-d20.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-d6.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dice-d6.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-five.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dice-five.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-four.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dice-four.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-one.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dice-one.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-six.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dice-six.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-three.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dice-three.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice-two.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dice-two.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dice.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dice.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/disease.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/disease.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/display.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/display.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/divide.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/divide.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dna.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dna.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dog.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dog.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dollar-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dollar-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dolly.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dolly.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dong-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dong-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/door-closed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/door-closed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/door-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/door-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dove.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dove.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/down-left-and-up-right-to-center.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/down-left-and-up-right-to-center.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/down-long.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/down-long.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/download.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/download.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dragon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dragon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/draw-polygon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/draw-polygon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/droplet-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/droplet-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/droplet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/droplet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/drum-steelpan.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/drum-steelpan.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/drum.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/drum.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/drumstick-bite.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/drumstick-bite.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dumbbell.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dumbbell.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dumpster-fire.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dumpster-fire.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dumpster.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dumpster.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/dungeon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/dungeon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/e.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/e.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ear-deaf.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ear-deaf.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ear-listen.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ear-listen.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-africa.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/earth-africa.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-americas.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/earth-americas.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-asia.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/earth-asia.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-europe.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/earth-europe.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/earth-oceania.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/earth-oceania.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/egg.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/egg.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eject.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/eject.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/elevator.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/elevator.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ellipsis-vertical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ellipsis-vertical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ellipsis.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ellipsis.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelope-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/envelope-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelope-open-text.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/envelope-open-text.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelope-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/envelope-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelope.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/envelope.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/envelopes-bulk.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/envelopes-bulk.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/equals.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/equals.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eraser.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/eraser.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ethernet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ethernet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/euro-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/euro-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/expand.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/expand.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/explosion.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/explosion.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eye-dropper.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/eye-dropper.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eye-low-vision.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/eye-low-vision.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eye-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/eye-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/eye.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/eye.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/f.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/f.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-angry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-angry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-dizzy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-dizzy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-flushed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-flushed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-frown-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-frown-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-frown.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-frown.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grimace.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grimace.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-beam-sweat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-beam-sweat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-beam.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-beam.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-hearts.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-hearts.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-squint-tears.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-squint-tears.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-squint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-squint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-stars.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-stars.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-tears.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-tears.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-tongue-squint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-tongue-squint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-tongue-wink.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-tongue-wink.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-tongue.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-tongue.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-wide.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-wide.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin-wink.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin-wink.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-grin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-grin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-kiss-beam.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-kiss-beam.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-kiss-wink-heart.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-kiss-wink-heart.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-kiss.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-kiss.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-laugh-beam.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-laugh-beam.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-laugh-squint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-laugh-squint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-laugh-wink.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-laugh-wink.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-laugh.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-laugh.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-meh-blank.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-meh-blank.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-meh.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-meh.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-rolling-eyes.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-rolling-eyes.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-sad-cry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-sad-cry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-sad-tear.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-sad-tear.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-smile-beam.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-smile-beam.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-smile-wink.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-smile-wink.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-smile.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-smile.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-surprise.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-surprise.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/face-tired.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/face-tired.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fan.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fan.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/faucet-drip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/faucet-drip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/faucet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/faucet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fax.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fax.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/feather-pointed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/feather-pointed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/feather.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/feather.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ferry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ferry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-arrow-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-arrow-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-arrow-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-arrow-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-audio.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-audio.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-circle-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-circle-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-question.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-circle-question.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-code.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-code.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-contract.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-contract.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-csv.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-csv.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-excel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-excel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-export.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-export.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-image.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-image.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-import.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-import.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-invoice-dollar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-invoice-dollar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-invoice.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-invoice.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-lines.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-lines.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-pdf.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-pdf.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-pen.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-pen.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-powerpoint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-powerpoint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-prescription.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-prescription.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-shield.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-shield.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-signature.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-signature.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-video.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-video.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-waveform.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-waveform.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-word.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-word.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file-zipper.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file-zipper.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/file.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/file.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fill-drip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fill-drip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fill.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fill.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/film.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/film.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/filter-circle-dollar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/filter-circle-dollar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/filter-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/filter-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/filter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/filter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fingerprint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fingerprint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire-burner.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fire-burner.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire-extinguisher.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fire-extinguisher.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire-flame-curved.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fire-flame-curved.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire-flame-simple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fire-flame-simple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fire.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fire.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fish-fins.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fish-fins.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/fish.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/fish.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flag-checkered.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/flag-checkered.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flag-usa.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/flag-usa.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/flag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flask-vial.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/flask-vial.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/flask.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/flask.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/floppy-disk.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/floppy-disk.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/florin-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/florin-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-closed.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/folder-closed.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/folder-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/folder-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/folder-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder-tree.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/folder-tree.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/folder.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/folder.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/font-awesome.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/font-awesome.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/font.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/font.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/football.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/football.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/forward-fast.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/forward-fast.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/forward-step.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/forward-step.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/forward.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/forward.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/franc-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/franc-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/frog.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/frog.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/futbol.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/futbol.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/g.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/g.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gamepad.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gamepad.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gas-pump.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gas-pump.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gauge-high.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gauge-high.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gauge-simple-high.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gauge-simple-high.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gauge-simple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gauge-simple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gauge.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gauge.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gavel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gavel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gear.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gear.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gears.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gears.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gem.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gem.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/genderless.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/genderless.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ghost.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ghost.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gift.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gift.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gifts.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gifts.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/glass-water-droplet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/glass-water-droplet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/glass-water.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/glass-water.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/glasses.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/glasses.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/globe.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/globe.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/golf-ball-tee.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/golf-ball-tee.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gopuram.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gopuram.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/graduation-cap.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/graduation-cap.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/greater-than-equal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/greater-than-equal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/greater-than.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/greater-than.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/grip-lines-vertical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/grip-lines-vertical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/grip-lines.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/grip-lines.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/grip-vertical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/grip-vertical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/grip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/grip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/group-arrows-rotate.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/group-arrows-rotate.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/guarani-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/guarani-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/guitar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/guitar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/gun.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/gun.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/h.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/h.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hammer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hammer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hamsa.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hamsa.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-back-fist.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-back-fist.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-dots.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-dots.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-fist.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-fist.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-dollar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-holding-dollar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-droplet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-holding-droplet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-hand.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-holding-hand.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-heart.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-holding-heart.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-holding-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-holding.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-holding.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-lizard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-lizard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-middle-finger.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-middle-finger.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-peace.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-peace.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-point-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-point-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-point-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-point-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-point-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-point-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-point-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-point-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-pointer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-pointer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-scissors.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-scissors.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-sparkles.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-sparkles.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand-spock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand-spock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hand.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hand.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handcuffs.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/handcuffs.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-asl-interpreting.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hands-asl-interpreting.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-bound.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hands-bound.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-bubbles.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hands-bubbles.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-clapping.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hands-clapping.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-holding-child.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hands-holding-child.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-holding-circle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hands-holding-circle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-holding.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hands-holding.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands-praying.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hands-praying.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hands.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hands.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake-angle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/handshake-angle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake-simple-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/handshake-simple-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake-simple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/handshake-simple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/handshake-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/handshake.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/handshake.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hanukiah.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hanukiah.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hard-drive.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hard-drive.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hashtag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hashtag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hat-cowboy-side.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hat-cowboy-side.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hat-cowboy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hat-cowboy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hat-wizard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hat-wizard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/head-side-cough-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/head-side-cough-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/head-side-cough.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/head-side-cough.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/head-side-mask.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/head-side-mask.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/head-side-virus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/head-side-virus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heading.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heading.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/headphones-simple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/headphones-simple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/headphones.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/headphones.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/headset.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/headset.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-bolt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heart-circle-bolt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heart-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heart-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heart-circle-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heart-circle-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heart-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-crack.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heart-crack.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart-pulse.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heart-pulse.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/heart.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/heart.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/helicopter-symbol.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/helicopter-symbol.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/helicopter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/helicopter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/helmet-safety.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/helmet-safety.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/helmet-un.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/helmet-un.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/highlighter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/highlighter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hill-avalanche.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hill-avalanche.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hill-rockslide.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hill-rockslide.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hippo.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hippo.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hockey-puck.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hockey-puck.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/holly-berry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/holly-berry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/horse-head.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/horse-head.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/horse.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/horse.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hospital-user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hospital-user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hospital.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hospital.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hot-tub-person.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hot-tub-person.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hotdog.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hotdog.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hotel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hotel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hourglass-empty.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hourglass-empty.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hourglass-end.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hourglass-end.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hourglass-start.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hourglass-start.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hourglass.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hourglass.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney-crack.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-chimney-crack.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-chimney-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney-user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-chimney-user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney-window.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-chimney-window.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-chimney.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-chimney.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-crack.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-crack.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-fire.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-fire.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-flag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-flag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-flood-water-circle-arrow-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-flood-water-circle-arrow-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-flood-water.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-flood-water.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-laptop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-laptop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-medical-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-medical-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-medical-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical-flag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-medical-flag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-signal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-signal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-tsunami.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-tsunami.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house-user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house-user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/house.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/house.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hryvnia-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hryvnia-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/hurricane.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/hurricane.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/i-cursor.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/i-cursor.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/i.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/i.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ice-cream.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ice-cream.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/icicles.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/icicles.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/icons.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/icons.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/id-badge.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/id-badge.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/id-card-clip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/id-card-clip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/id-card.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/id-card.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/igloo.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/igloo.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/image-portrait.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/image-portrait.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/image.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/image.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/images.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/images.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/inbox.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/inbox.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/indent.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/indent.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/indian-rupee-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/indian-rupee-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/industry.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/industry.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/infinity.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/infinity.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/info.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/info.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/italic.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/italic.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/j.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/j.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jar-wheat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/jar-wheat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/jar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jedi.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/jedi.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jet-fighter-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/jet-fighter-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jet-fighter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/jet-fighter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/joint.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/joint.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/jug-detergent.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/jug-detergent.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/k.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/k.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kaaba.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/kaaba.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/key.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/key.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/keyboard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/keyboard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/khanda.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/khanda.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kip-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/kip-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kit-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/kit-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kitchen-set.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/kitchen-set.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/kiwi-bird.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/kiwi-bird.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/l.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/l.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/land-mine-on.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/land-mine-on.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/landmark-dome.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/landmark-dome.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/landmark-flag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/landmark-flag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/landmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/landmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/language.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/language.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/laptop-code.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/laptop-code.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/laptop-file.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/laptop-file.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/laptop-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/laptop-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/laptop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/laptop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lari-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/lari-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/layer-group.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/layer-group.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/leaf.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/leaf.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/left-long.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/left-long.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/left-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/left-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lemon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/lemon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/less-than-equal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/less-than-equal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/less-than.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/less-than.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/life-ring.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/life-ring.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lightbulb.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/lightbulb.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lines-leaning.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/lines-leaning.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/link-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/link-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/link.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/link.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lira-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/lira-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/list-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/list-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/list-ol.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/list-ol.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/list-ul.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/list-ul.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/list.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/list.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/litecoin-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/litecoin-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-arrow.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/location-arrow.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-crosshairs.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/location-crosshairs.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-dot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/location-dot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-pin-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/location-pin-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/location-pin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/location-pin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lock-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/lock-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/locust.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/locust.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lungs-virus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/lungs-virus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/lungs.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/lungs.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/m.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/m.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/magnet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-arrow-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/magnifying-glass-arrow-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-chart.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/magnifying-glass-chart.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-dollar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/magnifying-glass-dollar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-location.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/magnifying-glass-location.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/magnifying-glass-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/magnifying-glass-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/magnifying-glass.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/magnifying-glass.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/manat-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/manat-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/map-location-dot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/map-location-dot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/map-location.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/map-location.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/map-pin.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/map-pin.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/map.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/map.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/marker.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/marker.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-and-venus-burst.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mars-and-venus-burst.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-and-venus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mars-and-venus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-double.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mars-double.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-stroke-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mars-stroke-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-stroke-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mars-stroke-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars-stroke.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mars-stroke.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mars.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mars.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/martini-glass-citrus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/martini-glass-citrus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/martini-glass-empty.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/martini-glass-empty.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/martini-glass.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/martini-glass.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mask-face.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mask-face.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mask-ventilator.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mask-ventilator.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mask.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mask.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/masks-theater.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/masks-theater.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mattress-pillow.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mattress-pillow.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/maximize.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/maximize.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/medal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/medal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/memory.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/memory.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/menorah.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/menorah.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mercury.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mercury.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/message.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/message.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/meteor.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/meteor.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microchip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/microchip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microphone-lines-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/microphone-lines-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microphone-lines.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/microphone-lines.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microphone-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/microphone-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microphone.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/microphone.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/microscope.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/microscope.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mill-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mill-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/minimize.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/minimize.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mitten.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mitten.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile-button.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mobile-button.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile-retro.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mobile-retro.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile-screen-button.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mobile-screen-button.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile-screen.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mobile-screen.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mobile.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mobile.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-1-wave.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-bill-1-wave.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-1.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-bill-1.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-transfer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-bill-transfer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-trend-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-bill-trend-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-wave.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-bill-wave.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill-wheat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-bill-wheat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bill.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-bill.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-bills.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-bills.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-check-dollar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-check-dollar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/money-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/money-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/monument.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/monument.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/moon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/moon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mortar-pestle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mortar-pestle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mosque.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mosque.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mosquito-net.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mosquito-net.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mosquito.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mosquito.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/motorcycle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/motorcycle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mound.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mound.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mountain-city.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mountain-city.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mountain-sun.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mountain-sun.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mountain.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mountain.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mug-hot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mug-hot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/mug-saucer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/mug-saucer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/music.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/music.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/n.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/n.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/naira-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/naira-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/network-wired.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/network-wired.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/neuter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/neuter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/newspaper.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/newspaper.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/not-equal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/not-equal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/note-sticky.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/note-sticky.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/notes-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/notes-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/o.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/o.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/object-group.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/object-group.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/object-ungroup.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/object-ungroup.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/oil-can.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/oil-can.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/oil-well.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/oil-well.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/om.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/om.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/otter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/otter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/outdent.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/outdent.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/p.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/p.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pager.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pager.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paint-roller.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/paint-roller.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paintbrush.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/paintbrush.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/palette.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/palette.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pallet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pallet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/panorama.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/panorama.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paper-plane.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/paper-plane.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paperclip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/paperclip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/parachute-box.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/parachute-box.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paragraph.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/paragraph.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/passport.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/passport.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paste.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/paste.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pause.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pause.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/paw.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/paw.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/peace.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/peace.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-clip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pen-clip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-fancy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pen-fancy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-nib.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pen-nib.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-ruler.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pen-ruler.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen-to-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pen-to-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pen.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pen.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pencil.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pencil.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-arrows-left-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/people-arrows-left-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-carry-box.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/people-carry-box.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-group.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/people-group.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/people-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-pulling.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/people-pulling.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-robbery.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/people-robbery.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/people-roof.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/people-roof.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pepper-hot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pepper-hot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/percent.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/percent.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-arrow-down-to-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-arrow-down-to-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-arrow-up-from-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-arrow-up-from-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-biking.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-biking.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-booth.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-booth.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-breastfeeding.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-breastfeeding.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-burst.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-burst.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-cane.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-cane.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-chalkboard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-chalkboard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-circle-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-circle-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-question.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-circle-question.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-digging.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-digging.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-dots-from-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-dots-from-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-dress-burst.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-dress-burst.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-dress.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-dress.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-drowning.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-drowning.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-falling-burst.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-falling-burst.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-falling.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-falling.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-half-dress.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-half-dress.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-harassing.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-harassing.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-hiking.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-hiking.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-military-pointing.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-military-pointing.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-military-rifle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-military-rifle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-military-to-person.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-military-to-person.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-praying.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-praying.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-pregnant.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-pregnant.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-rays.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-rays.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-rifle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-rifle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-running.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-running.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-shelter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-shelter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-skating.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-skating.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-skiing-nordic.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-skiing-nordic.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-skiing.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-skiing.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-snowboarding.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-snowboarding.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-swimming.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-swimming.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-through-window.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-through-window.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-arrow-loop-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-walking-arrow-loop-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-arrow-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-walking-arrow-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-dashed-line-arrow-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-walking-dashed-line-arrow-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-luggage.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-walking-luggage.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking-with-cane.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-walking-with-cane.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person-walking.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person-walking.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/person.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/person.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/peseta-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/peseta-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/peso-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/peso-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/phone-flip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/phone-flip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/phone-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/phone-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/phone-volume.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/phone-volume.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/phone.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/phone.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/photo-film.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/photo-film.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/piggy-bank.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/piggy-bank.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pills.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pills.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pizza-slice.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pizza-slice.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/place-of-worship.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/place-of-worship.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-arrival.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plane-arrival.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plane-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plane-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plane-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-departure.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plane-departure.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plane-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plane-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plane-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plane.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plane.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plant-wilt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plant-wilt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plate-wheat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plate-wheat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/play.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/play.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-bolt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plug-circle-bolt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plug-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plug-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plug-circle-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plug-circle-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plug-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plug.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plug.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plus-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plus-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/podcast.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/podcast.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/poo-storm.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/poo-storm.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/poo.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/poo.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/poop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/poop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/power-off.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/power-off.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/prescription-bottle-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/prescription-bottle-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/prescription-bottle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/prescription-bottle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/prescription.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/prescription.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/print.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/print.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pump-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pump-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/pump-soap.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/pump-soap.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/puzzle-piece.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/puzzle-piece.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/q.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/q.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/qrcode.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/qrcode.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/question.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/question.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/quote-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/quote-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/quote-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/quote-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/r.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/r.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/radiation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/radiation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/radio.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/radio.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rainbow.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rainbow.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ranking-star.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ranking-star.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/receipt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/receipt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/record-vinyl.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/record-vinyl.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rectangle-ad.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rectangle-ad.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rectangle-list.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rectangle-list.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rectangle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rectangle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/recycle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/recycle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/registered.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/registered.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/repeat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/repeat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/reply-all.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/reply-all.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/reply.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/reply.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/republican.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/republican.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/restroom.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/restroom.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/retweet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/retweet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ribbon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ribbon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/right-from-bracket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/right-from-bracket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/right-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/right-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/right-long.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/right-long.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/right-to-bracket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/right-to-bracket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ring.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ring.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-barrier.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/road-barrier.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-bridge.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/road-bridge.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/road-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/road-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/road-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/road-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road-spikes.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/road-spikes.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/road.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/road.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/robot.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/robot.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rocket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rocket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rotate-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rotate-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rotate-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rotate-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rotate.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rotate.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/route.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/route.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rss.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rss.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruble-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ruble-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rug.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rug.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruler-combined.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ruler-combined.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruler-horizontal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ruler-horizontal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruler-vertical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ruler-vertical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ruler.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ruler.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rupee-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rupee-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/rupiah-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/rupiah-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/s.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/s.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sack-dollar.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sack-dollar.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sack-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sack-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sailboat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sailboat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/satellite-dish.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/satellite-dish.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/satellite.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/satellite.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scale-balanced.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/scale-balanced.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scale-unbalanced-flip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/scale-unbalanced-flip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scale-unbalanced.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/scale-unbalanced.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/school-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/school-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-circle-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/school-circle-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-flag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/school-flag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/school-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/school.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/school.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scissors.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/scissors.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/screwdriver-wrench.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/screwdriver-wrench.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/screwdriver.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/screwdriver.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scroll-torah.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/scroll-torah.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/scroll.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/scroll.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sd-card.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sd-card.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/section.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/section.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/seedling.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/seedling.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/server.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/server.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shapes.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shapes.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/share-from-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/share-from-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/share-nodes.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/share-nodes.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/share.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/share.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sheet-plastic.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sheet-plastic.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shekel-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shekel-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-cat.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shield-cat.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-dog.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shield-dog.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-halved.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shield-halved.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-heart.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shield-heart.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield-virus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shield-virus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shield.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shield.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ship.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ship.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shirt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shirt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shoe-prints.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shoe-prints.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shop-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shop-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shop-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shop-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shower.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shower.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shrimp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shrimp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shuffle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shuffle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/shuttle-space.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/shuttle-space.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sign-hanging.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sign-hanging.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/signal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/signal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/signature.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/signature.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/signs-post.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/signs-post.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sim-card.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sim-card.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sink.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sink.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sitemap.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sitemap.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/skull-crossbones.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/skull-crossbones.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/skull.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/skull.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sleigh.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sleigh.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sliders.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sliders.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/smog.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/smog.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/smoking.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/smoking.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/snowflake.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/snowflake.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/snowman.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/snowman.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/snowplow.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/snowplow.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/soap.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/soap.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/socks.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/socks.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/solar-panel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/solar-panel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sort-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sort-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sort-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sort-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sort.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sort.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spa.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/spa.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spaghetti-monster-flying.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/spaghetti-monster-flying.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spell-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/spell-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spider.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/spider.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spinner.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/spinner.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/splotch.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/splotch.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spoon.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/spoon.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spray-can-sparkles.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/spray-can-sparkles.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/spray-can.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/spray-can.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-arrow-up-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-arrow-up-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-caret-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-caret-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-caret-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-caret-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-caret-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-caret-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-caret-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-caret-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-envelope.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-envelope.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-full.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-full.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-h.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-h.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-nfi.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-nfi.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-parking.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-parking.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-pen.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-pen.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-person-confined.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-person-confined.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-phone-flip.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-phone-flip.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-phone.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-phone.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-poll-horizontal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-poll-horizontal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-poll-vertical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-poll-vertical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-root-variable.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-root-variable.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-rss.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-rss.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-share-nodes.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-share-nodes.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-up-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-up-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-virus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-virus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/staff-aesculapius.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/staff-aesculapius.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stairs.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/stairs.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stamp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/stamp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-and-crescent.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/star-and-crescent.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-half-stroke.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/star-half-stroke.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-half.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/star-half.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-of-david.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/star-of-david.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star-of-life.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/star-of-life.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/star.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/star.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sterling-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sterling-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stethoscope.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/stethoscope.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stop.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/stop.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stopwatch-20.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/stopwatch-20.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stopwatch.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/stopwatch.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/store-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/store-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/store.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/store.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/street-view.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/street-view.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/strikethrough.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/strikethrough.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/stroopwafel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/stroopwafel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/subscript.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/subscript.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/suitcase-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/suitcase-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/suitcase-rolling.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/suitcase-rolling.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/suitcase.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/suitcase.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sun-plant-wilt.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sun-plant-wilt.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/sun.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/sun.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/superscript.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/superscript.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/swatchbook.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/swatchbook.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/synagogue.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/synagogue.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/syringe.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/syringe.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/t.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/t.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-cells-large.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/table-cells-large.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-cells.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/table-cells.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-columns.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/table-columns.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-list.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/table-list.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table-tennis-paddle-ball.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/table-tennis-paddle-ball.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/table.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/table.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tablet-button.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tablet-button.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tablet-screen-button.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tablet-screen-button.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tablet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tablet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tablets.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tablets.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tachograph-digital.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tachograph-digital.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tags.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tags.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tape.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tape.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tarp-droplet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tarp-droplet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tarp.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tarp.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/taxi.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/taxi.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/teeth-open.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/teeth-open.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/teeth.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/teeth.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-arrow-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/temperature-arrow-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-arrow-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/temperature-arrow-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-empty.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/temperature-empty.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-full.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/temperature-full.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-half.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/temperature-half.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-high.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/temperature-high.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-low.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/temperature-low.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-quarter.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/temperature-quarter.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/temperature-three-quarters.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/temperature-three-quarters.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tenge-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tenge-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent-arrow-down-to-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tent-arrow-down-to-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent-arrow-left-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tent-arrow-left-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent-arrow-turn-left.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tent-arrow-turn-left.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent-arrows-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tent-arrows-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tent.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tent.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tents.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tents.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/terminal.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/terminal.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/text-height.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/text-height.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/text-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/text-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/text-width.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/text-width.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/thermometer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/thermometer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/thumbs-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/thumbs-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/thumbs-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/thumbs-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/thumbtack.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/thumbtack.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ticket-simple.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ticket-simple.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/ticket.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/ticket.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/timeline.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/timeline.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toggle-off.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/toggle-off.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toggle-on.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/toggle-on.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilet-paper-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/toilet-paper-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilet-paper.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/toilet-paper.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilet-portable.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/toilet-portable.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/toilet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toilets-portable.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/toilets-portable.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/toolbox.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/toolbox.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tooth.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tooth.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/torii-gate.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/torii-gate.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tornado.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tornado.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tower-broadcast.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tower-broadcast.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tower-cell.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tower-cell.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tower-observation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tower-observation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tractor.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tractor.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trademark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/trademark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/traffic-light.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/traffic-light.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trailer.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/trailer.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/train-subway.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/train-subway.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/train-tram.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/train-tram.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/train.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/train.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/transgender.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/transgender.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trash-arrow-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/trash-arrow-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trash-can-arrow-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/trash-can-arrow-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trash-can.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/trash-can.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/trash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tree-city.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tree-city.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tree.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tree.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/triangle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/triangle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trophy.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/trophy.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trowel-bricks.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/trowel-bricks.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/trowel.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/trowel.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-arrow-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-arrow-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-droplet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-droplet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-fast.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-fast.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-field-un.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-field-un.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-field.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-field.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-front.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-front.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-medical.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-medical.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-monster.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-monster.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-moving.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-moving.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-pickup.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-pickup.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-plane.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-plane.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck-ramp-box.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck-ramp-box.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/truck.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/truck.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tty.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tty.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/turkish-lira-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/turkish-lira-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/turn-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/turn-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/turn-up.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/turn-up.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/tv.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/tv.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/u.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/u.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/umbrella-beach.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/umbrella-beach.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/umbrella.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/umbrella.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/underline.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/underline.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/universal-access.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/universal-access.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/unlock-keyhole.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/unlock-keyhole.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/unlock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/unlock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-down-left-right.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/up-down-left-right.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-down.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/up-down.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-long.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/up-long.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-right-and-down-left-from-center.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/up-right-and-down-left-from-center.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/up-right-from-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/up-right-from-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/upload.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/upload.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-astronaut.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-astronaut.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-clock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-clock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-doctor.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-doctor.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-gear.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-gear.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-graduate.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-graduate.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-group.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-group.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-injured.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-injured.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-large-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-large-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-large.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-large.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-lock.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-lock.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-minus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-minus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-ninja.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-ninja.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-nurse.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-nurse.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-pen.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-pen.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-plus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-plus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-secret.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-secret.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-shield.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-shield.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-tag.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-tag.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-tie.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-tie.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/user.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/user.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-between-lines.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/users-between-lines.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-gear.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/users-gear.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-line.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/users-line.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-rays.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/users-rays.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-rectangle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/users-rectangle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/users-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users-viewfinder.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/users-viewfinder.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/users.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/users.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/utensils.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/utensils.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/v.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/v.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/van-shuttle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/van-shuttle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vault.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vault.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vector-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vector-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/venus-double.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/venus-double.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/venus-mars.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/venus-mars.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/venus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/venus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vest-patches.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vest-patches.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vest.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vest.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vial-circle-check.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vial-circle-check.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vial-virus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vial-virus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vial.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vial.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vials.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vials.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/video-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/video-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/video.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/video.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vihara.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vihara.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/virus-covid-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/virus-covid-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/virus-covid.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/virus-covid.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/virus-slash.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/virus-slash.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/virus.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/virus.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/viruses.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/viruses.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/voicemail.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/voicemail.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volcano.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/volcano.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volleyball.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/volleyball.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volume-high.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/volume-high.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volume-low.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/volume-low.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volume-off.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/volume-off.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/volume-xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/volume-xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/vr-cardboard.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/vr-cardboard.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/w.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/w.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/walkie-talkie.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/walkie-talkie.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wallet.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wallet.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wand-magic-sparkles.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wand-magic-sparkles.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wand-magic.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wand-magic.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wand-sparkles.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wand-sparkles.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/warehouse.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/warehouse.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/water-ladder.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/water-ladder.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/water.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/water.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wave-square.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wave-square.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/weight-hanging.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/weight-hanging.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/weight-scale.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/weight-scale.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wheat-awn-circle-exclamation.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wheat-awn-circle-exclamation.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wheat-awn.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wheat-awn.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wheelchair-move.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wheelchair-move.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wheelchair.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wheelchair.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/whiskey-glass.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/whiskey-glass.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wifi.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wifi.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wind.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wind.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/window-maximize.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/window-maximize.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/window-minimize.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/window-minimize.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/window-restore.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/window-restore.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wine-bottle.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wine-bottle.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wine-glass-empty.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wine-glass-empty.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wine-glass.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wine-glass.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/won-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/won-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/worm.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/worm.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/wrench.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/wrench.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/x-ray.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/x-ray.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/x.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/x.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/xmark.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/xmark.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/xmarks-lines.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/xmarks-lines.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/y.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/y.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/yen-sign.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/yen-sign.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/yin-yang.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/yin-yang.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/svgs/solid/z.svg",
- "PackagePath": "staticwebassets/lib/FontAwesome/svgs/solid/z.svg"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-brands-400.ttf",
- "PackagePath": "staticwebassets/lib/FontAwesome/webfonts/fa-brands-400.ttf"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-brands-400.woff2",
- "PackagePath": "staticwebassets/lib/FontAwesome/webfonts/fa-brands-400.woff2"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-regular-400.ttf",
- "PackagePath": "staticwebassets/lib/FontAwesome/webfonts/fa-regular-400.ttf"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-regular-400.woff2",
- "PackagePath": "staticwebassets/lib/FontAwesome/webfonts/fa-regular-400.woff2"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-solid-900.ttf",
- "PackagePath": "staticwebassets/lib/FontAwesome/webfonts/fa-solid-900.ttf"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-solid-900.woff2",
- "PackagePath": "staticwebassets/lib/FontAwesome/webfonts/fa-solid-900.woff2"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-v4compatibility.ttf",
- "PackagePath": "staticwebassets/lib/FontAwesome/webfonts/fa-v4compatibility.ttf"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/FontAwesome/webfonts/fa-v4compatibility.woff2",
- "PackagePath": "staticwebassets/lib/FontAwesome/webfonts/fa-v4compatibility.woff2"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/LICENSE",
- "PackagePath": "staticwebassets/lib/bootstrap"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-grid.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-grid.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-grid.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-grid.min.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-grid.rtl.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-reboot.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-reboot.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-reboot.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-utilities.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-utilities.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-utilities.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap.min.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap.rtl.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap.rtl.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap.rtl.min.css"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.bundle.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.bundle.js.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.bundle.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.esm.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.esm.js.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.esm.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.esm.min.js.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.js.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
- "PackagePath": "staticwebassets/lib/bootstrap/dist/js/bootstrap.min.js.map"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
- "PackagePath": "staticwebassets/lib/jquery-validation-unobtrusive/LICENSE.txt"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
- "PackagePath": "staticwebassets/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
- "PackagePath": "staticwebassets/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/LICENSE.md",
- "PackagePath": "staticwebassets/lib/jquery-validation/LICENSE.md"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/dist/additional-methods.js",
- "PackagePath": "staticwebassets/lib/jquery-validation/dist/additional-methods.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
- "PackagePath": "staticwebassets/lib/jquery-validation/dist/additional-methods.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
- "PackagePath": "staticwebassets/lib/jquery-validation/dist/jquery.validate.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
- "PackagePath": "staticwebassets/lib/jquery-validation/dist/jquery.validate.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery/LICENSE.txt",
- "PackagePath": "staticwebassets/lib/jquery/LICENSE.txt"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery/dist/jquery.js",
- "PackagePath": "staticwebassets/lib/jquery/dist/jquery.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery/dist/jquery.min.js",
- "PackagePath": "staticwebassets/lib/jquery/dist/jquery.min.js"
- },
- {
- "Id": "/home/merlin/MyWebsite/wwwroot/lib/jquery/dist/jquery.min.map",
- "PackagePath": "staticwebassets/lib/jquery/dist/jquery.min.map"
- },
- {
- "Id": "obj/Debug/net7.0/staticwebassets/msbuild.MyWebsite.Microsoft.AspNetCore.StaticWebAssets.props",
- "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props"
- },
- {
- "Id": "obj/Debug/net7.0/staticwebassets/msbuild.build.MyWebsite.props",
- "PackagePath": "build\\MyWebsite.props"
- },
- {
- "Id": "obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.MyWebsite.props",
- "PackagePath": "buildMultiTargeting\\MyWebsite.props"
- },
- {
- "Id": "obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.MyWebsite.props",
- "PackagePath": "buildTransitive\\MyWebsite.props"
- }
- ],
- "ElementsToRemove": []
-}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.MyWebsite.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net7.0/staticwebassets/msbuild.MyWebsite.Microsoft.AspNetCore.StaticWebAssets.props
deleted file mode 100644
index ced83e1..0000000
--- a/obj/Debug/net7.0/staticwebassets/msbuild.MyWebsite.Microsoft.AspNetCore.StaticWebAssets.props
+++ /dev/null
@@ -1,34548 +0,0 @@
-
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- Content/Logo.png
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\Content\Logo.png))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- css/site.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\site.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- favicon.ico
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\favicon.ico))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- Fonts/JetBrainsMono-Regular.woff2
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\Fonts\JetBrainsMono-Regular.woff2))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- js/site.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\js\site.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-grid.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-grid.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-grid.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-grid.min.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.min.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-grid.rtl.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-reboot.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-reboot.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-reboot.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-reboot.min.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-reboot.rtl.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-utilities.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-utilities.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-utilities.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-utilities.min.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-utilities.rtl.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap.min.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.min.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap.rtl.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap.rtl.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap.rtl.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/css/bootstrap.rtl.min.css.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.bundle.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.bundle.js.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.js.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.bundle.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.bundle.min.js.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.esm.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.esm.js.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.js.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.esm.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.esm.min.js.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.min.js.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.js.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.js.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/dist/js/bootstrap.min.js.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.min.js.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/bootstrap/LICENSE
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\LICENSE))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/all.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\all.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/all.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\all.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/brands.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\brands.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/brands.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\brands.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/fontawesome.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\fontawesome.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/fontawesome.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\fontawesome.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/regular.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\regular.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/regular.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\regular.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/solid.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\solid.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/solid.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\solid.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/svg-with-js.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\svg-with-js.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/svg-with-js.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\svg-with-js.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/v4-font-face.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\v4-font-face.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/v4-font-face.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\v4-font-face.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/v4-shims.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\v4-shims.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/v4-shims.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\v4-shims.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/v5-font-face.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\v5-font-face.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/css/v5-font-face.min.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\css\v5-font-face.min.css))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/all.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\all.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/all.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\all.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/brands.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\brands.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/brands.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\brands.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/conflict-detection.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\conflict-detection.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/conflict-detection.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\conflict-detection.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/fontawesome.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\fontawesome.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/fontawesome.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\fontawesome.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/regular.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\regular.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/regular.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\regular.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/solid.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\solid.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/solid.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\solid.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/v4-shims.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\v4-shims.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/js/v4-shims.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\js\v4-shims.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/brands.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\brands.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/fontawesome.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\fontawesome.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/regular.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\regular.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/solid.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\solid.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/v4-shims.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\v4-shims.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_animated.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_animated.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_bordered-pulled.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_bordered-pulled.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_core.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_core.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_fixed-width.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_fixed-width.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_icons.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_icons.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_list.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_list.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_mixins.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_mixins.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_rotated-flipped.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_rotated-flipped.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_screen-reader.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_screen-reader.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_shims.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_shims.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_sizing.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_sizing.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_stacked.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_stacked.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/less/_variables.less
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\less\_variables.less))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/LICENSE.txt
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\LICENSE.txt))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/metadata/categories.yml
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\metadata\categories.yml))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/metadata/icons.json
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\metadata\icons.json))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/metadata/icons.yml
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\metadata\icons.yml))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/metadata/shims.json
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\metadata\shims.json))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/metadata/shims.yml
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\metadata\shims.yml))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/metadata/sponsors.yml
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\metadata\sponsors.yml))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/brands.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\brands.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/fontawesome.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\fontawesome.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/regular.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\regular.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/solid.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\solid.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/v4-shims.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\v4-shims.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_animated.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_animated.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_bordered-pulled.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_bordered-pulled.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_core.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_core.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_fixed-width.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_fixed-width.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_functions.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_functions.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_icons.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_icons.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_list.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_list.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_mixins.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_mixins.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_rotated-flipped.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_rotated-flipped.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_screen-reader.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_screen-reader.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_shims.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_shims.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_sizing.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_sizing.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_stacked.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_stacked.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/scss/_variables.scss
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\scss\_variables.scss))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/sprites/brands.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\sprites\brands.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/sprites/regular.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\sprites\regular.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/sprites/solid.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\sprites\solid.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/42-group.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\42-group.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/500px.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\500px.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/accessible-icon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\accessible-icon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/accusoft.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\accusoft.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/adn.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\adn.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/adversal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\adversal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/affiliatetheme.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\affiliatetheme.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/airbnb.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\airbnb.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/algolia.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\algolia.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/alipay.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\alipay.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/amazon-pay.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\amazon-pay.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/amazon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\amazon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/amilia.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\amilia.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/android.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\android.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/angellist.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\angellist.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/angrycreative.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\angrycreative.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/angular.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\angular.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/app-store-ios.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\app-store-ios.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/app-store.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\app-store.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/apper.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\apper.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/apple-pay.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\apple-pay.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/apple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\apple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/artstation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\artstation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/asymmetrik.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\asymmetrik.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/atlassian.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\atlassian.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/audible.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\audible.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/autoprefixer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\autoprefixer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/avianex.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\avianex.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/aviato.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\aviato.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/aws.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\aws.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bandcamp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bandcamp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/battle-net.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\battle-net.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/behance-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\behance-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/behance.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\behance.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bilibili.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bilibili.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bimobject.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bimobject.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bitbucket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bitbucket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bitcoin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bitcoin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bity.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bity.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/black-tie.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\black-tie.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/blackberry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\blackberry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/blogger-b.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\blogger-b.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/blogger.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\blogger.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bluetooth-b.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bluetooth-b.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bluetooth.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bluetooth.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bootstrap.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bootstrap.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/bots.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\bots.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/btc.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\btc.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/buffer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\buffer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/buromobelexperte.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\buromobelexperte.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/buy-n-large.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\buy-n-large.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/buysellads.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\buysellads.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/canadian-maple-leaf.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\canadian-maple-leaf.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-amazon-pay.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-amazon-pay.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-amex.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-amex.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-apple-pay.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-apple-pay.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-diners-club.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-diners-club.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-discover.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-discover.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-jcb.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-jcb.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-mastercard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-mastercard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-paypal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-paypal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-stripe.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-stripe.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cc-visa.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cc-visa.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/centercode.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\centercode.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/centos.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\centos.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/chrome.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\chrome.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/chromecast.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\chromecast.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cloudflare.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cloudflare.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cloudscale.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cloudscale.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cloudsmith.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cloudsmith.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cloudversify.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cloudversify.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cmplid.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cmplid.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/codepen.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\codepen.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/codiepie.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\codiepie.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/confluence.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\confluence.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/connectdevelop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\connectdevelop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/contao.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\contao.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cotton-bureau.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cotton-bureau.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cpanel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cpanel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-by.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-by.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-nc-eu.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-nc-eu.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-nc-jp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-nc-jp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-nc.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-nc.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-nd.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-nd.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-pd-alt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-pd-alt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-pd.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-pd.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-remix.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-remix.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-sa.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-sa.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-sampling-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-sampling-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-sampling.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-sampling.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-share.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-share.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons-zero.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons-zero.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/creative-commons.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\creative-commons.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/critical-role.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\critical-role.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/css3-alt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\css3-alt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/css3.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\css3.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/cuttlefish.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\cuttlefish.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/d-and-d-beyond.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\d-and-d-beyond.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/d-and-d.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\d-and-d.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/dailymotion.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\dailymotion.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/dashcube.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\dashcube.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/deezer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\deezer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/delicious.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\delicious.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/deploydog.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\deploydog.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/deskpro.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\deskpro.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/dev.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\dev.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/deviantart.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\deviantart.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/dhl.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\dhl.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/diaspora.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\diaspora.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/digg.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\digg.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/digital-ocean.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\digital-ocean.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/discord.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\discord.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/discourse.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\discourse.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/dochub.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\dochub.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/docker.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\docker.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/draft2digital.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\draft2digital.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/dribbble-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\dribbble-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/dribbble.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\dribbble.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/dropbox.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\dropbox.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/drupal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\drupal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/dyalog.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\dyalog.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/earlybirds.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\earlybirds.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ebay.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ebay.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/edge-legacy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\edge-legacy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/edge.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\edge.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/elementor.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\elementor.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ello.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ello.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ember.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ember.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/empire.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\empire.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/envira.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\envira.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/erlang.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\erlang.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ethereum.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ethereum.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/etsy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\etsy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/evernote.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\evernote.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/expeditedssl.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\expeditedssl.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/facebook-f.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\facebook-f.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/facebook-messenger.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\facebook-messenger.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/facebook-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\facebook-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/facebook.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\facebook.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/fantasy-flight-games.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\fantasy-flight-games.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/fedex.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\fedex.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/fedora.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\fedora.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/figma.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\figma.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/firefox-browser.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\firefox-browser.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/firefox.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\firefox.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/first-order-alt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\first-order-alt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/first-order.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\first-order.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/firstdraft.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\firstdraft.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/flickr.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\flickr.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/flipboard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\flipboard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/fly.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\fly.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/font-awesome.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\font-awesome.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/fonticons-fi.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\fonticons-fi.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/fonticons.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\fonticons.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/fort-awesome-alt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\fort-awesome-alt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/fort-awesome.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\fort-awesome.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/forumbee.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\forumbee.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/foursquare.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\foursquare.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/free-code-camp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\free-code-camp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/freebsd.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\freebsd.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/fulcrum.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\fulcrum.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/galactic-republic.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\galactic-republic.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/galactic-senate.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\galactic-senate.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/get-pocket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\get-pocket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/gg-circle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\gg-circle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/gg.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\gg.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/git-alt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\git-alt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/git-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\git-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/git.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\git.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/github-alt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\github-alt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/github-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\github-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/github.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\github.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/gitkraken.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\gitkraken.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/gitlab.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\gitlab.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/gitter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\gitter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/glide-g.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\glide-g.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/glide.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\glide.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/gofore.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\gofore.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/golang.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\golang.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/goodreads-g.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\goodreads-g.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/goodreads.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\goodreads.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/google-drive.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\google-drive.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/google-pay.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\google-pay.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/google-play.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\google-play.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/google-plus-g.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\google-plus-g.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/google-plus-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\google-plus-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/google-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\google-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/google-wallet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\google-wallet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/google.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\google.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/gratipay.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\gratipay.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/grav.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\grav.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/gripfire.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\gripfire.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/grunt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\grunt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/guilded.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\guilded.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/gulp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\gulp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hacker-news-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hacker-news-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hacker-news.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hacker-news.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hackerrank.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hackerrank.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hashnode.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hashnode.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hips.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hips.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hire-a-helper.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hire-a-helper.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hive.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hive.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hooli.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hooli.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hornbill.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hornbill.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hotjar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hotjar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/houzz.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\houzz.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/html5.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\html5.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/hubspot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\hubspot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ideal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ideal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/imdb.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\imdb.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/instagram-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\instagram-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/instagram.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\instagram.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/instalod.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\instalod.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/intercom.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\intercom.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/internet-explorer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\internet-explorer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/invision.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\invision.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ioxhost.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ioxhost.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/itch-io.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\itch-io.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/itunes-note.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\itunes-note.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/itunes.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\itunes.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/java.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\java.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/jedi-order.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\jedi-order.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/jenkins.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\jenkins.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/jira.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\jira.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/joget.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\joget.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/joomla.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\joomla.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/js-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\js-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/js.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\js.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/jsfiddle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\jsfiddle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/kaggle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\kaggle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/keybase.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\keybase.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/keycdn.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\keycdn.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/kickstarter-k.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\kickstarter-k.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/kickstarter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\kickstarter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/korvue.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\korvue.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/laravel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\laravel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/lastfm-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\lastfm-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/lastfm.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\lastfm.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/leanpub.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\leanpub.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/less.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\less.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/linkedin-in.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\linkedin-in.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/linkedin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\linkedin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/linode.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\linode.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/linux.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\linux.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/lyft.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\lyft.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/magento.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\magento.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/mailchimp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\mailchimp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/mandalorian.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\mandalorian.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/markdown.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\markdown.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/mastodon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\mastodon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/maxcdn.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\maxcdn.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/mdb.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\mdb.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/medapps.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\medapps.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/medium.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\medium.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/medrt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\medrt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/meetup.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\meetup.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/megaport.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\megaport.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/mendeley.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\mendeley.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/microblog.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\microblog.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/microsoft.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\microsoft.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/mix.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\mix.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/mixcloud.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\mixcloud.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/mixer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\mixer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/mizuni.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\mizuni.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/modx.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\modx.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/monero.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\monero.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/napster.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\napster.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/neos.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\neos.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/nfc-directional.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\nfc-directional.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/nfc-symbol.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\nfc-symbol.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/nimblr.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\nimblr.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/node-js.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\node-js.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/node.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\node.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/npm.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\npm.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ns8.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ns8.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/nutritionix.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\nutritionix.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/octopus-deploy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\octopus-deploy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/odnoklassniki-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\odnoklassniki-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/odnoklassniki.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\odnoklassniki.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/old-republic.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\old-republic.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/opencart.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\opencart.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/openid.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\openid.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/opera.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\opera.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/optin-monster.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\optin-monster.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/orcid.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\orcid.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/osi.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\osi.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/padlet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\padlet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/page4.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\page4.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pagelines.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pagelines.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/palfed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\palfed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/patreon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\patreon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/paypal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\paypal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/perbyte.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\perbyte.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/periscope.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\periscope.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/phabricator.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\phabricator.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/phoenix-framework.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\phoenix-framework.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/phoenix-squadron.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\phoenix-squadron.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/php.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\php.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pied-piper-alt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pied-piper-alt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pied-piper-hat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pied-piper-hat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pied-piper-pp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pied-piper-pp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pied-piper-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pied-piper-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pied-piper.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pied-piper.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pinterest-p.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pinterest-p.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pinterest-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pinterest-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pinterest.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pinterest.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pix.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pix.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/playstation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\playstation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/product-hunt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\product-hunt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/pushed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\pushed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/python.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\python.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/qq.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\qq.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/quinscape.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\quinscape.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/quora.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\quora.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/r-project.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\r-project.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/raspberry-pi.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\raspberry-pi.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ravelry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ravelry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/react.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\react.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/reacteurope.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\reacteurope.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/readme.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\readme.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/rebel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\rebel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/red-river.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\red-river.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/reddit-alien.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\reddit-alien.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/reddit-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\reddit-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/reddit.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\reddit.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/redhat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\redhat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/renren.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\renren.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/replyd.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\replyd.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/researchgate.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\researchgate.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/resolving.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\resolving.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/rev.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\rev.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/rocketchat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\rocketchat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/rockrms.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\rockrms.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/rust.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\rust.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/safari.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\safari.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/salesforce.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\salesforce.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/sass.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\sass.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/schlix.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\schlix.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/screenpal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\screenpal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/scribd.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\scribd.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/searchengin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\searchengin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/sellcast.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\sellcast.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/sellsy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\sellsy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/servicestack.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\servicestack.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/shirtsinbulk.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\shirtsinbulk.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/shopify.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\shopify.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/shopware.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\shopware.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/simplybuilt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\simplybuilt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/sistrix.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\sistrix.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/sith.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\sith.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/sitrox.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\sitrox.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/sketch.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\sketch.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/skyatlas.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\skyatlas.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/skype.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\skype.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/slack.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\slack.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/slideshare.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\slideshare.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/snapchat-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\snapchat-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/snapchat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\snapchat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/soundcloud.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\soundcloud.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/sourcetree.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\sourcetree.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/speakap.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\speakap.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/speaker-deck.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\speaker-deck.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/spotify.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\spotify.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/square-font-awesome-stroke.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\square-font-awesome-stroke.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/square-font-awesome.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\square-font-awesome.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/squarespace.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\squarespace.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/stack-exchange.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\stack-exchange.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/stack-overflow.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\stack-overflow.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/stackpath.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\stackpath.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/staylinked.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\staylinked.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/steam-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\steam-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/steam-symbol.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\steam-symbol.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/steam.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\steam.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/sticker-mule.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\sticker-mule.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/strava.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\strava.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/stripe-s.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\stripe-s.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/stripe.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\stripe.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/studiovinari.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\studiovinari.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/stumbleupon-circle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\stumbleupon-circle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/stumbleupon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\stumbleupon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/superpowers.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\superpowers.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/supple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\supple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/suse.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\suse.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/swift.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\swift.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/symfony.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\symfony.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/teamspeak.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\teamspeak.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/telegram.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\telegram.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/tencent-weibo.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\tencent-weibo.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/the-red-yeti.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\the-red-yeti.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/themeco.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\themeco.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/themeisle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\themeisle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/think-peaks.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\think-peaks.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/tiktok.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\tiktok.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/trade-federation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\trade-federation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/trello.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\trello.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/tumblr-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\tumblr-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/tumblr.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\tumblr.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/twitch.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\twitch.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/twitter-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\twitter-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/twitter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\twitter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/typo3.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\typo3.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/uber.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\uber.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ubuntu.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ubuntu.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/uikit.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\uikit.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/umbraco.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\umbraco.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/uncharted.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\uncharted.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/uniregistry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\uniregistry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/unity.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\unity.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/unsplash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\unsplash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/untappd.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\untappd.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ups.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ups.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/usb.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\usb.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/usps.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\usps.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/ussunnah.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\ussunnah.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/vaadin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\vaadin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/viacoin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\viacoin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/viadeo-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\viadeo-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/viadeo.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\viadeo.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/viber.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\viber.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/vimeo-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\vimeo-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/vimeo-v.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\vimeo-v.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/vimeo.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\vimeo.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/vine.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\vine.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/vk.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\vk.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/vnv.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\vnv.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/vuejs.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\vuejs.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/watchman-monitoring.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\watchman-monitoring.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/waze.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\waze.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/weebly.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\weebly.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/weibo.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\weibo.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/weixin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\weixin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/whatsapp-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\whatsapp-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/whatsapp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\whatsapp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/whmcs.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\whmcs.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wikipedia-w.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wikipedia-w.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/windows.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\windows.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wirsindhandwerk.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wirsindhandwerk.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wix.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wix.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wizards-of-the-coast.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wizards-of-the-coast.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wodu.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wodu.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wolf-pack-battalion.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wolf-pack-battalion.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wordpress-simple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wordpress-simple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wordpress.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wordpress.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wpbeginner.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wpbeginner.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wpexplorer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wpexplorer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wpforms.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wpforms.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/wpressr.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\wpressr.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/xbox.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\xbox.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/xing-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\xing-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/xing.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\xing.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/y-combinator.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\y-combinator.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/yahoo.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\yahoo.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/yammer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\yammer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/yandex-international.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\yandex-international.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/yandex.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\yandex.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/yarn.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\yarn.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/yelp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\yelp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/yoast.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\yoast.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/youtube-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\youtube-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/youtube.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\youtube.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/brands/zhihu.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\brands\zhihu.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/address-book.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\address-book.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/address-card.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\address-card.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/bell-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\bell-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/bell.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\bell.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/bookmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\bookmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/building.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\building.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/calendar-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\calendar-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/calendar-days.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\calendar-days.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/calendar-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\calendar-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/calendar-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\calendar-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/calendar-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\calendar-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/calendar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\calendar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/chart-bar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\chart-bar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/chess-bishop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\chess-bishop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/chess-king.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\chess-king.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/chess-knight.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\chess-knight.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/chess-pawn.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\chess-pawn.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/chess-queen.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\chess-queen.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/chess-rook.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\chess-rook.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-dot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-dot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-pause.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-pause.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-play.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-play.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-question.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-question.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-stop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-stop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/circle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\circle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/clipboard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\clipboard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/clock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\clock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/clone.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\clone.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/closed-captioning.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\closed-captioning.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/comment-dots.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\comment-dots.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/comment.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\comment.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/comments.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\comments.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/compass.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\compass.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/copy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\copy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/copyright.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\copyright.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/credit-card.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\credit-card.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/envelope-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\envelope-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/envelope.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\envelope.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/eye-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\eye-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/eye.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\eye.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-angry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-angry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-dizzy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-dizzy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-flushed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-flushed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-frown-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-frown-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-frown.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-frown.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grimace.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grimace.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-beam-sweat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-beam-sweat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-beam.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-beam.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-hearts.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-hearts.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-squint-tears.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-squint-tears.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-squint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-squint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-stars.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-stars.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-tears.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-tears.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-tongue-squint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-tongue-squint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-tongue-wink.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-tongue-wink.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-tongue.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-tongue.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-wide.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-wide.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin-wink.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin-wink.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-grin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-grin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-kiss-beam.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-kiss-beam.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-kiss-wink-heart.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-kiss-wink-heart.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-kiss.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-kiss.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-laugh-beam.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-laugh-beam.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-laugh-squint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-laugh-squint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-laugh-wink.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-laugh-wink.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-laugh.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-laugh.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-meh-blank.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-meh-blank.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-meh.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-meh.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-rolling-eyes.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-rolling-eyes.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-sad-cry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-sad-cry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-sad-tear.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-sad-tear.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-smile-beam.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-smile-beam.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-smile-wink.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-smile-wink.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-smile.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-smile.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-surprise.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-surprise.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/face-tired.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\face-tired.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-audio.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-audio.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-code.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-code.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-excel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-excel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-image.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-image.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-lines.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-lines.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-pdf.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-pdf.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-powerpoint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-powerpoint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-video.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-video.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-word.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-word.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file-zipper.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file-zipper.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/file.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\file.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/flag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\flag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/floppy-disk.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\floppy-disk.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/folder-closed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\folder-closed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/folder-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\folder-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/folder.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\folder.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/font-awesome.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\font-awesome.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/futbol.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\futbol.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/gem.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\gem.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-back-fist.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-back-fist.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-lizard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-lizard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-peace.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-peace.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-point-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-point-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-point-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-point-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-point-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-point-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-point-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-point-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-pointer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-pointer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-scissors.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-scissors.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand-spock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand-spock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hand.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hand.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/handshake.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\handshake.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hard-drive.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hard-drive.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/heart.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\heart.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hospital.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hospital.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/hourglass.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\hourglass.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/id-badge.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\id-badge.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/id-card.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\id-card.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/image.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\image.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/images.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\images.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/keyboard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\keyboard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/lemon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\lemon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/life-ring.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\life-ring.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/lightbulb.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\lightbulb.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/map.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\map.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/message.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\message.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/money-bill-1.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\money-bill-1.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/moon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\moon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/newspaper.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\newspaper.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/note-sticky.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\note-sticky.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/object-group.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\object-group.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/object-ungroup.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\object-ungroup.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/paper-plane.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\paper-plane.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/paste.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\paste.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/pen-to-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\pen-to-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/rectangle-list.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\rectangle-list.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/rectangle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\rectangle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/registered.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\registered.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/share-from-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\share-from-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/snowflake.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\snowflake.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/square-caret-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\square-caret-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/square-caret-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\square-caret-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/square-caret-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\square-caret-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/square-caret-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\square-caret-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/square-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\square-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/square-full.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\square-full.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/square-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\square-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/square-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\square-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/star-half-stroke.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\star-half-stroke.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/star-half.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\star-half.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/star.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\star.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/sun.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\sun.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/thumbs-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\thumbs-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/thumbs-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\thumbs-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/trash-can.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\trash-can.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/window-maximize.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\window-maximize.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/window-minimize.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\window-minimize.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/regular/window-restore.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\regular\window-restore.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/0.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\0.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/1.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\1.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/2.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\2.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/3.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\3.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/4.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\4.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/5.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\5.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/6.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\6.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/7.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\7.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/8.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\8.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/9.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\9.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/a.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\a.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/address-book.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\address-book.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/address-card.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\address-card.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/align-center.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\align-center.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/align-justify.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\align-justify.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/align-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\align-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/align-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\align-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/anchor-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\anchor-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/anchor-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\anchor-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/anchor-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\anchor-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/anchor-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\anchor-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/anchor.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\anchor.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/angle-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\angle-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/angle-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\angle-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/angle-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\angle-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/angle-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\angle-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/angles-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\angles-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/angles-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\angles-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/angles-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\angles-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/angles-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\angles-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ankh.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ankh.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/apple-whole.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\apple-whole.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/archway.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\archway.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down-1-9.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down-1-9.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down-9-1.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down-9-1.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down-a-z.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down-a-z.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down-long.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down-long.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down-short-wide.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down-short-wide.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down-up-across-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down-up-across-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down-up-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down-up-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down-wide-short.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down-wide-short.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down-z-a.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down-z-a.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-left-long.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-left-long.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-pointer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-pointer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-right-arrow-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-right-arrow-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-right-from-bracket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-right-from-bracket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-right-long.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-right-long.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-right-to-bracket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-right-to-bracket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-right-to-city.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-right-to-city.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-rotate-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-rotate-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-rotate-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-rotate-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-trend-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-trend-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-trend-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-trend-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-turn-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-turn-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-turn-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-turn-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-1-9.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-1-9.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-9-1.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-9-1.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-a-z.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-a-z.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-from-bracket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-from-bracket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-from-ground-water.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-from-ground-water.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-from-water-pump.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-from-water-pump.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-long.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-long.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-right-dots.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-right-dots.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-right-from-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-right-from-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-short-wide.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-short-wide.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-wide-short.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-wide-short.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up-z-a.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up-z-a.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrow-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrow-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-down-to-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-down-to-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-down-to-people.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-down-to-people.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-left-right-to-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-left-right-to-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-left-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-left-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-rotate.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-rotate.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-spin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-spin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-split-up-and-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-split-up-and-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-to-circle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-to-circle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-to-dot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-to-dot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-to-eye.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-to-eye.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-turn-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-turn-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-turn-to-dots.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-turn-to-dots.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-up-down-left-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-up-down-left-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-up-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-up-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/arrows-up-to-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\arrows-up-to-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/asterisk.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\asterisk.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/at.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\at.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/atom.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\atom.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/audio-description.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\audio-description.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/austral-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\austral-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/award.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\award.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/b.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\b.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/baby-carriage.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\baby-carriage.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/baby.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\baby.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/backward-fast.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\backward-fast.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/backward-step.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\backward-step.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/backward.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\backward.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bacon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bacon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bacteria.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bacteria.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bacterium.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bacterium.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bag-shopping.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bag-shopping.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bahai.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bahai.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/baht-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\baht-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ban-smoking.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ban-smoking.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ban.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ban.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bandage.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bandage.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/barcode.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\barcode.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bars-progress.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bars-progress.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bars-staggered.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bars-staggered.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bars.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bars.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/baseball-bat-ball.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\baseball-bat-ball.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/baseball.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\baseball.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/basket-shopping.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\basket-shopping.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/basketball.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\basketball.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bath.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bath.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/battery-empty.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\battery-empty.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/battery-full.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\battery-full.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/battery-half.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\battery-half.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/battery-quarter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\battery-quarter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/battery-three-quarters.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\battery-three-quarters.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bed-pulse.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bed-pulse.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/beer-mug-empty.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\beer-mug-empty.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bell-concierge.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bell-concierge.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bell-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bell-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bell.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bell.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bezier-curve.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bezier-curve.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bicycle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bicycle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/binoculars.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\binoculars.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/biohazard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\biohazard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bitcoin-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bitcoin-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/blender-phone.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\blender-phone.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/blender.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\blender.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/blog.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\blog.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bold.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bold.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bolt-lightning.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bolt-lightning.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bolt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bolt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bomb.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bomb.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bone.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bone.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bong.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bong.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book-atlas.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book-atlas.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book-bible.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book-bible.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book-bookmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book-bookmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book-journal-whills.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book-journal-whills.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book-open-reader.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book-open-reader.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book-quran.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book-quran.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book-skull.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book-skull.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/book.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\book.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bookmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bookmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/border-all.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\border-all.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/border-none.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\border-none.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/border-top-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\border-top-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bore-hole.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bore-hole.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bottle-droplet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bottle-droplet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bottle-water.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bottle-water.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bowl-food.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bowl-food.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bowl-rice.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bowl-rice.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bowling-ball.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bowling-ball.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/box-archive.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\box-archive.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/box-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\box-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/box-tissue.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\box-tissue.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/box.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\box.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/boxes-packing.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\boxes-packing.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/boxes-stacked.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\boxes-stacked.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/braille.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\braille.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/brain.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\brain.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/brazilian-real-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\brazilian-real-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bread-slice.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bread-slice.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bridge-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bridge-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bridge-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bridge-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bridge-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bridge-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bridge-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bridge-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bridge-water.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bridge-water.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bridge.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bridge.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/briefcase-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\briefcase-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/briefcase.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\briefcase.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/broom-ball.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\broom-ball.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/broom.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\broom.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/brush.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\brush.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bucket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bucket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bug-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bug-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bug.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bug.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bugs.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bugs.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-circle-arrow-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-circle-arrow-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-columns.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-columns.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-flag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-flag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-ngo.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-ngo.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-shield.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-shield.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-un.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-un.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building-wheat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building-wheat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/building.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\building.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bullhorn.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bullhorn.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bullseye.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bullseye.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/burger.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\burger.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/burst.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\burst.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bus-simple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bus-simple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/bus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\bus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/business-time.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\business-time.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/c.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\c.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cake-candles.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cake-candles.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/calculator.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\calculator.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/calendar-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\calendar-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/calendar-day.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\calendar-day.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/calendar-days.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\calendar-days.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/calendar-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\calendar-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/calendar-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\calendar-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/calendar-week.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\calendar-week.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/calendar-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\calendar-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/calendar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\calendar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/camera-retro.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\camera-retro.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/camera-rotate.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\camera-rotate.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/camera.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\camera.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/campground.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\campground.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/candy-cane.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\candy-cane.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cannabis.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cannabis.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/capsules.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\capsules.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/car-battery.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\car-battery.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/car-burst.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\car-burst.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/car-on.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\car-on.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/car-rear.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\car-rear.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/car-side.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\car-side.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/car-tunnel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\car-tunnel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/car.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\car.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/caravan.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\caravan.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/caret-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\caret-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/caret-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\caret-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/caret-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\caret-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/caret-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\caret-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/carrot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\carrot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cart-arrow-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cart-arrow-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cart-flatbed-suitcase.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cart-flatbed-suitcase.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cart-flatbed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cart-flatbed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cart-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cart-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cart-shopping.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cart-shopping.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cash-register.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cash-register.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cedi-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cedi-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cent-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cent-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/certificate.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\certificate.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chair.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chair.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chalkboard-user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chalkboard-user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chalkboard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chalkboard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/champagne-glasses.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\champagne-glasses.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/charging-station.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\charging-station.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chart-area.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chart-area.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chart-bar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chart-bar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chart-column.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chart-column.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chart-gantt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chart-gantt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chart-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chart-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chart-pie.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chart-pie.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chart-simple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chart-simple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/check-double.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\check-double.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/check-to-slot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\check-to-slot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cheese.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cheese.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chess-bishop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chess-bishop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chess-board.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chess-board.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chess-king.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chess-king.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chess-knight.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chess-knight.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chess-pawn.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chess-pawn.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chess-queen.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chess-queen.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chess-rook.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chess-rook.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chess.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chess.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chevron-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chevron-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chevron-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chevron-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chevron-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chevron-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/chevron-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\chevron-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/child-dress.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\child-dress.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/child-reaching.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\child-reaching.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/child-rifle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\child-rifle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/child.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\child.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/children.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\children.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/church.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\church.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-arrow-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-arrow-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-arrow-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-arrow-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-arrow-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-arrow-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-arrow-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-arrow-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-chevron-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-chevron-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-chevron-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-chevron-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-chevron-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-chevron-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-chevron-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-chevron-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-dollar-to-slot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-dollar-to-slot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-dot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-dot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-h.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-h.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-half-stroke.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-half-stroke.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-info.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-info.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-nodes.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-nodes.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-notch.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-notch.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-pause.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-pause.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-play.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-play.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-question.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-question.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-radiation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-radiation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-stop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-stop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/circle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\circle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/city.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\city.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clapperboard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clapperboard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clipboard-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clipboard-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clipboard-list.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clipboard-list.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clipboard-question.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clipboard-question.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clipboard-user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clipboard-user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clipboard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clipboard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clock-rotate-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clock-rotate-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clone.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clone.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/closed-captioning.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\closed-captioning.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-arrow-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-arrow-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-arrow-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-arrow-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-bolt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-bolt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-meatball.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-meatball.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-moon-rain.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-moon-rain.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-moon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-moon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-rain.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-rain.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-showers-heavy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-showers-heavy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-showers-water.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-showers-water.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-sun-rain.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-sun-rain.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud-sun.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud-sun.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cloud.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cloud.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/clover.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\clover.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/code-branch.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\code-branch.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/code-commit.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\code-commit.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/code-compare.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\code-compare.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/code-fork.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\code-fork.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/code-merge.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\code-merge.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/code-pull-request.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\code-pull-request.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/code.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\code.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/coins.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\coins.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/colon-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\colon-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/comment-dollar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\comment-dollar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/comment-dots.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\comment-dots.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/comment-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\comment-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/comment-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\comment-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/comment-sms.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\comment-sms.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/comment.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\comment.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/comments-dollar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\comments-dollar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/comments.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\comments.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/compact-disc.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\compact-disc.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/compass-drafting.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\compass-drafting.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/compass.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\compass.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/compress.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\compress.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/computer-mouse.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\computer-mouse.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/computer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\computer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cookie-bite.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cookie-bite.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cookie.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cookie.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/copy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\copy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/copyright.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\copyright.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/couch.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\couch.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cow.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cow.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/credit-card.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\credit-card.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/crop-simple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\crop-simple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/crop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\crop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cross.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cross.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/crosshairs.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\crosshairs.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/crow.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\crow.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/crown.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\crown.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/crutch.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\crutch.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cruzeiro-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cruzeiro-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cube.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cube.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cubes-stacked.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cubes-stacked.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/cubes.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\cubes.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/d.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\d.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/database.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\database.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/delete-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\delete-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/democrat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\democrat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/desktop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\desktop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dharmachakra.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dharmachakra.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/diagram-next.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\diagram-next.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/diagram-predecessor.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\diagram-predecessor.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/diagram-project.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\diagram-project.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/diagram-successor.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\diagram-successor.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/diamond-turn-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\diamond-turn-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/diamond.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\diamond.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dice-d20.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dice-d20.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dice-d6.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dice-d6.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dice-five.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dice-five.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dice-four.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dice-four.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dice-one.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dice-one.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dice-six.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dice-six.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dice-three.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dice-three.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dice-two.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dice-two.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dice.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dice.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/disease.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\disease.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/display.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\display.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/divide.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\divide.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dna.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dna.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dog.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dog.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dollar-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dollar-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dolly.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dolly.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dong-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dong-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/door-closed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\door-closed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/door-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\door-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dove.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dove.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/down-left-and-up-right-to-center.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\down-left-and-up-right-to-center.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/down-long.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\down-long.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/download.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\download.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dragon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dragon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/draw-polygon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\draw-polygon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/droplet-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\droplet-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/droplet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\droplet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/drum-steelpan.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\drum-steelpan.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/drum.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\drum.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/drumstick-bite.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\drumstick-bite.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dumbbell.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dumbbell.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dumpster-fire.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dumpster-fire.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dumpster.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dumpster.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/dungeon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\dungeon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/e.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\e.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ear-deaf.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ear-deaf.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ear-listen.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ear-listen.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/earth-africa.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\earth-africa.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/earth-americas.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\earth-americas.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/earth-asia.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\earth-asia.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/earth-europe.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\earth-europe.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/earth-oceania.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\earth-oceania.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/egg.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\egg.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/eject.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\eject.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/elevator.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\elevator.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ellipsis-vertical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ellipsis-vertical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ellipsis.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ellipsis.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/envelope-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\envelope-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/envelope-open-text.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\envelope-open-text.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/envelope-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\envelope-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/envelope.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\envelope.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/envelopes-bulk.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\envelopes-bulk.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/equals.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\equals.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/eraser.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\eraser.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ethernet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ethernet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/euro-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\euro-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/expand.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\expand.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/explosion.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\explosion.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/eye-dropper.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\eye-dropper.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/eye-low-vision.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\eye-low-vision.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/eye-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\eye-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/eye.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\eye.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/f.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\f.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-angry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-angry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-dizzy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-dizzy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-flushed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-flushed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-frown-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-frown-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-frown.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-frown.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grimace.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grimace.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-beam-sweat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-beam-sweat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-beam.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-beam.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-hearts.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-hearts.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-squint-tears.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-squint-tears.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-squint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-squint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-stars.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-stars.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-tears.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-tears.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-tongue-squint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-tongue-squint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-tongue-wink.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-tongue-wink.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-tongue.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-tongue.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-wide.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-wide.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin-wink.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin-wink.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-grin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-grin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-kiss-beam.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-kiss-beam.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-kiss-wink-heart.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-kiss-wink-heart.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-kiss.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-kiss.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-laugh-beam.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-laugh-beam.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-laugh-squint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-laugh-squint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-laugh-wink.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-laugh-wink.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-laugh.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-laugh.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-meh-blank.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-meh-blank.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-meh.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-meh.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-rolling-eyes.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-rolling-eyes.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-sad-cry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-sad-cry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-sad-tear.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-sad-tear.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-smile-beam.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-smile-beam.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-smile-wink.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-smile-wink.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-smile.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-smile.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-surprise.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-surprise.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/face-tired.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\face-tired.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fan.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fan.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/faucet-drip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\faucet-drip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/faucet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\faucet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fax.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fax.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/feather-pointed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\feather-pointed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/feather.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\feather.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ferry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ferry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-arrow-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-arrow-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-arrow-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-arrow-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-audio.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-audio.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-circle-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-circle-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-circle-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-circle-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-circle-question.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-circle-question.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-code.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-code.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-contract.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-contract.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-csv.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-csv.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-excel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-excel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-export.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-export.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-image.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-image.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-import.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-import.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-invoice-dollar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-invoice-dollar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-invoice.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-invoice.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-lines.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-lines.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-pdf.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-pdf.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-pen.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-pen.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-powerpoint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-powerpoint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-prescription.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-prescription.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-shield.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-shield.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-signature.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-signature.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-video.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-video.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-waveform.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-waveform.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-word.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-word.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file-zipper.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file-zipper.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/file.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\file.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fill-drip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fill-drip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fill.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fill.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/film.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\film.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/filter-circle-dollar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\filter-circle-dollar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/filter-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\filter-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/filter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\filter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fingerprint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fingerprint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fire-burner.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fire-burner.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fire-extinguisher.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fire-extinguisher.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fire-flame-curved.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fire-flame-curved.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fire-flame-simple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fire-flame-simple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fire.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fire.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fish-fins.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fish-fins.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/fish.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\fish.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/flag-checkered.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\flag-checkered.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/flag-usa.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\flag-usa.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/flag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\flag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/flask-vial.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\flask-vial.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/flask.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\flask.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/floppy-disk.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\floppy-disk.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/florin-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\florin-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/folder-closed.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\folder-closed.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/folder-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\folder-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/folder-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\folder-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/folder-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\folder-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/folder-tree.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\folder-tree.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/folder.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\folder.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/font-awesome.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\font-awesome.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/font.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\font.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/football.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\football.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/forward-fast.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\forward-fast.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/forward-step.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\forward-step.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/forward.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\forward.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/franc-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\franc-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/frog.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\frog.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/futbol.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\futbol.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/g.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\g.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gamepad.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gamepad.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gas-pump.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gas-pump.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gauge-high.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gauge-high.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gauge-simple-high.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gauge-simple-high.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gauge-simple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gauge-simple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gauge.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gauge.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gavel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gavel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gear.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gear.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gears.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gears.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gem.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gem.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/genderless.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\genderless.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ghost.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ghost.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gift.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gift.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gifts.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gifts.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/glass-water-droplet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\glass-water-droplet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/glass-water.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\glass-water.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/glasses.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\glasses.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/globe.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\globe.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/golf-ball-tee.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\golf-ball-tee.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gopuram.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gopuram.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/graduation-cap.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\graduation-cap.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/greater-than-equal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\greater-than-equal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/greater-than.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\greater-than.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/grip-lines-vertical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\grip-lines-vertical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/grip-lines.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\grip-lines.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/grip-vertical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\grip-vertical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/grip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\grip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/group-arrows-rotate.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\group-arrows-rotate.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/guarani-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\guarani-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/guitar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\guitar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/gun.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\gun.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/h.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\h.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hammer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hammer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hamsa.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hamsa.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-back-fist.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-back-fist.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-dots.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-dots.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-fist.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-fist.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-holding-dollar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-holding-dollar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-holding-droplet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-holding-droplet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-holding-hand.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-holding-hand.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-holding-heart.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-holding-heart.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-holding-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-holding-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-holding.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-holding.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-lizard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-lizard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-middle-finger.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-middle-finger.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-peace.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-peace.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-point-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-point-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-point-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-point-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-point-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-point-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-point-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-point-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-pointer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-pointer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-scissors.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-scissors.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-sparkles.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-sparkles.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand-spock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand-spock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hand.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hand.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/handcuffs.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\handcuffs.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hands-asl-interpreting.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hands-asl-interpreting.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hands-bound.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hands-bound.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hands-bubbles.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hands-bubbles.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hands-clapping.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hands-clapping.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hands-holding-child.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hands-holding-child.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hands-holding-circle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hands-holding-circle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hands-holding.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hands-holding.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hands-praying.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hands-praying.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hands.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hands.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/handshake-angle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\handshake-angle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/handshake-simple-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\handshake-simple-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/handshake-simple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\handshake-simple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/handshake-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\handshake-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/handshake.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\handshake.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hanukiah.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hanukiah.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hard-drive.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hard-drive.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hashtag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hashtag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hat-cowboy-side.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hat-cowboy-side.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hat-cowboy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hat-cowboy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hat-wizard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hat-wizard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/head-side-cough-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\head-side-cough-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/head-side-cough.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\head-side-cough.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/head-side-mask.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\head-side-mask.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/head-side-virus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\head-side-virus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heading.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heading.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/headphones-simple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\headphones-simple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/headphones.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\headphones.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/headset.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\headset.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heart-circle-bolt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heart-circle-bolt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heart-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heart-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heart-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heart-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heart-circle-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heart-circle-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heart-circle-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heart-circle-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heart-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heart-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heart-crack.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heart-crack.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heart-pulse.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heart-pulse.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/heart.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\heart.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/helicopter-symbol.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\helicopter-symbol.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/helicopter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\helicopter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/helmet-safety.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\helmet-safety.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/helmet-un.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\helmet-un.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/highlighter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\highlighter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hill-avalanche.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hill-avalanche.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hill-rockslide.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hill-rockslide.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hippo.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hippo.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hockey-puck.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hockey-puck.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/holly-berry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\holly-berry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/horse-head.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\horse-head.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/horse.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\horse.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hospital-user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hospital-user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hospital.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hospital.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hot-tub-person.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hot-tub-person.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hotdog.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hotdog.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hotel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hotel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hourglass-empty.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hourglass-empty.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hourglass-end.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hourglass-end.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hourglass-start.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hourglass-start.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hourglass.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hourglass.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-chimney-crack.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-chimney-crack.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-chimney-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-chimney-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-chimney-user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-chimney-user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-chimney-window.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-chimney-window.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-chimney.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-chimney.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-crack.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-crack.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-fire.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-fire.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-flag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-flag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-flood-water-circle-arrow-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-flood-water-circle-arrow-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-flood-water.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-flood-water.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-laptop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-laptop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-medical-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-medical-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-medical-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-medical-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-medical-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-medical-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-medical-flag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-medical-flag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-signal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-signal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-tsunami.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-tsunami.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house-user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house-user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/house.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\house.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hryvnia-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hryvnia-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/hurricane.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\hurricane.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/i-cursor.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\i-cursor.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/i.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\i.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ice-cream.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ice-cream.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/icicles.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\icicles.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/icons.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\icons.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/id-badge.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\id-badge.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/id-card-clip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\id-card-clip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/id-card.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\id-card.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/igloo.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\igloo.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/image-portrait.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\image-portrait.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/image.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\image.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/images.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\images.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/inbox.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\inbox.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/indent.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\indent.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/indian-rupee-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\indian-rupee-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/industry.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\industry.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/infinity.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\infinity.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/info.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\info.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/italic.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\italic.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/j.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\j.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/jar-wheat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\jar-wheat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/jar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\jar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/jedi.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\jedi.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/jet-fighter-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\jet-fighter-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/jet-fighter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\jet-fighter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/joint.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\joint.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/jug-detergent.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\jug-detergent.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/k.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\k.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/kaaba.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\kaaba.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/key.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\key.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/keyboard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\keyboard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/khanda.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\khanda.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/kip-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\kip-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/kit-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\kit-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/kitchen-set.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\kitchen-set.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/kiwi-bird.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\kiwi-bird.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/l.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\l.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/land-mine-on.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\land-mine-on.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/landmark-dome.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\landmark-dome.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/landmark-flag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\landmark-flag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/landmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\landmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/language.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\language.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/laptop-code.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\laptop-code.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/laptop-file.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\laptop-file.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/laptop-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\laptop-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/laptop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\laptop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/lari-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\lari-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/layer-group.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\layer-group.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/leaf.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\leaf.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/left-long.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\left-long.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/left-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\left-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/lemon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\lemon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/less-than-equal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\less-than-equal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/less-than.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\less-than.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/life-ring.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\life-ring.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/lightbulb.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\lightbulb.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/lines-leaning.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\lines-leaning.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/link-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\link-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/link.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\link.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/lira-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\lira-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/list-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\list-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/list-ol.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\list-ol.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/list-ul.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\list-ul.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/list.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\list.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/litecoin-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\litecoin-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/location-arrow.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\location-arrow.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/location-crosshairs.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\location-crosshairs.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/location-dot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\location-dot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/location-pin-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\location-pin-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/location-pin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\location-pin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/lock-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\lock-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/locust.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\locust.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/lungs-virus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\lungs-virus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/lungs.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\lungs.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/m.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\m.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/magnet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\magnet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/magnifying-glass-arrow-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\magnifying-glass-arrow-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/magnifying-glass-chart.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\magnifying-glass-chart.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/magnifying-glass-dollar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\magnifying-glass-dollar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/magnifying-glass-location.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\magnifying-glass-location.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/magnifying-glass-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\magnifying-glass-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/magnifying-glass-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\magnifying-glass-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/magnifying-glass.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\magnifying-glass.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/manat-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\manat-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/map-location-dot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\map-location-dot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/map-location.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\map-location.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/map-pin.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\map-pin.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/map.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\map.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/marker.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\marker.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mars-and-venus-burst.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mars-and-venus-burst.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mars-and-venus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mars-and-venus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mars-double.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mars-double.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mars-stroke-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mars-stroke-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mars-stroke-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mars-stroke-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mars-stroke.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mars-stroke.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mars.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mars.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/martini-glass-citrus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\martini-glass-citrus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/martini-glass-empty.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\martini-glass-empty.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/martini-glass.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\martini-glass.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mask-face.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mask-face.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mask-ventilator.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mask-ventilator.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mask.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mask.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/masks-theater.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\masks-theater.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mattress-pillow.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mattress-pillow.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/maximize.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\maximize.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/medal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\medal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/memory.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\memory.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/menorah.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\menorah.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mercury.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mercury.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/message.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\message.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/meteor.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\meteor.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/microchip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\microchip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/microphone-lines-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\microphone-lines-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/microphone-lines.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\microphone-lines.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/microphone-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\microphone-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/microphone.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\microphone.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/microscope.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\microscope.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mill-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mill-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/minimize.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\minimize.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mitten.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mitten.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mobile-button.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mobile-button.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mobile-retro.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mobile-retro.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mobile-screen-button.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mobile-screen-button.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mobile-screen.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mobile-screen.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mobile.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mobile.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-bill-1-wave.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-bill-1-wave.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-bill-1.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-bill-1.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-bill-transfer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-bill-transfer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-bill-trend-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-bill-trend-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-bill-wave.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-bill-wave.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-bill-wheat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-bill-wheat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-bill.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-bill.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-bills.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-bills.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-check-dollar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-check-dollar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/money-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\money-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/monument.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\monument.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/moon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\moon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mortar-pestle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mortar-pestle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mosque.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mosque.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mosquito-net.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mosquito-net.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mosquito.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mosquito.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/motorcycle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\motorcycle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mound.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mound.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mountain-city.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mountain-city.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mountain-sun.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mountain-sun.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mountain.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mountain.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mug-hot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mug-hot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/mug-saucer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\mug-saucer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/music.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\music.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/n.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\n.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/naira-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\naira-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/network-wired.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\network-wired.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/neuter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\neuter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/newspaper.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\newspaper.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/not-equal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\not-equal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/note-sticky.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\note-sticky.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/notes-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\notes-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/o.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\o.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/object-group.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\object-group.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/object-ungroup.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\object-ungroup.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/oil-can.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\oil-can.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/oil-well.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\oil-well.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/om.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\om.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/otter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\otter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/outdent.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\outdent.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/p.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\p.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pager.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pager.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/paint-roller.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\paint-roller.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/paintbrush.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\paintbrush.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/palette.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\palette.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pallet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pallet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/panorama.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\panorama.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/paper-plane.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\paper-plane.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/paperclip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\paperclip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/parachute-box.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\parachute-box.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/paragraph.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\paragraph.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/passport.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\passport.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/paste.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\paste.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pause.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pause.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/paw.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\paw.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/peace.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\peace.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pen-clip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pen-clip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pen-fancy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pen-fancy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pen-nib.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pen-nib.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pen-ruler.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pen-ruler.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pen-to-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pen-to-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pen.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pen.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pencil.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pencil.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/people-arrows-left-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\people-arrows-left-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/people-carry-box.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\people-carry-box.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/people-group.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\people-group.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/people-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\people-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/people-pulling.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\people-pulling.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/people-robbery.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\people-robbery.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/people-roof.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\people-roof.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pepper-hot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pepper-hot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/percent.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\percent.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-arrow-down-to-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-arrow-down-to-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-arrow-up-from-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-arrow-up-from-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-biking.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-biking.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-booth.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-booth.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-breastfeeding.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-breastfeeding.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-burst.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-burst.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-cane.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-cane.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-chalkboard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-chalkboard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-circle-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-circle-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-circle-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-circle-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-circle-question.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-circle-question.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-digging.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-digging.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-dots-from-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-dots-from-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-dress-burst.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-dress-burst.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-dress.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-dress.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-drowning.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-drowning.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-falling-burst.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-falling-burst.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-falling.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-falling.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-half-dress.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-half-dress.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-harassing.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-harassing.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-hiking.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-hiking.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-military-pointing.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-military-pointing.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-military-rifle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-military-rifle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-military-to-person.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-military-to-person.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-praying.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-praying.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-pregnant.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-pregnant.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-rays.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-rays.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-rifle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-rifle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-running.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-running.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-shelter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-shelter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-skating.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-skating.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-skiing-nordic.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-skiing-nordic.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-skiing.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-skiing.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-snowboarding.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-snowboarding.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-swimming.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-swimming.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-through-window.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-through-window.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-walking-arrow-loop-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-walking-arrow-loop-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-walking-arrow-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-walking-arrow-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-walking-dashed-line-arrow-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-walking-dashed-line-arrow-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-walking-luggage.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-walking-luggage.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-walking-with-cane.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-walking-with-cane.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person-walking.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person-walking.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/person.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\person.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/peseta-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\peseta-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/peso-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\peso-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/phone-flip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\phone-flip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/phone-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\phone-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/phone-volume.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\phone-volume.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/phone.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\phone.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/photo-film.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\photo-film.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/piggy-bank.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\piggy-bank.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pills.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pills.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pizza-slice.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pizza-slice.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/place-of-worship.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\place-of-worship.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plane-arrival.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plane-arrival.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plane-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plane-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plane-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plane-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plane-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plane-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plane-departure.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plane-departure.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plane-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plane-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plane-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plane-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plane-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plane-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plane.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plane.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plant-wilt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plant-wilt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plate-wheat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plate-wheat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/play.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\play.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plug-circle-bolt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plug-circle-bolt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plug-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plug-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plug-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plug-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plug-circle-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plug-circle-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plug-circle-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plug-circle-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plug-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plug-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plug.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plug.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plus-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plus-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/podcast.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\podcast.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/poo-storm.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\poo-storm.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/poo.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\poo.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/poop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\poop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/power-off.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\power-off.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/prescription-bottle-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\prescription-bottle-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/prescription-bottle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\prescription-bottle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/prescription.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\prescription.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/print.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\print.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pump-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pump-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/pump-soap.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\pump-soap.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/puzzle-piece.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\puzzle-piece.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/q.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\q.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/qrcode.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\qrcode.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/question.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\question.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/quote-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\quote-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/quote-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\quote-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/r.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\r.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/radiation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\radiation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/radio.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\radio.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rainbow.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rainbow.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ranking-star.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ranking-star.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/receipt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\receipt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/record-vinyl.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\record-vinyl.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rectangle-ad.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rectangle-ad.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rectangle-list.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rectangle-list.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rectangle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rectangle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/recycle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\recycle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/registered.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\registered.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/repeat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\repeat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/reply-all.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\reply-all.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/reply.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\reply.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/republican.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\republican.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/restroom.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\restroom.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/retweet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\retweet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ribbon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ribbon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/right-from-bracket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\right-from-bracket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/right-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\right-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/right-long.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\right-long.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/right-to-bracket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\right-to-bracket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ring.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ring.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/road-barrier.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\road-barrier.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/road-bridge.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\road-bridge.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/road-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\road-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/road-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\road-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/road-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\road-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/road-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\road-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/road-spikes.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\road-spikes.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/road.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\road.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/robot.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\robot.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rocket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rocket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rotate-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rotate-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rotate-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rotate-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rotate.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rotate.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/route.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\route.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rss.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rss.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ruble-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ruble-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rug.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rug.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ruler-combined.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ruler-combined.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ruler-horizontal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ruler-horizontal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ruler-vertical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ruler-vertical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ruler.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ruler.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rupee-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rupee-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/rupiah-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\rupiah-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/s.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\s.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sack-dollar.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sack-dollar.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sack-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sack-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sailboat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sailboat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/satellite-dish.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\satellite-dish.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/satellite.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\satellite.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/scale-balanced.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\scale-balanced.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/scale-unbalanced-flip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\scale-unbalanced-flip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/scale-unbalanced.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\scale-unbalanced.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/school-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\school-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/school-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\school-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/school-circle-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\school-circle-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/school-flag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\school-flag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/school-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\school-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/school.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\school.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/scissors.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\scissors.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/screwdriver-wrench.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\screwdriver-wrench.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/screwdriver.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\screwdriver.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/scroll-torah.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\scroll-torah.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/scroll.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\scroll.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sd-card.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sd-card.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/section.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\section.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/seedling.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\seedling.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/server.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\server.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shapes.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shapes.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/share-from-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\share-from-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/share-nodes.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\share-nodes.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/share.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\share.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sheet-plastic.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sheet-plastic.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shekel-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shekel-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shield-cat.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shield-cat.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shield-dog.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shield-dog.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shield-halved.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shield-halved.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shield-heart.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shield-heart.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shield-virus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shield-virus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shield.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shield.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ship.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ship.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shirt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shirt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shoe-prints.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shoe-prints.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shop-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shop-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shop-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shop-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shower.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shower.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shrimp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shrimp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shuffle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shuffle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/shuttle-space.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\shuttle-space.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sign-hanging.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sign-hanging.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/signal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\signal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/signature.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\signature.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/signs-post.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\signs-post.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sim-card.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sim-card.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sink.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sink.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sitemap.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sitemap.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/skull-crossbones.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\skull-crossbones.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/skull.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\skull.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sleigh.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sleigh.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sliders.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sliders.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/smog.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\smog.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/smoking.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\smoking.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/snowflake.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\snowflake.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/snowman.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\snowman.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/snowplow.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\snowplow.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/soap.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\soap.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/socks.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\socks.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/solar-panel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\solar-panel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sort-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sort-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sort-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sort-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sort.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sort.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/spa.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\spa.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/spaghetti-monster-flying.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\spaghetti-monster-flying.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/spell-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\spell-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/spider.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\spider.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/spinner.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\spinner.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/splotch.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\splotch.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/spoon.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\spoon.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/spray-can-sparkles.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\spray-can-sparkles.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/spray-can.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\spray-can.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-arrow-up-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-arrow-up-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-caret-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-caret-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-caret-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-caret-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-caret-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-caret-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-caret-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-caret-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-envelope.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-envelope.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-full.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-full.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-h.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-h.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-nfi.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-nfi.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-parking.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-parking.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-pen.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-pen.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-person-confined.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-person-confined.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-phone-flip.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-phone-flip.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-phone.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-phone.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-poll-horizontal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-poll-horizontal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-poll-vertical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-poll-vertical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-root-variable.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-root-variable.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-rss.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-rss.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-share-nodes.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-share-nodes.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-up-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-up-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-virus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-virus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/staff-aesculapius.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\staff-aesculapius.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/stairs.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\stairs.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/stamp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\stamp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/star-and-crescent.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\star-and-crescent.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/star-half-stroke.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\star-half-stroke.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/star-half.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\star-half.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/star-of-david.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\star-of-david.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/star-of-life.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\star-of-life.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/star.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\star.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sterling-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sterling-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/stethoscope.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\stethoscope.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/stop.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\stop.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/stopwatch-20.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\stopwatch-20.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/stopwatch.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\stopwatch.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/store-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\store-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/store.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\store.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/street-view.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\street-view.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/strikethrough.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\strikethrough.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/stroopwafel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\stroopwafel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/subscript.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\subscript.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/suitcase-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\suitcase-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/suitcase-rolling.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\suitcase-rolling.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/suitcase.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\suitcase.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sun-plant-wilt.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sun-plant-wilt.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/sun.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\sun.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/superscript.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\superscript.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/swatchbook.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\swatchbook.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/synagogue.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\synagogue.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/syringe.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\syringe.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/t.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\t.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/table-cells-large.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\table-cells-large.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/table-cells.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\table-cells.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/table-columns.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\table-columns.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/table-list.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\table-list.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/table-tennis-paddle-ball.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\table-tennis-paddle-ball.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/table.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\table.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tablet-button.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tablet-button.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tablet-screen-button.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tablet-screen-button.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tablet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tablet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tablets.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tablets.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tachograph-digital.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tachograph-digital.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tags.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tags.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tape.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tape.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tarp-droplet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tarp-droplet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tarp.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tarp.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/taxi.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\taxi.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/teeth-open.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\teeth-open.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/teeth.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\teeth.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/temperature-arrow-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\temperature-arrow-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/temperature-arrow-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\temperature-arrow-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/temperature-empty.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\temperature-empty.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/temperature-full.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\temperature-full.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/temperature-half.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\temperature-half.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/temperature-high.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\temperature-high.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/temperature-low.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\temperature-low.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/temperature-quarter.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\temperature-quarter.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/temperature-three-quarters.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\temperature-three-quarters.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tenge-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tenge-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tent-arrow-down-to-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tent-arrow-down-to-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tent-arrow-left-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tent-arrow-left-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tent-arrow-turn-left.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tent-arrow-turn-left.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tent-arrows-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tent-arrows-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tent.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tent.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tents.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tents.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/terminal.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\terminal.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/text-height.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\text-height.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/text-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\text-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/text-width.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\text-width.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/thermometer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\thermometer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/thumbs-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\thumbs-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/thumbs-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\thumbs-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/thumbtack.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\thumbtack.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ticket-simple.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ticket-simple.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/ticket.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\ticket.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/timeline.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\timeline.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/toggle-off.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\toggle-off.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/toggle-on.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\toggle-on.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/toilet-paper-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\toilet-paper-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/toilet-paper.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\toilet-paper.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/toilet-portable.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\toilet-portable.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/toilet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\toilet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/toilets-portable.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\toilets-portable.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/toolbox.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\toolbox.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tooth.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tooth.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/torii-gate.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\torii-gate.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tornado.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tornado.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tower-broadcast.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tower-broadcast.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tower-cell.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tower-cell.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tower-observation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tower-observation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tractor.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tractor.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/trademark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\trademark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/traffic-light.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\traffic-light.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/trailer.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\trailer.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/train-subway.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\train-subway.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/train-tram.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\train-tram.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/train.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\train.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/transgender.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\transgender.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/trash-arrow-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\trash-arrow-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/trash-can-arrow-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\trash-can-arrow-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/trash-can.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\trash-can.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/trash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\trash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tree-city.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tree-city.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tree.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tree.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/triangle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\triangle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/trophy.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\trophy.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/trowel-bricks.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\trowel-bricks.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/trowel.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\trowel.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-arrow-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-arrow-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-droplet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-droplet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-fast.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-fast.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-field-un.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-field-un.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-field.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-field.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-front.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-front.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-medical.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-medical.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-monster.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-monster.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-moving.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-moving.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-pickup.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-pickup.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-plane.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-plane.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck-ramp-box.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck-ramp-box.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/truck.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\truck.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tty.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tty.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/turkish-lira-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\turkish-lira-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/turn-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\turn-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/turn-up.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\turn-up.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/tv.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\tv.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/u.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\u.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/umbrella-beach.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\umbrella-beach.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/umbrella.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\umbrella.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/underline.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\underline.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/universal-access.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\universal-access.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/unlock-keyhole.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\unlock-keyhole.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/unlock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\unlock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/up-down-left-right.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\up-down-left-right.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/up-down.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\up-down.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/up-long.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\up-long.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/up-right-and-down-left-from-center.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\up-right-and-down-left-from-center.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/up-right-from-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\up-right-from-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/upload.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\upload.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-astronaut.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-astronaut.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-clock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-clock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-doctor.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-doctor.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-gear.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-gear.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-graduate.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-graduate.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-group.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-group.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-injured.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-injured.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-large-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-large-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-large.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-large.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-lock.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-lock.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-minus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-minus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-ninja.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-ninja.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-nurse.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-nurse.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-pen.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-pen.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-plus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-plus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-secret.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-secret.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-shield.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-shield.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-tag.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-tag.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-tie.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-tie.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/user.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\user.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/users-between-lines.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\users-between-lines.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/users-gear.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\users-gear.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/users-line.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\users-line.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/users-rays.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\users-rays.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/users-rectangle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\users-rectangle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/users-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\users-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/users-viewfinder.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\users-viewfinder.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/users.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\users.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/utensils.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\utensils.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/v.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\v.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/van-shuttle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\van-shuttle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vault.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vault.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vector-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vector-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/venus-double.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\venus-double.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/venus-mars.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\venus-mars.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/venus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\venus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vest-patches.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vest-patches.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vest.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vest.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vial-circle-check.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vial-circle-check.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vial-virus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vial-virus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vial.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vial.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vials.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vials.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/video-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\video-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/video.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\video.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vihara.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vihara.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/virus-covid-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\virus-covid-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/virus-covid.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\virus-covid.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/virus-slash.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\virus-slash.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/virus.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\virus.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/viruses.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\viruses.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/voicemail.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\voicemail.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/volcano.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\volcano.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/volleyball.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\volleyball.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/volume-high.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\volume-high.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/volume-low.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\volume-low.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/volume-off.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\volume-off.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/volume-xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\volume-xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/vr-cardboard.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\vr-cardboard.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/w.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\w.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/walkie-talkie.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\walkie-talkie.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wallet.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wallet.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wand-magic-sparkles.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wand-magic-sparkles.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wand-magic.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wand-magic.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wand-sparkles.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wand-sparkles.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/warehouse.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\warehouse.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/water-ladder.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\water-ladder.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/water.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\water.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wave-square.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wave-square.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/weight-hanging.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\weight-hanging.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/weight-scale.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\weight-scale.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wheat-awn-circle-exclamation.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wheat-awn-circle-exclamation.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wheat-awn.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wheat-awn.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wheelchair-move.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wheelchair-move.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wheelchair.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wheelchair.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/whiskey-glass.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\whiskey-glass.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wifi.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wifi.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wind.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wind.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/window-maximize.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\window-maximize.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/window-minimize.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\window-minimize.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/window-restore.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\window-restore.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wine-bottle.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wine-bottle.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wine-glass-empty.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wine-glass-empty.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wine-glass.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wine-glass.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/won-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\won-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/worm.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\worm.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/wrench.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\wrench.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/x-ray.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\x-ray.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/x.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\x.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/xmark.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\xmark.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/xmarks-lines.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\xmarks-lines.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/y.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\y.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/yen-sign.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\yen-sign.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/yin-yang.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\yin-yang.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/svgs/solid/z.svg
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\svgs\solid\z.svg))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/webfonts/fa-brands-400.ttf
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\webfonts\fa-brands-400.ttf))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/webfonts/fa-brands-400.woff2
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\webfonts\fa-brands-400.woff2))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/webfonts/fa-regular-400.ttf
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\webfonts\fa-regular-400.ttf))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/webfonts/fa-regular-400.woff2
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\webfonts\fa-regular-400.woff2))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/webfonts/fa-solid-900.ttf
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\webfonts\fa-solid-900.ttf))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/webfonts/fa-solid-900.woff2
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\webfonts\fa-solid-900.woff2))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/webfonts/fa-v4compatibility.ttf
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\webfonts\fa-v4compatibility.ttf))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/FontAwesome/webfonts/fa-v4compatibility.woff2
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\FontAwesome\webfonts\fa-v4compatibility.woff2))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery-validation-unobtrusive/LICENSE.txt
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\LICENSE.txt))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery-validation/dist/additional-methods.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\additional-methods.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery-validation/dist/additional-methods.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\additional-methods.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery-validation/dist/jquery.validate.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\jquery.validate.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery-validation/dist/jquery.validate.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\jquery.validate.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery-validation/LICENSE.md
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\LICENSE.md))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery/dist/jquery.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery/dist/jquery.min.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.min.js))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery/dist/jquery.min.map
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.min.map))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- lib/jquery/LICENSE.txt
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\LICENSE.txt))
-
-
- Package
- MyWebsite
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/MyWebsite
- MyWebsite.bundle.scp.css
- All
- Reference
- Primary
-
- ScopedCss
- ProjectBundle
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\MyWebsite.bundle.scp.css))
-
-
-
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.build.MyWebsite.props b/obj/Debug/net7.0/staticwebassets/msbuild.build.MyWebsite.props
deleted file mode 100644
index 5a6032a..0000000
--- a/obj/Debug/net7.0/staticwebassets/msbuild.build.MyWebsite.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.MyWebsite.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.MyWebsite.props
deleted file mode 100644
index d3ef0d0..0000000
--- a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.MyWebsite.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.MyWebsite.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.MyWebsite.props
deleted file mode 100644
index c65c404..0000000
--- a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.MyWebsite.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/wwwroot/favicon.ico b/wwwroot/favicon.ico
deleted file mode 100644
index 63e859b..0000000
Binary files a/wwwroot/favicon.ico and /dev/null differ
diff --git a/wwwroot/js/site.js b/wwwroot/js/site.js
deleted file mode 100644
index b2f58e1..0000000
--- a/wwwroot/js/site.js
+++ /dev/null
@@ -1,4 +0,0 @@
-// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
-// for details on configuring this project to bundle and minify static web assets.
-
-// Write your JavaScript code.
diff --git a/wwwroot/lib/bootstrap/LICENSE b/wwwroot/lib/bootstrap/LICENSE
deleted file mode 100644
index 1f4dd66..0000000
--- a/wwwroot/lib/bootstrap/LICENSE
+++ /dev/null
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2011-2021 Twitter, Inc.
-Copyright (c) 2011-2021 The Bootstrap Authors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
diff --git a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map b/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map
deleted file mode 100644
index c006d39..0000000
--- a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../scss/bootstrap-grid.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","bootstrap-grid.css","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AAAA;;;;;EAAA;ACME;;;;;;;ECHA,WAAA;EACA,0CAAA;EACA,yCAAA;EACA,kBAAA;EACA,iBAAA;ACWF;;AC6CI;EH5CE;IACE,gBIuce;EFpcrB;AACF;ACuCI;EH5CE;IACE,gBIuce;EF/brB;AACF;ACkCI;EH5CE;IACE,gBIuce;EF1brB;AACF;AC6BI;EH5CE;IACE,iBIuce;EFrbrB;AACF;ACwBI;EH5CE;IACE,iBIuce;EFhbrB;AACF;AGvCE;ECAA,qBAAA;EACA,gBAAA;EACA,aAAA;EACA,eAAA;EACA,yCAAA;EACA,4CAAA;EACA,2CAAA;AJ0CF;AG7CI;ECQF,sBAAA;EAIA,cAAA;EACA,WAAA;EACA,eAAA;EACA,4CAAA;EACA,2CAAA;EACA,8BAAA;AJqCF;;AIUM;EACE,YAAA;AJPR;;AIUM;EApCJ,cAAA;EACA,WAAA;AJ8BF;;AIhBE;EACE,cAAA;EACA,WAAA;AJmBJ;;AIrBE;EACE,cAAA;EACA,UAAA;AJwBJ;;AI1BE;EACE,cAAA;EACA,qBAAA;AJ6BJ;;AI/BE;EACE,cAAA;EACA,UAAA;AJkCJ;;AIpCE;EACE,cAAA;EACA,UAAA;AJuCJ;;AIzCE;EACE,cAAA;EACA,qBAAA;AJ4CJ;;AIbM;EAhDJ,cAAA;EACA,WAAA;AJiEF;;AIZU;EAhEN,cAAA;EACA,kBAAA;AJgFJ;;AIjBU;EAhEN,cAAA;EACA,mBAAA;AJqFJ;;AItBU;EAhEN,cAAA;EACA,UAAA;AJ0FJ;;AI3BU;EAhEN,cAAA;EACA,mBAAA;AJ+FJ;;AIhCU;EAhEN,cAAA;EACA,mBAAA;AJoGJ;;AIrCU;EAhEN,cAAA;EACA,UAAA;AJyGJ;;AI1CU;EAhEN,cAAA;EACA,mBAAA;AJ8GJ;;AI/CU;EAhEN,cAAA;EACA,mBAAA;AJmHJ;;AIpDU;EAhEN,cAAA;EACA,UAAA;AJwHJ;;AIzDU;EAhEN,cAAA;EACA,mBAAA;AJ6HJ;;AI9DU;EAhEN,cAAA;EACA,mBAAA;AJkIJ;;AInEU;EAhEN,cAAA;EACA,WAAA;AJuIJ;;AIhEY;EAxDV,wBAAA;AJ4HF;;AIpEY;EAxDV,yBAAA;AJgIF;;AIxEY;EAxDV,gBAAA;AJoIF;;AI5EY;EAxDV,yBAAA;AJwIF;;AIhFY;EAxDV,yBAAA;AJ4IF;;AIpFY;EAxDV,gBAAA;AJgJF;;AIxFY;EAxDV,yBAAA;AJoJF;;AI5FY;EAxDV,yBAAA;AJwJF;;AIhGY;EAxDV,gBAAA;AJ4JF;;AIpGY;EAxDV,yBAAA;AJgKF;;AIxGY;EAxDV,yBAAA;AJoKF;;AIjGQ;;EAEE,gBAAA;AJoGV;;AIjGQ;;EAEE,gBAAA;AJoGV;;AI3GQ;;EAEE,sBAAA;AJ8GV;;AI3GQ;;EAEE,sBAAA;AJ8GV;;AIrHQ;;EAEE,qBAAA;AJwHV;;AIrHQ;;EAEE,qBAAA;AJwHV;;AI/HQ;;EAEE,mBAAA;AJkIV;;AI/HQ;;EAEE,mBAAA;AJkIV;;AIzIQ;;EAEE,qBAAA;AJ4IV;;AIzIQ;;EAEE,qBAAA;AJ4IV;;AInJQ;;EAEE,mBAAA;AJsJV;;AInJQ;;EAEE,mBAAA;AJsJV;;AC/MI;EGSE;IACE,YAAA;EJ0MN;;EIvMI;IApCJ,cAAA;IACA,WAAA;EJ+OA;;EIjOA;IACE,cAAA;IACA,WAAA;EJoOF;;EItOA;IACE,cAAA;IACA,UAAA;EJyOF;;EI3OA;IACE,cAAA;IACA,qBAAA;EJ8OF;;EIhPA;IACE,cAAA;IACA,UAAA;EJmPF;;EIrPA;IACE,cAAA;IACA,UAAA;EJwPF;;EI1PA;IACE,cAAA;IACA,qBAAA;EJ6PF;;EI9NI;IAhDJ,cAAA;IACA,WAAA;EJkRA;;EI7NQ;IAhEN,cAAA;IACA,kBAAA;EJiSF;;EIlOQ;IAhEN,cAAA;IACA,mBAAA;EJsSF;;EIvOQ;IAhEN,cAAA;IACA,UAAA;EJ2SF;;EI5OQ;IAhEN,cAAA;IACA,mBAAA;EJgTF;;EIjPQ;IAhEN,cAAA;IACA,mBAAA;EJqTF;;EItPQ;IAhEN,cAAA;IACA,UAAA;EJ0TF;;EI3PQ;IAhEN,cAAA;IACA,mBAAA;EJ+TF;;EIhQQ;IAhEN,cAAA;IACA,mBAAA;EJoUF;;EIrQQ;IAhEN,cAAA;IACA,UAAA;EJyUF;;EI1QQ;IAhEN,cAAA;IACA,mBAAA;EJ8UF;;EI/QQ;IAhEN,cAAA;IACA,mBAAA;EJmVF;;EIpRQ;IAhEN,cAAA;IACA,WAAA;EJwVF;;EIjRU;IAxDV,cAAA;EJ6UA;;EIrRU;IAxDV,wBAAA;EJiVA;;EIzRU;IAxDV,yBAAA;EJqVA;;EI7RU;IAxDV,gBAAA;EJyVA;;EIjSU;IAxDV,yBAAA;EJ6VA;;EIrSU;IAxDV,yBAAA;EJiWA;;EIzSU;IAxDV,gBAAA;EJqWA;;EI7SU;IAxDV,yBAAA;EJyWA;;EIjTU;IAxDV,yBAAA;EJ6WA;;EIrTU;IAxDV,gBAAA;EJiXA;;EIzTU;IAxDV,yBAAA;EJqXA;;EI7TU;IAxDV,yBAAA;EJyXA;;EItTM;;IAEE,gBAAA;EJyTR;;EItTM;;IAEE,gBAAA;EJyTR;;EIhUM;;IAEE,sBAAA;EJmUR;;EIhUM;;IAEE,sBAAA;EJmUR;;EI1UM;;IAEE,qBAAA;EJ6UR;;EI1UM;;IAEE,qBAAA;EJ6UR;;EIpVM;;IAEE,mBAAA;EJuVR;;EIpVM;;IAEE,mBAAA;EJuVR;;EI9VM;;IAEE,qBAAA;EJiWR;;EI9VM;;IAEE,qBAAA;EJiWR;;EIxWM;;IAEE,mBAAA;EJ2WR;;EIxWM;;IAEE,mBAAA;EJ2WR;AACF;ACraI;EGSE;IACE,YAAA;EJ+ZN;;EI5ZI;IApCJ,cAAA;IACA,WAAA;EJocA;;EItbA;IACE,cAAA;IACA,WAAA;EJybF;;EI3bA;IACE,cAAA;IACA,UAAA;EJ8bF;;EIhcA;IACE,cAAA;IACA,qBAAA;EJmcF;;EIrcA;IACE,cAAA;IACA,UAAA;EJwcF;;EI1cA;IACE,cAAA;IACA,UAAA;EJ6cF;;EI/cA;IACE,cAAA;IACA,qBAAA;EJkdF;;EInbI;IAhDJ,cAAA;IACA,WAAA;EJueA;;EIlbQ;IAhEN,cAAA;IACA,kBAAA;EJsfF;;EIvbQ;IAhEN,cAAA;IACA,mBAAA;EJ2fF;;EI5bQ;IAhEN,cAAA;IACA,UAAA;EJggBF;;EIjcQ;IAhEN,cAAA;IACA,mBAAA;EJqgBF;;EItcQ;IAhEN,cAAA;IACA,mBAAA;EJ0gBF;;EI3cQ;IAhEN,cAAA;IACA,UAAA;EJ+gBF;;EIhdQ;IAhEN,cAAA;IACA,mBAAA;EJohBF;;EIrdQ;IAhEN,cAAA;IACA,mBAAA;EJyhBF;;EI1dQ;IAhEN,cAAA;IACA,UAAA;EJ8hBF;;EI/dQ;IAhEN,cAAA;IACA,mBAAA;EJmiBF;;EIpeQ;IAhEN,cAAA;IACA,mBAAA;EJwiBF;;EIzeQ;IAhEN,cAAA;IACA,WAAA;EJ6iBF;;EIteU;IAxDV,cAAA;EJkiBA;;EI1eU;IAxDV,wBAAA;EJsiBA;;EI9eU;IAxDV,yBAAA;EJ0iBA;;EIlfU;IAxDV,gBAAA;EJ8iBA;;EItfU;IAxDV,yBAAA;EJkjBA;;EI1fU;IAxDV,yBAAA;EJsjBA;;EI9fU;IAxDV,gBAAA;EJ0jBA;;EIlgBU;IAxDV,yBAAA;EJ8jBA;;EItgBU;IAxDV,yBAAA;EJkkBA;;EI1gBU;IAxDV,gBAAA;EJskBA;;EI9gBU;IAxDV,yBAAA;EJ0kBA;;EIlhBU;IAxDV,yBAAA;EJ8kBA;;EI3gBM;;IAEE,gBAAA;EJ8gBR;;EI3gBM;;IAEE,gBAAA;EJ8gBR;;EIrhBM;;IAEE,sBAAA;EJwhBR;;EIrhBM;;IAEE,sBAAA;EJwhBR;;EI/hBM;;IAEE,qBAAA;EJkiBR;;EI/hBM;;IAEE,qBAAA;EJkiBR;;EIziBM;;IAEE,mBAAA;EJ4iBR;;EIziBM;;IAEE,mBAAA;EJ4iBR;;EInjBM;;IAEE,qBAAA;EJsjBR;;EInjBM;;IAEE,qBAAA;EJsjBR;;EI7jBM;;IAEE,mBAAA;EJgkBR;;EI7jBM;;IAEE,mBAAA;EJgkBR;AACF;AC1nBI;EGSE;IACE,YAAA;EJonBN;;EIjnBI;IApCJ,cAAA;IACA,WAAA;EJypBA;;EI3oBA;IACE,cAAA;IACA,WAAA;EJ8oBF;;EIhpBA;IACE,cAAA;IACA,UAAA;EJmpBF;;EIrpBA;IACE,cAAA;IACA,qBAAA;EJwpBF;;EI1pBA;IACE,cAAA;IACA,UAAA;EJ6pBF;;EI/pBA;IACE,cAAA;IACA,UAAA;EJkqBF;;EIpqBA;IACE,cAAA;IACA,qBAAA;EJuqBF;;EIxoBI;IAhDJ,cAAA;IACA,WAAA;EJ4rBA;;EIvoBQ;IAhEN,cAAA;IACA,kBAAA;EJ2sBF;;EI5oBQ;IAhEN,cAAA;IACA,mBAAA;EJgtBF;;EIjpBQ;IAhEN,cAAA;IACA,UAAA;EJqtBF;;EItpBQ;IAhEN,cAAA;IACA,mBAAA;EJ0tBF;;EI3pBQ;IAhEN,cAAA;IACA,mBAAA;EJ+tBF;;EIhqBQ;IAhEN,cAAA;IACA,UAAA;EJouBF;;EIrqBQ;IAhEN,cAAA;IACA,mBAAA;EJyuBF;;EI1qBQ;IAhEN,cAAA;IACA,mBAAA;EJ8uBF;;EI/qBQ;IAhEN,cAAA;IACA,UAAA;EJmvBF;;EIprBQ;IAhEN,cAAA;IACA,mBAAA;EJwvBF;;EIzrBQ;IAhEN,cAAA;IACA,mBAAA;EJ6vBF;;EI9rBQ;IAhEN,cAAA;IACA,WAAA;EJkwBF;;EI3rBU;IAxDV,cAAA;EJuvBA;;EI/rBU;IAxDV,wBAAA;EJ2vBA;;EInsBU;IAxDV,yBAAA;EJ+vBA;;EIvsBU;IAxDV,gBAAA;EJmwBA;;EI3sBU;IAxDV,yBAAA;EJuwBA;;EI/sBU;IAxDV,yBAAA;EJ2wBA;;EIntBU;IAxDV,gBAAA;EJ+wBA;;EIvtBU;IAxDV,yBAAA;EJmxBA;;EI3tBU;IAxDV,yBAAA;EJuxBA;;EI/tBU;IAxDV,gBAAA;EJ2xBA;;EInuBU;IAxDV,yBAAA;EJ+xBA;;EIvuBU;IAxDV,yBAAA;EJmyBA;;EIhuBM;;IAEE,gBAAA;EJmuBR;;EIhuBM;;IAEE,gBAAA;EJmuBR;;EI1uBM;;IAEE,sBAAA;EJ6uBR;;EI1uBM;;IAEE,sBAAA;EJ6uBR;;EIpvBM;;IAEE,qBAAA;EJuvBR;;EIpvBM;;IAEE,qBAAA;EJuvBR;;EI9vBM;;IAEE,mBAAA;EJiwBR;;EI9vBM;;IAEE,mBAAA;EJiwBR;;EIxwBM;;IAEE,qBAAA;EJ2wBR;;EIxwBM;;IAEE,qBAAA;EJ2wBR;;EIlxBM;;IAEE,mBAAA;EJqxBR;;EIlxBM;;IAEE,mBAAA;EJqxBR;AACF;AC/0BI;EGSE;IACE,YAAA;EJy0BN;;EIt0BI;IApCJ,cAAA;IACA,WAAA;EJ82BA;;EIh2BA;IACE,cAAA;IACA,WAAA;EJm2BF;;EIr2BA;IACE,cAAA;IACA,UAAA;EJw2BF;;EI12BA;IACE,cAAA;IACA,qBAAA;EJ62BF;;EI/2BA;IACE,cAAA;IACA,UAAA;EJk3BF;;EIp3BA;IACE,cAAA;IACA,UAAA;EJu3BF;;EIz3BA;IACE,cAAA;IACA,qBAAA;EJ43BF;;EI71BI;IAhDJ,cAAA;IACA,WAAA;EJi5BA;;EI51BQ;IAhEN,cAAA;IACA,kBAAA;EJg6BF;;EIj2BQ;IAhEN,cAAA;IACA,mBAAA;EJq6BF;;EIt2BQ;IAhEN,cAAA;IACA,UAAA;EJ06BF;;EI32BQ;IAhEN,cAAA;IACA,mBAAA;EJ+6BF;;EIh3BQ;IAhEN,cAAA;IACA,mBAAA;EJo7BF;;EIr3BQ;IAhEN,cAAA;IACA,UAAA;EJy7BF;;EI13BQ;IAhEN,cAAA;IACA,mBAAA;EJ87BF;;EI/3BQ;IAhEN,cAAA;IACA,mBAAA;EJm8BF;;EIp4BQ;IAhEN,cAAA;IACA,UAAA;EJw8BF;;EIz4BQ;IAhEN,cAAA;IACA,mBAAA;EJ68BF;;EI94BQ;IAhEN,cAAA;IACA,mBAAA;EJk9BF;;EIn5BQ;IAhEN,cAAA;IACA,WAAA;EJu9BF;;EIh5BU;IAxDV,cAAA;EJ48BA;;EIp5BU;IAxDV,wBAAA;EJg9BA;;EIx5BU;IAxDV,yBAAA;EJo9BA;;EI55BU;IAxDV,gBAAA;EJw9BA;;EIh6BU;IAxDV,yBAAA;EJ49BA;;EIp6BU;IAxDV,yBAAA;EJg+BA;;EIx6BU;IAxDV,gBAAA;EJo+BA;;EI56BU;IAxDV,yBAAA;EJw+BA;;EIh7BU;IAxDV,yBAAA;EJ4+BA;;EIp7BU;IAxDV,gBAAA;EJg/BA;;EIx7BU;IAxDV,yBAAA;EJo/BA;;EI57BU;IAxDV,yBAAA;EJw/BA;;EIr7BM;;IAEE,gBAAA;EJw7BR;;EIr7BM;;IAEE,gBAAA;EJw7BR;;EI/7BM;;IAEE,sBAAA;EJk8BR;;EI/7BM;;IAEE,sBAAA;EJk8BR;;EIz8BM;;IAEE,qBAAA;EJ48BR;;EIz8BM;;IAEE,qBAAA;EJ48BR;;EIn9BM;;IAEE,mBAAA;EJs9BR;;EIn9BM;;IAEE,mBAAA;EJs9BR;;EI79BM;;IAEE,qBAAA;EJg+BR;;EI79BM;;IAEE,qBAAA;EJg+BR;;EIv+BM;;IAEE,mBAAA;EJ0+BR;;EIv+BM;;IAEE,mBAAA;EJ0+BR;AACF;ACpiCI;EGSE;IACE,YAAA;EJ8hCN;;EI3hCI;IApCJ,cAAA;IACA,WAAA;EJmkCA;;EIrjCA;IACE,cAAA;IACA,WAAA;EJwjCF;;EI1jCA;IACE,cAAA;IACA,UAAA;EJ6jCF;;EI/jCA;IACE,cAAA;IACA,qBAAA;EJkkCF;;EIpkCA;IACE,cAAA;IACA,UAAA;EJukCF;;EIzkCA;IACE,cAAA;IACA,UAAA;EJ4kCF;;EI9kCA;IACE,cAAA;IACA,qBAAA;EJilCF;;EIljCI;IAhDJ,cAAA;IACA,WAAA;EJsmCA;;EIjjCQ;IAhEN,cAAA;IACA,kBAAA;EJqnCF;;EItjCQ;IAhEN,cAAA;IACA,mBAAA;EJ0nCF;;EI3jCQ;IAhEN,cAAA;IACA,UAAA;EJ+nCF;;EIhkCQ;IAhEN,cAAA;IACA,mBAAA;EJooCF;;EIrkCQ;IAhEN,cAAA;IACA,mBAAA;EJyoCF;;EI1kCQ;IAhEN,cAAA;IACA,UAAA;EJ8oCF;;EI/kCQ;IAhEN,cAAA;IACA,mBAAA;EJmpCF;;EIplCQ;IAhEN,cAAA;IACA,mBAAA;EJwpCF;;EIzlCQ;IAhEN,cAAA;IACA,UAAA;EJ6pCF;;EI9lCQ;IAhEN,cAAA;IACA,mBAAA;EJkqCF;;EInmCQ;IAhEN,cAAA;IACA,mBAAA;EJuqCF;;EIxmCQ;IAhEN,cAAA;IACA,WAAA;EJ4qCF;;EIrmCU;IAxDV,cAAA;EJiqCA;;EIzmCU;IAxDV,wBAAA;EJqqCA;;EI7mCU;IAxDV,yBAAA;EJyqCA;;EIjnCU;IAxDV,gBAAA;EJ6qCA;;EIrnCU;IAxDV,yBAAA;EJirCA;;EIznCU;IAxDV,yBAAA;EJqrCA;;EI7nCU;IAxDV,gBAAA;EJyrCA;;EIjoCU;IAxDV,yBAAA;EJ6rCA;;EIroCU;IAxDV,yBAAA;EJisCA;;EIzoCU;IAxDV,gBAAA;EJqsCA;;EI7oCU;IAxDV,yBAAA;EJysCA;;EIjpCU;IAxDV,yBAAA;EJ6sCA;;EI1oCM;;IAEE,gBAAA;EJ6oCR;;EI1oCM;;IAEE,gBAAA;EJ6oCR;;EIppCM;;IAEE,sBAAA;EJupCR;;EIppCM;;IAEE,sBAAA;EJupCR;;EI9pCM;;IAEE,qBAAA;EJiqCR;;EI9pCM;;IAEE,qBAAA;EJiqCR;;EIxqCM;;IAEE,mBAAA;EJ2qCR;;EIxqCM;;IAEE,mBAAA;EJ2qCR;;EIlrCM;;IAEE,qBAAA;EJqrCR;;EIlrCM;;IAEE,qBAAA;EJqrCR;;EI5rCM;;IAEE,mBAAA;EJ+rCR;;EI5rCM;;IAEE,mBAAA;EJ+rCR;AACF;AKzvCQ;EAOI,0BAAA;ALqvCZ;;AK5vCQ;EAOI,gCAAA;ALyvCZ;;AKhwCQ;EAOI,yBAAA;AL6vCZ;;AKpwCQ;EAOI,wBAAA;ALiwCZ;;AKxwCQ;EAOI,yBAAA;ALqwCZ;;AK5wCQ;EAOI,6BAAA;ALywCZ;;AKhxCQ;EAOI,8BAAA;AL6wCZ;;AKpxCQ;EAOI,wBAAA;ALixCZ;;AKxxCQ;EAOI,+BAAA;ALqxCZ;;AK5xCQ;EAOI,wBAAA;ALyxCZ;;AKhyCQ;EAOI,yBAAA;AL6xCZ;;AKpyCQ;EAOI,8BAAA;ALiyCZ;;AKxyCQ;EAOI,iCAAA;ALqyCZ;;AK5yCQ;EAOI,sCAAA;ALyyCZ;;AKhzCQ;EAOI,yCAAA;AL6yCZ;;AKpzCQ;EAOI,uBAAA;ALizCZ;;AKxzCQ;EAOI,uBAAA;ALqzCZ;;AK5zCQ;EAOI,yBAAA;ALyzCZ;;AKh0CQ;EAOI,yBAAA;AL6zCZ;;AKp0CQ;EAOI,0BAAA;ALi0CZ;;AKx0CQ;EAOI,4BAAA;ALq0CZ;;AK50CQ;EAOI,kCAAA;ALy0CZ;;AKh1CQ;EAOI,sCAAA;AL60CZ;;AKp1CQ;EAOI,oCAAA;ALi1CZ;;AKx1CQ;EAOI,kCAAA;ALq1CZ;;AK51CQ;EAOI,yCAAA;ALy1CZ;;AKh2CQ;EAOI,wCAAA;AL61CZ;;AKp2CQ;EAOI,wCAAA;ALi2CZ;;AKx2CQ;EAOI,kCAAA;ALq2CZ;;AK52CQ;EAOI,gCAAA;ALy2CZ;;AKh3CQ;EAOI,8BAAA;AL62CZ;;AKp3CQ;EAOI,gCAAA;ALi3CZ;;AKx3CQ;EAOI,+BAAA;ALq3CZ;;AK53CQ;EAOI,oCAAA;ALy3CZ;;AKh4CQ;EAOI,kCAAA;AL63CZ;;AKp4CQ;EAOI,gCAAA;ALi4CZ;;AKx4CQ;EAOI,uCAAA;ALq4CZ;;AK54CQ;EAOI,sCAAA;ALy4CZ;;AKh5CQ;EAOI,iCAAA;AL64CZ;;AKp5CQ;EAOI,2BAAA;ALi5CZ;;AKx5CQ;EAOI,iCAAA;ALq5CZ;;AK55CQ;EAOI,+BAAA;ALy5CZ;;AKh6CQ;EAOI,6BAAA;AL65CZ;;AKp6CQ;EAOI,+BAAA;ALi6CZ;;AKx6CQ;EAOI,8BAAA;ALq6CZ;;AK56CQ;EAOI,oBAAA;ALy6CZ;;AKh7CQ;EAOI,mBAAA;AL66CZ;;AKp7CQ;EAOI,mBAAA;ALi7CZ;;AKx7CQ;EAOI,mBAAA;ALq7CZ;;AK57CQ;EAOI,mBAAA;ALy7CZ;;AKh8CQ;EAOI,mBAAA;AL67CZ;;AKp8CQ;EAOI,mBAAA;ALi8CZ;;AKx8CQ;EAOI,mBAAA;ALq8CZ;;AK58CQ;EAOI,oBAAA;ALy8CZ;;AKh9CQ;EAOI,0BAAA;AL68CZ;;AKp9CQ;EAOI,yBAAA;ALi9CZ;;AKx9CQ;EAOI,uBAAA;ALq9CZ;;AK59CQ;EAOI,yBAAA;ALy9CZ;;AKh+CQ;EAOI,uBAAA;AL69CZ;;AKp+CQ;EAOI,uBAAA;ALi+CZ;;AKx+CQ;EAOI,0BAAA;EAAA,yBAAA;ALs+CZ;;AK7+CQ;EAOI,gCAAA;EAAA,+BAAA;AL2+CZ;;AKl/CQ;EAOI,+BAAA;EAAA,8BAAA;ALg/CZ;;AKv/CQ;EAOI,6BAAA;EAAA,4BAAA;ALq/CZ;;AK5/CQ;EAOI,+BAAA;EAAA,8BAAA;AL0/CZ;;AKjgDQ;EAOI,6BAAA;EAAA,4BAAA;AL+/CZ;;AKtgDQ;EAOI,6BAAA;EAAA,4BAAA;ALogDZ;;AK3gDQ;EAOI,wBAAA;EAAA,2BAAA;ALygDZ;;AKhhDQ;EAOI,8BAAA;EAAA,iCAAA;AL8gDZ;;AKrhDQ;EAOI,6BAAA;EAAA,gCAAA;ALmhDZ;;AK1hDQ;EAOI,2BAAA;EAAA,8BAAA;ALwhDZ;;AK/hDQ;EAOI,6BAAA;EAAA,gCAAA;AL6hDZ;;AKpiDQ;EAOI,2BAAA;EAAA,8BAAA;ALkiDZ;;AKziDQ;EAOI,2BAAA;EAAA,8BAAA;ALuiDZ;;AK9iDQ;EAOI,wBAAA;AL2iDZ;;AKljDQ;EAOI,8BAAA;AL+iDZ;;AKtjDQ;EAOI,6BAAA;ALmjDZ;;AK1jDQ;EAOI,2BAAA;ALujDZ;;AK9jDQ;EAOI,6BAAA;AL2jDZ;;AKlkDQ;EAOI,2BAAA;AL+jDZ;;AKtkDQ;EAOI,2BAAA;ALmkDZ;;AK1kDQ;EAOI,0BAAA;ALukDZ;;AK9kDQ;EAOI,gCAAA;AL2kDZ;;AKllDQ;EAOI,+BAAA;AL+kDZ;;AKtlDQ;EAOI,6BAAA;ALmlDZ;;AK1lDQ;EAOI,+BAAA;ALulDZ;;AK9lDQ;EAOI,6BAAA;AL2lDZ;;AKlmDQ;EAOI,6BAAA;AL+lDZ;;AKtmDQ;EAOI,2BAAA;ALmmDZ;;AK1mDQ;EAOI,iCAAA;ALumDZ;;AK9mDQ;EAOI,gCAAA;AL2mDZ;;AKlnDQ;EAOI,8BAAA;AL+mDZ;;AKtnDQ;EAOI,gCAAA;ALmnDZ;;AK1nDQ;EAOI,8BAAA;ALunDZ;;AK9nDQ;EAOI,8BAAA;AL2nDZ;;AKloDQ;EAOI,yBAAA;AL+nDZ;;AKtoDQ;EAOI,+BAAA;ALmoDZ;;AK1oDQ;EAOI,8BAAA;ALuoDZ;;AK9oDQ;EAOI,4BAAA;AL2oDZ;;AKlpDQ;EAOI,8BAAA;AL+oDZ;;AKtpDQ;EAOI,4BAAA;ALmpDZ;;AK1pDQ;EAOI,4BAAA;ALupDZ;;AK9pDQ;EAOI,qBAAA;AL2pDZ;;AKlqDQ;EAOI,2BAAA;AL+pDZ;;AKtqDQ;EAOI,0BAAA;ALmqDZ;;AK1qDQ;EAOI,wBAAA;ALuqDZ;;AK9qDQ;EAOI,0BAAA;AL2qDZ;;AKlrDQ;EAOI,wBAAA;AL+qDZ;;AKtrDQ;EAOI,2BAAA;EAAA,0BAAA;ALorDZ;;AK3rDQ;EAOI,iCAAA;EAAA,gCAAA;ALyrDZ;;AKhsDQ;EAOI,gCAAA;EAAA,+BAAA;AL8rDZ;;AKrsDQ;EAOI,8BAAA;EAAA,6BAAA;ALmsDZ;;AK1sDQ;EAOI,gCAAA;EAAA,+BAAA;ALwsDZ;;AK/sDQ;EAOI,8BAAA;EAAA,6BAAA;AL6sDZ;;AKptDQ;EAOI,yBAAA;EAAA,4BAAA;ALktDZ;;AKztDQ;EAOI,+BAAA;EAAA,kCAAA;ALutDZ;;AK9tDQ;EAOI,8BAAA;EAAA,iCAAA;AL4tDZ;;AKnuDQ;EAOI,4BAAA;EAAA,+BAAA;ALiuDZ;;AKxuDQ;EAOI,8BAAA;EAAA,iCAAA;ALsuDZ;;AK7uDQ;EAOI,4BAAA;EAAA,+BAAA;AL2uDZ;;AKlvDQ;EAOI,yBAAA;AL+uDZ;;AKtvDQ;EAOI,+BAAA;ALmvDZ;;AK1vDQ;EAOI,8BAAA;ALuvDZ;;AK9vDQ;EAOI,4BAAA;AL2vDZ;;AKlwDQ;EAOI,8BAAA;AL+vDZ;;AKtwDQ;EAOI,4BAAA;ALmwDZ;;AK1wDQ;EAOI,2BAAA;ALuwDZ;;AK9wDQ;EAOI,iCAAA;AL2wDZ;;AKlxDQ;EAOI,gCAAA;AL+wDZ;;AKtxDQ;EAOI,8BAAA;ALmxDZ;;AK1xDQ;EAOI,gCAAA;ALuxDZ;;AK9xDQ;EAOI,8BAAA;AL2xDZ;;AKlyDQ;EAOI,4BAAA;AL+xDZ;;AKtyDQ;EAOI,kCAAA;ALmyDZ;;AK1yDQ;EAOI,iCAAA;ALuyDZ;;AK9yDQ;EAOI,+BAAA;AL2yDZ;;AKlzDQ;EAOI,iCAAA;AL+yDZ;;AKtzDQ;EAOI,+BAAA;ALmzDZ;;AK1zDQ;EAOI,0BAAA;ALuzDZ;;AK9zDQ;EAOI,gCAAA;AL2zDZ;;AKl0DQ;EAOI,+BAAA;AL+zDZ;;AKt0DQ;EAOI,6BAAA;ALm0DZ;;AK10DQ;EAOI,+BAAA;ALu0DZ;;AK90DQ;EAOI,6BAAA;AL20DZ;;ACl1DI;EIAI;IAOI,0BAAA;ELg1DV;;EKv1DM;IAOI,gCAAA;ELo1DV;;EK31DM;IAOI,yBAAA;ELw1DV;;EK/1DM;IAOI,wBAAA;EL41DV;;EKn2DM;IAOI,yBAAA;ELg2DV;;EKv2DM;IAOI,6BAAA;ELo2DV;;EK32DM;IAOI,8BAAA;ELw2DV;;EK/2DM;IAOI,wBAAA;EL42DV;;EKn3DM;IAOI,+BAAA;ELg3DV;;EKv3DM;IAOI,wBAAA;ELo3DV;;EK33DM;IAOI,yBAAA;ELw3DV;;EK/3DM;IAOI,8BAAA;EL43DV;;EKn4DM;IAOI,iCAAA;ELg4DV;;EKv4DM;IAOI,sCAAA;ELo4DV;;EK34DM;IAOI,yCAAA;ELw4DV;;EK/4DM;IAOI,uBAAA;EL44DV;;EKn5DM;IAOI,uBAAA;ELg5DV;;EKv5DM;IAOI,yBAAA;ELo5DV;;EK35DM;IAOI,yBAAA;ELw5DV;;EK/5DM;IAOI,0BAAA;EL45DV;;EKn6DM;IAOI,4BAAA;ELg6DV;;EKv6DM;IAOI,kCAAA;ELo6DV;;EK36DM;IAOI,sCAAA;ELw6DV;;EK/6DM;IAOI,oCAAA;EL46DV;;EKn7DM;IAOI,kCAAA;ELg7DV;;EKv7DM;IAOI,yCAAA;ELo7DV;;EK37DM;IAOI,wCAAA;ELw7DV;;EK/7DM;IAOI,wCAAA;EL47DV;;EKn8DM;IAOI,kCAAA;ELg8DV;;EKv8DM;IAOI,gCAAA;ELo8DV;;EK38DM;IAOI,8BAAA;ELw8DV;;EK/8DM;IAOI,gCAAA;EL48DV;;EKn9DM;IAOI,+BAAA;ELg9DV;;EKv9DM;IAOI,oCAAA;ELo9DV;;EK39DM;IAOI,kCAAA;ELw9DV;;EK/9DM;IAOI,gCAAA;EL49DV;;EKn+DM;IAOI,uCAAA;ELg+DV;;EKv+DM;IAOI,sCAAA;ELo+DV;;EK3+DM;IAOI,iCAAA;ELw+DV;;EK/+DM;IAOI,2BAAA;EL4+DV;;EKn/DM;IAOI,iCAAA;ELg/DV;;EKv/DM;IAOI,+BAAA;ELo/DV;;EK3/DM;IAOI,6BAAA;ELw/DV;;EK//DM;IAOI,+BAAA;EL4/DV;;EKngEM;IAOI,8BAAA;ELggEV;;EKvgEM;IAOI,oBAAA;ELogEV;;EK3gEM;IAOI,mBAAA;ELwgEV;;EK/gEM;IAOI,mBAAA;EL4gEV;;EKnhEM;IAOI,mBAAA;ELghEV;;EKvhEM;IAOI,mBAAA;ELohEV;;EK3hEM;IAOI,mBAAA;ELwhEV;;EK/hEM;IAOI,mBAAA;EL4hEV;;EKniEM;IAOI,mBAAA;ELgiEV;;EKviEM;IAOI,oBAAA;ELoiEV;;EK3iEM;IAOI,0BAAA;ELwiEV;;EK/iEM;IAOI,yBAAA;EL4iEV;;EKnjEM;IAOI,uBAAA;ELgjEV;;EKvjEM;IAOI,yBAAA;ELojEV;;EK3jEM;IAOI,uBAAA;ELwjEV;;EK/jEM;IAOI,uBAAA;EL4jEV;;EKnkEM;IAOI,0BAAA;IAAA,yBAAA;ELikEV;;EKxkEM;IAOI,gCAAA;IAAA,+BAAA;ELskEV;;EK7kEM;IAOI,+BAAA;IAAA,8BAAA;EL2kEV;;EKllEM;IAOI,6BAAA;IAAA,4BAAA;ELglEV;;EKvlEM;IAOI,+BAAA;IAAA,8BAAA;ELqlEV;;EK5lEM;IAOI,6BAAA;IAAA,4BAAA;EL0lEV;;EKjmEM;IAOI,6BAAA;IAAA,4BAAA;EL+lEV;;EKtmEM;IAOI,wBAAA;IAAA,2BAAA;ELomEV;;EK3mEM;IAOI,8BAAA;IAAA,iCAAA;ELymEV;;EKhnEM;IAOI,6BAAA;IAAA,gCAAA;EL8mEV;;EKrnEM;IAOI,2BAAA;IAAA,8BAAA;ELmnEV;;EK1nEM;IAOI,6BAAA;IAAA,gCAAA;ELwnEV;;EK/nEM;IAOI,2BAAA;IAAA,8BAAA;EL6nEV;;EKpoEM;IAOI,2BAAA;IAAA,8BAAA;ELkoEV;;EKzoEM;IAOI,wBAAA;ELsoEV;;EK7oEM;IAOI,8BAAA;EL0oEV;;EKjpEM;IAOI,6BAAA;EL8oEV;;EKrpEM;IAOI,2BAAA;ELkpEV;;EKzpEM;IAOI,6BAAA;ELspEV;;EK7pEM;IAOI,2BAAA;EL0pEV;;EKjqEM;IAOI,2BAAA;EL8pEV;;EKrqEM;IAOI,0BAAA;ELkqEV;;EKzqEM;IAOI,gCAAA;ELsqEV;;EK7qEM;IAOI,+BAAA;EL0qEV;;EKjrEM;IAOI,6BAAA;EL8qEV;;EKrrEM;IAOI,+BAAA;ELkrEV;;EKzrEM;IAOI,6BAAA;ELsrEV;;EK7rEM;IAOI,6BAAA;EL0rEV;;EKjsEM;IAOI,2BAAA;EL8rEV;;EKrsEM;IAOI,iCAAA;ELksEV;;EKzsEM;IAOI,gCAAA;ELssEV;;EK7sEM;IAOI,8BAAA;EL0sEV;;EKjtEM;IAOI,gCAAA;EL8sEV;;EKrtEM;IAOI,8BAAA;ELktEV;;EKztEM;IAOI,8BAAA;ELstEV;;EK7tEM;IAOI,yBAAA;EL0tEV;;EKjuEM;IAOI,+BAAA;EL8tEV;;EKruEM;IAOI,8BAAA;ELkuEV;;EKzuEM;IAOI,4BAAA;ELsuEV;;EK7uEM;IAOI,8BAAA;EL0uEV;;EKjvEM;IAOI,4BAAA;EL8uEV;;EKrvEM;IAOI,4BAAA;ELkvEV;;EKzvEM;IAOI,qBAAA;ELsvEV;;EK7vEM;IAOI,2BAAA;EL0vEV;;EKjwEM;IAOI,0BAAA;EL8vEV;;EKrwEM;IAOI,wBAAA;ELkwEV;;EKzwEM;IAOI,0BAAA;ELswEV;;EK7wEM;IAOI,wBAAA;EL0wEV;;EKjxEM;IAOI,2BAAA;IAAA,0BAAA;EL+wEV;;EKtxEM;IAOI,iCAAA;IAAA,gCAAA;ELoxEV;;EK3xEM;IAOI,gCAAA;IAAA,+BAAA;ELyxEV;;EKhyEM;IAOI,8BAAA;IAAA,6BAAA;EL8xEV;;EKryEM;IAOI,gCAAA;IAAA,+BAAA;ELmyEV;;EK1yEM;IAOI,8BAAA;IAAA,6BAAA;ELwyEV;;EK/yEM;IAOI,yBAAA;IAAA,4BAAA;EL6yEV;;EKpzEM;IAOI,+BAAA;IAAA,kCAAA;ELkzEV;;EKzzEM;IAOI,8BAAA;IAAA,iCAAA;ELuzEV;;EK9zEM;IAOI,4BAAA;IAAA,+BAAA;EL4zEV;;EKn0EM;IAOI,8BAAA;IAAA,iCAAA;ELi0EV;;EKx0EM;IAOI,4BAAA;IAAA,+BAAA;ELs0EV;;EK70EM;IAOI,yBAAA;EL00EV;;EKj1EM;IAOI,+BAAA;EL80EV;;EKr1EM;IAOI,8BAAA;ELk1EV;;EKz1EM;IAOI,4BAAA;ELs1EV;;EK71EM;IAOI,8BAAA;EL01EV;;EKj2EM;IAOI,4BAAA;EL81EV;;EKr2EM;IAOI,2BAAA;ELk2EV;;EKz2EM;IAOI,iCAAA;ELs2EV;;EK72EM;IAOI,gCAAA;EL02EV;;EKj3EM;IAOI,8BAAA;EL82EV;;EKr3EM;IAOI,gCAAA;ELk3EV;;EKz3EM;IAOI,8BAAA;ELs3EV;;EK73EM;IAOI,4BAAA;EL03EV;;EKj4EM;IAOI,kCAAA;EL83EV;;EKr4EM;IAOI,iCAAA;ELk4EV;;EKz4EM;IAOI,+BAAA;ELs4EV;;EK74EM;IAOI,iCAAA;EL04EV;;EKj5EM;IAOI,+BAAA;EL84EV;;EKr5EM;IAOI,0BAAA;ELk5EV;;EKz5EM;IAOI,gCAAA;ELs5EV;;EK75EM;IAOI,+BAAA;EL05EV;;EKj6EM;IAOI,6BAAA;EL85EV;;EKr6EM;IAOI,+BAAA;ELk6EV;;EKz6EM;IAOI,6BAAA;ELs6EV;AACF;AC96EI;EIAI;IAOI,0BAAA;EL26EV;;EKl7EM;IAOI,gCAAA;EL+6EV;;EKt7EM;IAOI,yBAAA;ELm7EV;;EK17EM;IAOI,wBAAA;ELu7EV;;EK97EM;IAOI,yBAAA;EL27EV;;EKl8EM;IAOI,6BAAA;EL+7EV;;EKt8EM;IAOI,8BAAA;ELm8EV;;EK18EM;IAOI,wBAAA;ELu8EV;;EK98EM;IAOI,+BAAA;EL28EV;;EKl9EM;IAOI,wBAAA;EL+8EV;;EKt9EM;IAOI,yBAAA;ELm9EV;;EK19EM;IAOI,8BAAA;ELu9EV;;EK99EM;IAOI,iCAAA;EL29EV;;EKl+EM;IAOI,sCAAA;EL+9EV;;EKt+EM;IAOI,yCAAA;ELm+EV;;EK1+EM;IAOI,uBAAA;ELu+EV;;EK9+EM;IAOI,uBAAA;EL2+EV;;EKl/EM;IAOI,yBAAA;EL++EV;;EKt/EM;IAOI,yBAAA;ELm/EV;;EK1/EM;IAOI,0BAAA;ELu/EV;;EK9/EM;IAOI,4BAAA;EL2/EV;;EKlgFM;IAOI,kCAAA;EL+/EV;;EKtgFM;IAOI,sCAAA;ELmgFV;;EK1gFM;IAOI,oCAAA;ELugFV;;EK9gFM;IAOI,kCAAA;EL2gFV;;EKlhFM;IAOI,yCAAA;EL+gFV;;EKthFM;IAOI,wCAAA;ELmhFV;;EK1hFM;IAOI,wCAAA;ELuhFV;;EK9hFM;IAOI,kCAAA;EL2hFV;;EKliFM;IAOI,gCAAA;EL+hFV;;EKtiFM;IAOI,8BAAA;ELmiFV;;EK1iFM;IAOI,gCAAA;ELuiFV;;EK9iFM;IAOI,+BAAA;EL2iFV;;EKljFM;IAOI,oCAAA;EL+iFV;;EKtjFM;IAOI,kCAAA;ELmjFV;;EK1jFM;IAOI,gCAAA;ELujFV;;EK9jFM;IAOI,uCAAA;EL2jFV;;EKlkFM;IAOI,sCAAA;EL+jFV;;EKtkFM;IAOI,iCAAA;ELmkFV;;EK1kFM;IAOI,2BAAA;ELukFV;;EK9kFM;IAOI,iCAAA;EL2kFV;;EKllFM;IAOI,+BAAA;EL+kFV;;EKtlFM;IAOI,6BAAA;ELmlFV;;EK1lFM;IAOI,+BAAA;ELulFV;;EK9lFM;IAOI,8BAAA;EL2lFV;;EKlmFM;IAOI,oBAAA;EL+lFV;;EKtmFM;IAOI,mBAAA;ELmmFV;;EK1mFM;IAOI,mBAAA;ELumFV;;EK9mFM;IAOI,mBAAA;EL2mFV;;EKlnFM;IAOI,mBAAA;EL+mFV;;EKtnFM;IAOI,mBAAA;ELmnFV;;EK1nFM;IAOI,mBAAA;ELunFV;;EK9nFM;IAOI,mBAAA;EL2nFV;;EKloFM;IAOI,oBAAA;EL+nFV;;EKtoFM;IAOI,0BAAA;ELmoFV;;EK1oFM;IAOI,yBAAA;ELuoFV;;EK9oFM;IAOI,uBAAA;EL2oFV;;EKlpFM;IAOI,yBAAA;EL+oFV;;EKtpFM;IAOI,uBAAA;ELmpFV;;EK1pFM;IAOI,uBAAA;ELupFV;;EK9pFM;IAOI,0BAAA;IAAA,yBAAA;EL4pFV;;EKnqFM;IAOI,gCAAA;IAAA,+BAAA;ELiqFV;;EKxqFM;IAOI,+BAAA;IAAA,8BAAA;ELsqFV;;EK7qFM;IAOI,6BAAA;IAAA,4BAAA;EL2qFV;;EKlrFM;IAOI,+BAAA;IAAA,8BAAA;ELgrFV;;EKvrFM;IAOI,6BAAA;IAAA,4BAAA;ELqrFV;;EK5rFM;IAOI,6BAAA;IAAA,4BAAA;EL0rFV;;EKjsFM;IAOI,wBAAA;IAAA,2BAAA;EL+rFV;;EKtsFM;IAOI,8BAAA;IAAA,iCAAA;ELosFV;;EK3sFM;IAOI,6BAAA;IAAA,gCAAA;ELysFV;;EKhtFM;IAOI,2BAAA;IAAA,8BAAA;EL8sFV;;EKrtFM;IAOI,6BAAA;IAAA,gCAAA;ELmtFV;;EK1tFM;IAOI,2BAAA;IAAA,8BAAA;ELwtFV;;EK/tFM;IAOI,2BAAA;IAAA,8BAAA;EL6tFV;;EKpuFM;IAOI,wBAAA;ELiuFV;;EKxuFM;IAOI,8BAAA;ELquFV;;EK5uFM;IAOI,6BAAA;ELyuFV;;EKhvFM;IAOI,2BAAA;EL6uFV;;EKpvFM;IAOI,6BAAA;ELivFV;;EKxvFM;IAOI,2BAAA;ELqvFV;;EK5vFM;IAOI,2BAAA;ELyvFV;;EKhwFM;IAOI,0BAAA;EL6vFV;;EKpwFM;IAOI,gCAAA;ELiwFV;;EKxwFM;IAOI,+BAAA;ELqwFV;;EK5wFM;IAOI,6BAAA;ELywFV;;EKhxFM;IAOI,+BAAA;EL6wFV;;EKpxFM;IAOI,6BAAA;ELixFV;;EKxxFM;IAOI,6BAAA;ELqxFV;;EK5xFM;IAOI,2BAAA;ELyxFV;;EKhyFM;IAOI,iCAAA;EL6xFV;;EKpyFM;IAOI,gCAAA;ELiyFV;;EKxyFM;IAOI,8BAAA;ELqyFV;;EK5yFM;IAOI,gCAAA;ELyyFV;;EKhzFM;IAOI,8BAAA;EL6yFV;;EKpzFM;IAOI,8BAAA;ELizFV;;EKxzFM;IAOI,yBAAA;ELqzFV;;EK5zFM;IAOI,+BAAA;ELyzFV;;EKh0FM;IAOI,8BAAA;EL6zFV;;EKp0FM;IAOI,4BAAA;ELi0FV;;EKx0FM;IAOI,8BAAA;ELq0FV;;EK50FM;IAOI,4BAAA;ELy0FV;;EKh1FM;IAOI,4BAAA;EL60FV;;EKp1FM;IAOI,qBAAA;ELi1FV;;EKx1FM;IAOI,2BAAA;ELq1FV;;EK51FM;IAOI,0BAAA;ELy1FV;;EKh2FM;IAOI,wBAAA;EL61FV;;EKp2FM;IAOI,0BAAA;ELi2FV;;EKx2FM;IAOI,wBAAA;ELq2FV;;EK52FM;IAOI,2BAAA;IAAA,0BAAA;EL02FV;;EKj3FM;IAOI,iCAAA;IAAA,gCAAA;EL+2FV;;EKt3FM;IAOI,gCAAA;IAAA,+BAAA;ELo3FV;;EK33FM;IAOI,8BAAA;IAAA,6BAAA;ELy3FV;;EKh4FM;IAOI,gCAAA;IAAA,+BAAA;EL83FV;;EKr4FM;IAOI,8BAAA;IAAA,6BAAA;ELm4FV;;EK14FM;IAOI,yBAAA;IAAA,4BAAA;ELw4FV;;EK/4FM;IAOI,+BAAA;IAAA,kCAAA;EL64FV;;EKp5FM;IAOI,8BAAA;IAAA,iCAAA;ELk5FV;;EKz5FM;IAOI,4BAAA;IAAA,+BAAA;ELu5FV;;EK95FM;IAOI,8BAAA;IAAA,iCAAA;EL45FV;;EKn6FM;IAOI,4BAAA;IAAA,+BAAA;ELi6FV;;EKx6FM;IAOI,yBAAA;ELq6FV;;EK56FM;IAOI,+BAAA;ELy6FV;;EKh7FM;IAOI,8BAAA;EL66FV;;EKp7FM;IAOI,4BAAA;ELi7FV;;EKx7FM;IAOI,8BAAA;ELq7FV;;EK57FM;IAOI,4BAAA;ELy7FV;;EKh8FM;IAOI,2BAAA;EL67FV;;EKp8FM;IAOI,iCAAA;ELi8FV;;EKx8FM;IAOI,gCAAA;ELq8FV;;EK58FM;IAOI,8BAAA;ELy8FV;;EKh9FM;IAOI,gCAAA;EL68FV;;EKp9FM;IAOI,8BAAA;ELi9FV;;EKx9FM;IAOI,4BAAA;ELq9FV;;EK59FM;IAOI,kCAAA;ELy9FV;;EKh+FM;IAOI,iCAAA;EL69FV;;EKp+FM;IAOI,+BAAA;ELi+FV;;EKx+FM;IAOI,iCAAA;ELq+FV;;EK5+FM;IAOI,+BAAA;ELy+FV;;EKh/FM;IAOI,0BAAA;EL6+FV;;EKp/FM;IAOI,gCAAA;ELi/FV;;EKx/FM;IAOI,+BAAA;ELq/FV;;EK5/FM;IAOI,6BAAA;ELy/FV;;EKhgGM;IAOI,+BAAA;EL6/FV;;EKpgGM;IAOI,6BAAA;ELigGV;AACF;ACzgGI;EIAI;IAOI,0BAAA;ELsgGV;;EK7gGM;IAOI,gCAAA;EL0gGV;;EKjhGM;IAOI,yBAAA;EL8gGV;;EKrhGM;IAOI,wBAAA;ELkhGV;;EKzhGM;IAOI,yBAAA;ELshGV;;EK7hGM;IAOI,6BAAA;EL0hGV;;EKjiGM;IAOI,8BAAA;EL8hGV;;EKriGM;IAOI,wBAAA;ELkiGV;;EKziGM;IAOI,+BAAA;ELsiGV;;EK7iGM;IAOI,wBAAA;EL0iGV;;EKjjGM;IAOI,yBAAA;EL8iGV;;EKrjGM;IAOI,8BAAA;ELkjGV;;EKzjGM;IAOI,iCAAA;ELsjGV;;EK7jGM;IAOI,sCAAA;EL0jGV;;EKjkGM;IAOI,yCAAA;EL8jGV;;EKrkGM;IAOI,uBAAA;ELkkGV;;EKzkGM;IAOI,uBAAA;ELskGV;;EK7kGM;IAOI,yBAAA;EL0kGV;;EKjlGM;IAOI,yBAAA;EL8kGV;;EKrlGM;IAOI,0BAAA;ELklGV;;EKzlGM;IAOI,4BAAA;ELslGV;;EK7lGM;IAOI,kCAAA;EL0lGV;;EKjmGM;IAOI,sCAAA;EL8lGV;;EKrmGM;IAOI,oCAAA;ELkmGV;;EKzmGM;IAOI,kCAAA;ELsmGV;;EK7mGM;IAOI,yCAAA;EL0mGV;;EKjnGM;IAOI,wCAAA;EL8mGV;;EKrnGM;IAOI,wCAAA;ELknGV;;EKznGM;IAOI,kCAAA;ELsnGV;;EK7nGM;IAOI,gCAAA;EL0nGV;;EKjoGM;IAOI,8BAAA;EL8nGV;;EKroGM;IAOI,gCAAA;ELkoGV;;EKzoGM;IAOI,+BAAA;ELsoGV;;EK7oGM;IAOI,oCAAA;EL0oGV;;EKjpGM;IAOI,kCAAA;EL8oGV;;EKrpGM;IAOI,gCAAA;ELkpGV;;EKzpGM;IAOI,uCAAA;ELspGV;;EK7pGM;IAOI,sCAAA;EL0pGV;;EKjqGM;IAOI,iCAAA;EL8pGV;;EKrqGM;IAOI,2BAAA;ELkqGV;;EKzqGM;IAOI,iCAAA;ELsqGV;;EK7qGM;IAOI,+BAAA;EL0qGV;;EKjrGM;IAOI,6BAAA;EL8qGV;;EKrrGM;IAOI,+BAAA;ELkrGV;;EKzrGM;IAOI,8BAAA;ELsrGV;;EK7rGM;IAOI,oBAAA;EL0rGV;;EKjsGM;IAOI,mBAAA;EL8rGV;;EKrsGM;IAOI,mBAAA;ELksGV;;EKzsGM;IAOI,mBAAA;ELssGV;;EK7sGM;IAOI,mBAAA;EL0sGV;;EKjtGM;IAOI,mBAAA;EL8sGV;;EKrtGM;IAOI,mBAAA;ELktGV;;EKztGM;IAOI,mBAAA;ELstGV;;EK7tGM;IAOI,oBAAA;EL0tGV;;EKjuGM;IAOI,0BAAA;EL8tGV;;EKruGM;IAOI,yBAAA;ELkuGV;;EKzuGM;IAOI,uBAAA;ELsuGV;;EK7uGM;IAOI,yBAAA;EL0uGV;;EKjvGM;IAOI,uBAAA;EL8uGV;;EKrvGM;IAOI,uBAAA;ELkvGV;;EKzvGM;IAOI,0BAAA;IAAA,yBAAA;ELuvGV;;EK9vGM;IAOI,gCAAA;IAAA,+BAAA;EL4vGV;;EKnwGM;IAOI,+BAAA;IAAA,8BAAA;ELiwGV;;EKxwGM;IAOI,6BAAA;IAAA,4BAAA;ELswGV;;EK7wGM;IAOI,+BAAA;IAAA,8BAAA;EL2wGV;;EKlxGM;IAOI,6BAAA;IAAA,4BAAA;ELgxGV;;EKvxGM;IAOI,6BAAA;IAAA,4BAAA;ELqxGV;;EK5xGM;IAOI,wBAAA;IAAA,2BAAA;EL0xGV;;EKjyGM;IAOI,8BAAA;IAAA,iCAAA;EL+xGV;;EKtyGM;IAOI,6BAAA;IAAA,gCAAA;ELoyGV;;EK3yGM;IAOI,2BAAA;IAAA,8BAAA;ELyyGV;;EKhzGM;IAOI,6BAAA;IAAA,gCAAA;EL8yGV;;EKrzGM;IAOI,2BAAA;IAAA,8BAAA;ELmzGV;;EK1zGM;IAOI,2BAAA;IAAA,8BAAA;ELwzGV;;EK/zGM;IAOI,wBAAA;EL4zGV;;EKn0GM;IAOI,8BAAA;ELg0GV;;EKv0GM;IAOI,6BAAA;ELo0GV;;EK30GM;IAOI,2BAAA;ELw0GV;;EK/0GM;IAOI,6BAAA;EL40GV;;EKn1GM;IAOI,2BAAA;ELg1GV;;EKv1GM;IAOI,2BAAA;ELo1GV;;EK31GM;IAOI,0BAAA;ELw1GV;;EK/1GM;IAOI,gCAAA;EL41GV;;EKn2GM;IAOI,+BAAA;ELg2GV;;EKv2GM;IAOI,6BAAA;ELo2GV;;EK32GM;IAOI,+BAAA;ELw2GV;;EK/2GM;IAOI,6BAAA;EL42GV;;EKn3GM;IAOI,6BAAA;ELg3GV;;EKv3GM;IAOI,2BAAA;ELo3GV;;EK33GM;IAOI,iCAAA;ELw3GV;;EK/3GM;IAOI,gCAAA;EL43GV;;EKn4GM;IAOI,8BAAA;ELg4GV;;EKv4GM;IAOI,gCAAA;ELo4GV;;EK34GM;IAOI,8BAAA;ELw4GV;;EK/4GM;IAOI,8BAAA;EL44GV;;EKn5GM;IAOI,yBAAA;ELg5GV;;EKv5GM;IAOI,+BAAA;ELo5GV;;EK35GM;IAOI,8BAAA;ELw5GV;;EK/5GM;IAOI,4BAAA;EL45GV;;EKn6GM;IAOI,8BAAA;ELg6GV;;EKv6GM;IAOI,4BAAA;ELo6GV;;EK36GM;IAOI,4BAAA;ELw6GV;;EK/6GM;IAOI,qBAAA;EL46GV;;EKn7GM;IAOI,2BAAA;ELg7GV;;EKv7GM;IAOI,0BAAA;ELo7GV;;EK37GM;IAOI,wBAAA;ELw7GV;;EK/7GM;IAOI,0BAAA;EL47GV;;EKn8GM;IAOI,wBAAA;ELg8GV;;EKv8GM;IAOI,2BAAA;IAAA,0BAAA;ELq8GV;;EK58GM;IAOI,iCAAA;IAAA,gCAAA;EL08GV;;EKj9GM;IAOI,gCAAA;IAAA,+BAAA;EL+8GV;;EKt9GM;IAOI,8BAAA;IAAA,6BAAA;ELo9GV;;EK39GM;IAOI,gCAAA;IAAA,+BAAA;ELy9GV;;EKh+GM;IAOI,8BAAA;IAAA,6BAAA;EL89GV;;EKr+GM;IAOI,yBAAA;IAAA,4BAAA;ELm+GV;;EK1+GM;IAOI,+BAAA;IAAA,kCAAA;ELw+GV;;EK/+GM;IAOI,8BAAA;IAAA,iCAAA;EL6+GV;;EKp/GM;IAOI,4BAAA;IAAA,+BAAA;ELk/GV;;EKz/GM;IAOI,8BAAA;IAAA,iCAAA;ELu/GV;;EK9/GM;IAOI,4BAAA;IAAA,+BAAA;EL4/GV;;EKngHM;IAOI,yBAAA;ELggHV;;EKvgHM;IAOI,+BAAA;ELogHV;;EK3gHM;IAOI,8BAAA;ELwgHV;;EK/gHM;IAOI,4BAAA;EL4gHV;;EKnhHM;IAOI,8BAAA;ELghHV;;EKvhHM;IAOI,4BAAA;ELohHV;;EK3hHM;IAOI,2BAAA;ELwhHV;;EK/hHM;IAOI,iCAAA;EL4hHV;;EKniHM;IAOI,gCAAA;ELgiHV;;EKviHM;IAOI,8BAAA;ELoiHV;;EK3iHM;IAOI,gCAAA;ELwiHV;;EK/iHM;IAOI,8BAAA;EL4iHV;;EKnjHM;IAOI,4BAAA;ELgjHV;;EKvjHM;IAOI,kCAAA;ELojHV;;EK3jHM;IAOI,iCAAA;ELwjHV;;EK/jHM;IAOI,+BAAA;EL4jHV;;EKnkHM;IAOI,iCAAA;ELgkHV;;EKvkHM;IAOI,+BAAA;ELokHV;;EK3kHM;IAOI,0BAAA;ELwkHV;;EK/kHM;IAOI,gCAAA;EL4kHV;;EKnlHM;IAOI,+BAAA;ELglHV;;EKvlHM;IAOI,6BAAA;ELolHV;;EK3lHM;IAOI,+BAAA;ELwlHV;;EK/lHM;IAOI,6BAAA;EL4lHV;AACF;ACpmHI;EIAI;IAOI,0BAAA;ELimHV;;EKxmHM;IAOI,gCAAA;ELqmHV;;EK5mHM;IAOI,yBAAA;ELymHV;;EKhnHM;IAOI,wBAAA;EL6mHV;;EKpnHM;IAOI,yBAAA;ELinHV;;EKxnHM;IAOI,6BAAA;ELqnHV;;EK5nHM;IAOI,8BAAA;ELynHV;;EKhoHM;IAOI,wBAAA;EL6nHV;;EKpoHM;IAOI,+BAAA;ELioHV;;EKxoHM;IAOI,wBAAA;ELqoHV;;EK5oHM;IAOI,yBAAA;ELyoHV;;EKhpHM;IAOI,8BAAA;EL6oHV;;EKppHM;IAOI,iCAAA;ELipHV;;EKxpHM;IAOI,sCAAA;ELqpHV;;EK5pHM;IAOI,yCAAA;ELypHV;;EKhqHM;IAOI,uBAAA;EL6pHV;;EKpqHM;IAOI,uBAAA;ELiqHV;;EKxqHM;IAOI,yBAAA;ELqqHV;;EK5qHM;IAOI,yBAAA;ELyqHV;;EKhrHM;IAOI,0BAAA;EL6qHV;;EKprHM;IAOI,4BAAA;ELirHV;;EKxrHM;IAOI,kCAAA;ELqrHV;;EK5rHM;IAOI,sCAAA;ELyrHV;;EKhsHM;IAOI,oCAAA;EL6rHV;;EKpsHM;IAOI,kCAAA;ELisHV;;EKxsHM;IAOI,yCAAA;ELqsHV;;EK5sHM;IAOI,wCAAA;ELysHV;;EKhtHM;IAOI,wCAAA;EL6sHV;;EKptHM;IAOI,kCAAA;ELitHV;;EKxtHM;IAOI,gCAAA;ELqtHV;;EK5tHM;IAOI,8BAAA;ELytHV;;EKhuHM;IAOI,gCAAA;EL6tHV;;EKpuHM;IAOI,+BAAA;ELiuHV;;EKxuHM;IAOI,oCAAA;ELquHV;;EK5uHM;IAOI,kCAAA;ELyuHV;;EKhvHM;IAOI,gCAAA;EL6uHV;;EKpvHM;IAOI,uCAAA;ELivHV;;EKxvHM;IAOI,sCAAA;ELqvHV;;EK5vHM;IAOI,iCAAA;ELyvHV;;EKhwHM;IAOI,2BAAA;EL6vHV;;EKpwHM;IAOI,iCAAA;ELiwHV;;EKxwHM;IAOI,+BAAA;ELqwHV;;EK5wHM;IAOI,6BAAA;ELywHV;;EKhxHM;IAOI,+BAAA;EL6wHV;;EKpxHM;IAOI,8BAAA;ELixHV;;EKxxHM;IAOI,oBAAA;ELqxHV;;EK5xHM;IAOI,mBAAA;ELyxHV;;EKhyHM;IAOI,mBAAA;EL6xHV;;EKpyHM;IAOI,mBAAA;ELiyHV;;EKxyHM;IAOI,mBAAA;ELqyHV;;EK5yHM;IAOI,mBAAA;ELyyHV;;EKhzHM;IAOI,mBAAA;EL6yHV;;EKpzHM;IAOI,mBAAA;ELizHV;;EKxzHM;IAOI,oBAAA;ELqzHV;;EK5zHM;IAOI,0BAAA;ELyzHV;;EKh0HM;IAOI,yBAAA;EL6zHV;;EKp0HM;IAOI,uBAAA;ELi0HV;;EKx0HM;IAOI,yBAAA;ELq0HV;;EK50HM;IAOI,uBAAA;ELy0HV;;EKh1HM;IAOI,uBAAA;EL60HV;;EKp1HM;IAOI,0BAAA;IAAA,yBAAA;ELk1HV;;EKz1HM;IAOI,gCAAA;IAAA,+BAAA;ELu1HV;;EK91HM;IAOI,+BAAA;IAAA,8BAAA;EL41HV;;EKn2HM;IAOI,6BAAA;IAAA,4BAAA;ELi2HV;;EKx2HM;IAOI,+BAAA;IAAA,8BAAA;ELs2HV;;EK72HM;IAOI,6BAAA;IAAA,4BAAA;EL22HV;;EKl3HM;IAOI,6BAAA;IAAA,4BAAA;ELg3HV;;EKv3HM;IAOI,wBAAA;IAAA,2BAAA;ELq3HV;;EK53HM;IAOI,8BAAA;IAAA,iCAAA;EL03HV;;EKj4HM;IAOI,6BAAA;IAAA,gCAAA;EL+3HV;;EKt4HM;IAOI,2BAAA;IAAA,8BAAA;ELo4HV;;EK34HM;IAOI,6BAAA;IAAA,gCAAA;ELy4HV;;EKh5HM;IAOI,2BAAA;IAAA,8BAAA;EL84HV;;EKr5HM;IAOI,2BAAA;IAAA,8BAAA;ELm5HV;;EK15HM;IAOI,wBAAA;ELu5HV;;EK95HM;IAOI,8BAAA;EL25HV;;EKl6HM;IAOI,6BAAA;EL+5HV;;EKt6HM;IAOI,2BAAA;ELm6HV;;EK16HM;IAOI,6BAAA;ELu6HV;;EK96HM;IAOI,2BAAA;EL26HV;;EKl7HM;IAOI,2BAAA;EL+6HV;;EKt7HM;IAOI,0BAAA;ELm7HV;;EK17HM;IAOI,gCAAA;ELu7HV;;EK97HM;IAOI,+BAAA;EL27HV;;EKl8HM;IAOI,6BAAA;EL+7HV;;EKt8HM;IAOI,+BAAA;ELm8HV;;EK18HM;IAOI,6BAAA;ELu8HV;;EK98HM;IAOI,6BAAA;EL28HV;;EKl9HM;IAOI,2BAAA;EL+8HV;;EKt9HM;IAOI,iCAAA;ELm9HV;;EK19HM;IAOI,gCAAA;ELu9HV;;EK99HM;IAOI,8BAAA;EL29HV;;EKl+HM;IAOI,gCAAA;EL+9HV;;EKt+HM;IAOI,8BAAA;ELm+HV;;EK1+HM;IAOI,8BAAA;ELu+HV;;EK9+HM;IAOI,yBAAA;EL2+HV;;EKl/HM;IAOI,+BAAA;EL++HV;;EKt/HM;IAOI,8BAAA;ELm/HV;;EK1/HM;IAOI,4BAAA;ELu/HV;;EK9/HM;IAOI,8BAAA;EL2/HV;;EKlgIM;IAOI,4BAAA;EL+/HV;;EKtgIM;IAOI,4BAAA;ELmgIV;;EK1gIM;IAOI,qBAAA;ELugIV;;EK9gIM;IAOI,2BAAA;EL2gIV;;EKlhIM;IAOI,0BAAA;EL+gIV;;EKthIM;IAOI,wBAAA;ELmhIV;;EK1hIM;IAOI,0BAAA;ELuhIV;;EK9hIM;IAOI,wBAAA;EL2hIV;;EKliIM;IAOI,2BAAA;IAAA,0BAAA;ELgiIV;;EKviIM;IAOI,iCAAA;IAAA,gCAAA;ELqiIV;;EK5iIM;IAOI,gCAAA;IAAA,+BAAA;EL0iIV;;EKjjIM;IAOI,8BAAA;IAAA,6BAAA;EL+iIV;;EKtjIM;IAOI,gCAAA;IAAA,+BAAA;ELojIV;;EK3jIM;IAOI,8BAAA;IAAA,6BAAA;ELyjIV;;EKhkIM;IAOI,yBAAA;IAAA,4BAAA;EL8jIV;;EKrkIM;IAOI,+BAAA;IAAA,kCAAA;ELmkIV;;EK1kIM;IAOI,8BAAA;IAAA,iCAAA;ELwkIV;;EK/kIM;IAOI,4BAAA;IAAA,+BAAA;EL6kIV;;EKplIM;IAOI,8BAAA;IAAA,iCAAA;ELklIV;;EKzlIM;IAOI,4BAAA;IAAA,+BAAA;ELulIV;;EK9lIM;IAOI,yBAAA;EL2lIV;;EKlmIM;IAOI,+BAAA;EL+lIV;;EKtmIM;IAOI,8BAAA;ELmmIV;;EK1mIM;IAOI,4BAAA;ELumIV;;EK9mIM;IAOI,8BAAA;EL2mIV;;EKlnIM;IAOI,4BAAA;EL+mIV;;EKtnIM;IAOI,2BAAA;ELmnIV;;EK1nIM;IAOI,iCAAA;ELunIV;;EK9nIM;IAOI,gCAAA;EL2nIV;;EKloIM;IAOI,8BAAA;EL+nIV;;EKtoIM;IAOI,gCAAA;ELmoIV;;EK1oIM;IAOI,8BAAA;ELuoIV;;EK9oIM;IAOI,4BAAA;EL2oIV;;EKlpIM;IAOI,kCAAA;EL+oIV;;EKtpIM;IAOI,iCAAA;ELmpIV;;EK1pIM;IAOI,+BAAA;ELupIV;;EK9pIM;IAOI,iCAAA;EL2pIV;;EKlqIM;IAOI,+BAAA;EL+pIV;;EKtqIM;IAOI,0BAAA;ELmqIV;;EK1qIM;IAOI,gCAAA;ELuqIV;;EK9qIM;IAOI,+BAAA;EL2qIV;;EKlrIM;IAOI,6BAAA;EL+qIV;;EKtrIM;IAOI,+BAAA;ELmrIV;;EK1rIM;IAOI,6BAAA;ELurIV;AACF;AC/rII;EIAI;IAOI,0BAAA;EL4rIV;;EKnsIM;IAOI,gCAAA;ELgsIV;;EKvsIM;IAOI,yBAAA;ELosIV;;EK3sIM;IAOI,wBAAA;ELwsIV;;EK/sIM;IAOI,yBAAA;EL4sIV;;EKntIM;IAOI,6BAAA;ELgtIV;;EKvtIM;IAOI,8BAAA;ELotIV;;EK3tIM;IAOI,wBAAA;ELwtIV;;EK/tIM;IAOI,+BAAA;EL4tIV;;EKnuIM;IAOI,wBAAA;ELguIV;;EKvuIM;IAOI,yBAAA;ELouIV;;EK3uIM;IAOI,8BAAA;ELwuIV;;EK/uIM;IAOI,iCAAA;EL4uIV;;EKnvIM;IAOI,sCAAA;ELgvIV;;EKvvIM;IAOI,yCAAA;ELovIV;;EK3vIM;IAOI,uBAAA;ELwvIV;;EK/vIM;IAOI,uBAAA;EL4vIV;;EKnwIM;IAOI,yBAAA;ELgwIV;;EKvwIM;IAOI,yBAAA;ELowIV;;EK3wIM;IAOI,0BAAA;ELwwIV;;EK/wIM;IAOI,4BAAA;EL4wIV;;EKnxIM;IAOI,kCAAA;ELgxIV;;EKvxIM;IAOI,sCAAA;ELoxIV;;EK3xIM;IAOI,oCAAA;ELwxIV;;EK/xIM;IAOI,kCAAA;EL4xIV;;EKnyIM;IAOI,yCAAA;ELgyIV;;EKvyIM;IAOI,wCAAA;ELoyIV;;EK3yIM;IAOI,wCAAA;ELwyIV;;EK/yIM;IAOI,kCAAA;EL4yIV;;EKnzIM;IAOI,gCAAA;ELgzIV;;EKvzIM;IAOI,8BAAA;ELozIV;;EK3zIM;IAOI,gCAAA;ELwzIV;;EK/zIM;IAOI,+BAAA;EL4zIV;;EKn0IM;IAOI,oCAAA;ELg0IV;;EKv0IM;IAOI,kCAAA;ELo0IV;;EK30IM;IAOI,gCAAA;ELw0IV;;EK/0IM;IAOI,uCAAA;EL40IV;;EKn1IM;IAOI,sCAAA;ELg1IV;;EKv1IM;IAOI,iCAAA;ELo1IV;;EK31IM;IAOI,2BAAA;ELw1IV;;EK/1IM;IAOI,iCAAA;EL41IV;;EKn2IM;IAOI,+BAAA;ELg2IV;;EKv2IM;IAOI,6BAAA;ELo2IV;;EK32IM;IAOI,+BAAA;ELw2IV;;EK/2IM;IAOI,8BAAA;EL42IV;;EKn3IM;IAOI,oBAAA;ELg3IV;;EKv3IM;IAOI,mBAAA;ELo3IV;;EK33IM;IAOI,mBAAA;ELw3IV;;EK/3IM;IAOI,mBAAA;EL43IV;;EKn4IM;IAOI,mBAAA;ELg4IV;;EKv4IM;IAOI,mBAAA;ELo4IV;;EK34IM;IAOI,mBAAA;ELw4IV;;EK/4IM;IAOI,mBAAA;EL44IV;;EKn5IM;IAOI,oBAAA;ELg5IV;;EKv5IM;IAOI,0BAAA;ELo5IV;;EK35IM;IAOI,yBAAA;ELw5IV;;EK/5IM;IAOI,uBAAA;EL45IV;;EKn6IM;IAOI,yBAAA;ELg6IV;;EKv6IM;IAOI,uBAAA;ELo6IV;;EK36IM;IAOI,uBAAA;ELw6IV;;EK/6IM;IAOI,0BAAA;IAAA,yBAAA;EL66IV;;EKp7IM;IAOI,gCAAA;IAAA,+BAAA;ELk7IV;;EKz7IM;IAOI,+BAAA;IAAA,8BAAA;ELu7IV;;EK97IM;IAOI,6BAAA;IAAA,4BAAA;EL47IV;;EKn8IM;IAOI,+BAAA;IAAA,8BAAA;ELi8IV;;EKx8IM;IAOI,6BAAA;IAAA,4BAAA;ELs8IV;;EK78IM;IAOI,6BAAA;IAAA,4BAAA;EL28IV;;EKl9IM;IAOI,wBAAA;IAAA,2BAAA;ELg9IV;;EKv9IM;IAOI,8BAAA;IAAA,iCAAA;ELq9IV;;EK59IM;IAOI,6BAAA;IAAA,gCAAA;EL09IV;;EKj+IM;IAOI,2BAAA;IAAA,8BAAA;EL+9IV;;EKt+IM;IAOI,6BAAA;IAAA,gCAAA;ELo+IV;;EK3+IM;IAOI,2BAAA;IAAA,8BAAA;ELy+IV;;EKh/IM;IAOI,2BAAA;IAAA,8BAAA;EL8+IV;;EKr/IM;IAOI,wBAAA;ELk/IV;;EKz/IM;IAOI,8BAAA;ELs/IV;;EK7/IM;IAOI,6BAAA;EL0/IV;;EKjgJM;IAOI,2BAAA;EL8/IV;;EKrgJM;IAOI,6BAAA;ELkgJV;;EKzgJM;IAOI,2BAAA;ELsgJV;;EK7gJM;IAOI,2BAAA;EL0gJV;;EKjhJM;IAOI,0BAAA;EL8gJV;;EKrhJM;IAOI,gCAAA;ELkhJV;;EKzhJM;IAOI,+BAAA;ELshJV;;EK7hJM;IAOI,6BAAA;EL0hJV;;EKjiJM;IAOI,+BAAA;EL8hJV;;EKriJM;IAOI,6BAAA;ELkiJV;;EKziJM;IAOI,6BAAA;ELsiJV;;EK7iJM;IAOI,2BAAA;EL0iJV;;EKjjJM;IAOI,iCAAA;EL8iJV;;EKrjJM;IAOI,gCAAA;ELkjJV;;EKzjJM;IAOI,8BAAA;ELsjJV;;EK7jJM;IAOI,gCAAA;EL0jJV;;EKjkJM;IAOI,8BAAA;EL8jJV;;EKrkJM;IAOI,8BAAA;ELkkJV;;EKzkJM;IAOI,yBAAA;ELskJV;;EK7kJM;IAOI,+BAAA;EL0kJV;;EKjlJM;IAOI,8BAAA;EL8kJV;;EKrlJM;IAOI,4BAAA;ELklJV;;EKzlJM;IAOI,8BAAA;ELslJV;;EK7lJM;IAOI,4BAAA;EL0lJV;;EKjmJM;IAOI,4BAAA;EL8lJV;;EKrmJM;IAOI,qBAAA;ELkmJV;;EKzmJM;IAOI,2BAAA;ELsmJV;;EK7mJM;IAOI,0BAAA;EL0mJV;;EKjnJM;IAOI,wBAAA;EL8mJV;;EKrnJM;IAOI,0BAAA;ELknJV;;EKznJM;IAOI,wBAAA;ELsnJV;;EK7nJM;IAOI,2BAAA;IAAA,0BAAA;EL2nJV;;EKloJM;IAOI,iCAAA;IAAA,gCAAA;ELgoJV;;EKvoJM;IAOI,gCAAA;IAAA,+BAAA;ELqoJV;;EK5oJM;IAOI,8BAAA;IAAA,6BAAA;EL0oJV;;EKjpJM;IAOI,gCAAA;IAAA,+BAAA;EL+oJV;;EKtpJM;IAOI,8BAAA;IAAA,6BAAA;ELopJV;;EK3pJM;IAOI,yBAAA;IAAA,4BAAA;ELypJV;;EKhqJM;IAOI,+BAAA;IAAA,kCAAA;EL8pJV;;EKrqJM;IAOI,8BAAA;IAAA,iCAAA;ELmqJV;;EK1qJM;IAOI,4BAAA;IAAA,+BAAA;ELwqJV;;EK/qJM;IAOI,8BAAA;IAAA,iCAAA;EL6qJV;;EKprJM;IAOI,4BAAA;IAAA,+BAAA;ELkrJV;;EKzrJM;IAOI,yBAAA;ELsrJV;;EK7rJM;IAOI,+BAAA;EL0rJV;;EKjsJM;IAOI,8BAAA;EL8rJV;;EKrsJM;IAOI,4BAAA;ELksJV;;EKzsJM;IAOI,8BAAA;ELssJV;;EK7sJM;IAOI,4BAAA;EL0sJV;;EKjtJM;IAOI,2BAAA;EL8sJV;;EKrtJM;IAOI,iCAAA;ELktJV;;EKztJM;IAOI,gCAAA;ELstJV;;EK7tJM;IAOI,8BAAA;EL0tJV;;EKjuJM;IAOI,gCAAA;EL8tJV;;EKruJM;IAOI,8BAAA;ELkuJV;;EKzuJM;IAOI,4BAAA;ELsuJV;;EK7uJM;IAOI,kCAAA;EL0uJV;;EKjvJM;IAOI,iCAAA;EL8uJV;;EKrvJM;IAOI,+BAAA;ELkvJV;;EKzvJM;IAOI,iCAAA;ELsvJV;;EK7vJM;IAOI,+BAAA;EL0vJV;;EKjwJM;IAOI,0BAAA;EL8vJV;;EKrwJM;IAOI,gCAAA;ELkwJV;;EKzwJM;IAOI,+BAAA;ELswJV;;EK7wJM;IAOI,6BAAA;EL0wJV;;EKjxJM;IAOI,+BAAA;EL8wJV;;EKrxJM;IAOI,6BAAA;ELkxJV;AACF;AMnzJA;EDyBQ;IAOI,0BAAA;ELuxJV;;EK9xJM;IAOI,gCAAA;EL2xJV;;EKlyJM;IAOI,yBAAA;EL+xJV;;EKtyJM;IAOI,wBAAA;ELmyJV;;EK1yJM;IAOI,yBAAA;ELuyJV;;EK9yJM;IAOI,6BAAA;EL2yJV;;EKlzJM;IAOI,8BAAA;EL+yJV;;EKtzJM;IAOI,wBAAA;ELmzJV;;EK1zJM;IAOI,+BAAA;ELuzJV;;EK9zJM;IAOI,wBAAA;EL2zJV;AACF","file":"bootstrap-grid.css","sourcesContent":["/*!\n * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n$include-column-box-sizing: true !default;\n\n@import \"functions\";\n@import \"variables\";\n\n@import \"mixins/lists\";\n@import \"mixins/breakpoints\";\n@import \"mixins/container\";\n@import \"mixins/grid\";\n@import \"mixins/utilities\";\n\n@import \"vendor/rfs\";\n\n@import \"containers\";\n@import \"grid\";\n\n@import \"utilities\";\n// Only use the utilities we need\n// stylelint-disable-next-line scss/dollar-variable-default\n$utilities: map-get-multiple(\n $utilities,\n (\n \"display\",\n \"order\",\n \"flex\",\n \"flex-direction\",\n \"flex-grow\",\n \"flex-shrink\",\n \"flex-wrap\",\n \"justify-content\",\n \"align-items\",\n \"align-content\",\n \"align-self\",\n \"margin\",\n \"margin-x\",\n \"margin-y\",\n \"margin-top\",\n \"margin-end\",\n \"margin-bottom\",\n \"margin-start\",\n \"negative-margin\",\n \"negative-margin-x\",\n \"negative-margin-y\",\n \"negative-margin-top\",\n \"negative-margin-end\",\n \"negative-margin-bottom\",\n \"negative-margin-start\",\n \"padding\",\n \"padding-x\",\n \"padding-y\",\n \"padding-top\",\n \"padding-end\",\n \"padding-bottom\",\n \"padding-start\",\n )\n);\n\n@import \"utilities/api\";\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n width: 100%;\n padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter});\n padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter});\n margin-right: auto;\n margin-left: auto;\n}\n","/*!\n * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n width: 100%;\n padding-right: var(--bs-gutter-x, 0.75rem);\n padding-left: var(--bs-gutter-x, 0.75rem);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--bs-gutter-y) * -1);\n margin-right: calc(var(--bs-gutter-x) * -.5);\n margin-left: calc(var(--bs-gutter-x) * -.5);\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * .5);\n padding-left: calc(var(--bs-gutter-x) * .5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-sm-0 {\n margin-left: 0;\n }\n\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-sm-3 {\n margin-left: 25%;\n }\n\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-sm-6 {\n margin-left: 50%;\n }\n\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-sm-9 {\n margin-left: 75%;\n }\n\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-md-0 {\n margin-left: 0;\n }\n\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-md-3 {\n margin-left: 25%;\n }\n\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-md-6 {\n margin-left: 50%;\n }\n\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-md-9 {\n margin-left: 75%;\n }\n\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-lg-0 {\n margin-left: 0;\n }\n\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-lg-3 {\n margin-left: 25%;\n }\n\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-lg-6 {\n margin-left: 50%;\n }\n\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-lg-9 {\n margin-left: 75%;\n }\n\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xl-0 {\n margin-left: 0;\n }\n\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xl-3 {\n margin-left: 25%;\n }\n\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xl-6 {\n margin-left: 50%;\n }\n\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xl-9 {\n margin-left: 75%;\n }\n\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xxl-0 {\n margin-left: 0;\n }\n\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xxl-3 {\n margin-left: 25%;\n }\n\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xxl-6 {\n margin-left: 50%;\n }\n\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xxl-9 {\n margin-left: 75%;\n }\n\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n\n .d-sm-inline-block {\n display: inline-block !important;\n }\n\n .d-sm-block {\n display: block !important;\n }\n\n .d-sm-grid {\n display: grid !important;\n }\n\n .d-sm-table {\n display: table !important;\n }\n\n .d-sm-table-row {\n display: table-row !important;\n }\n\n .d-sm-table-cell {\n display: table-cell !important;\n }\n\n .d-sm-flex {\n display: flex !important;\n }\n\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n\n .d-sm-none {\n display: none !important;\n }\n\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-sm-row {\n flex-direction: row !important;\n }\n\n .flex-sm-column {\n flex-direction: column !important;\n }\n\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-sm-center {\n justify-content: center !important;\n }\n\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n\n .align-items-sm-center {\n align-items: center !important;\n }\n\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n\n .align-content-sm-center {\n align-content: center !important;\n }\n\n .align-content-sm-between {\n align-content: space-between !important;\n }\n\n .align-content-sm-around {\n align-content: space-around !important;\n }\n\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n\n .align-self-sm-auto {\n align-self: auto !important;\n }\n\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n\n .align-self-sm-center {\n align-self: center !important;\n }\n\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n\n .order-sm-first {\n order: -1 !important;\n }\n\n .order-sm-0 {\n order: 0 !important;\n }\n\n .order-sm-1 {\n order: 1 !important;\n }\n\n .order-sm-2 {\n order: 2 !important;\n }\n\n .order-sm-3 {\n order: 3 !important;\n }\n\n .order-sm-4 {\n order: 4 !important;\n }\n\n .order-sm-5 {\n order: 5 !important;\n }\n\n .order-sm-last {\n order: 6 !important;\n }\n\n .m-sm-0 {\n margin: 0 !important;\n }\n\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n\n .m-sm-3 {\n margin: 1rem !important;\n }\n\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n\n .m-sm-5 {\n margin: 3rem !important;\n }\n\n .m-sm-auto {\n margin: auto !important;\n }\n\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n\n .mt-sm-auto {\n margin-top: auto !important;\n }\n\n .me-sm-0 {\n margin-right: 0 !important;\n }\n\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n\n .me-sm-auto {\n margin-right: auto !important;\n }\n\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n\n .ms-sm-auto {\n margin-left: auto !important;\n }\n\n .p-sm-0 {\n padding: 0 !important;\n }\n\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n\n .p-sm-3 {\n padding: 1rem !important;\n }\n\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n\n .p-sm-5 {\n padding: 3rem !important;\n }\n\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n\n .d-md-inline-block {\n display: inline-block !important;\n }\n\n .d-md-block {\n display: block !important;\n }\n\n .d-md-grid {\n display: grid !important;\n }\n\n .d-md-table {\n display: table !important;\n }\n\n .d-md-table-row {\n display: table-row !important;\n }\n\n .d-md-table-cell {\n display: table-cell !important;\n }\n\n .d-md-flex {\n display: flex !important;\n }\n\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n\n .d-md-none {\n display: none !important;\n }\n\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-md-row {\n flex-direction: row !important;\n }\n\n .flex-md-column {\n flex-direction: column !important;\n }\n\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-md-center {\n justify-content: center !important;\n }\n\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-md-start {\n align-items: flex-start !important;\n }\n\n .align-items-md-end {\n align-items: flex-end !important;\n }\n\n .align-items-md-center {\n align-items: center !important;\n }\n\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n\n .align-content-md-start {\n align-content: flex-start !important;\n }\n\n .align-content-md-end {\n align-content: flex-end !important;\n }\n\n .align-content-md-center {\n align-content: center !important;\n }\n\n .align-content-md-between {\n align-content: space-between !important;\n }\n\n .align-content-md-around {\n align-content: space-around !important;\n }\n\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n\n .align-self-md-auto {\n align-self: auto !important;\n }\n\n .align-self-md-start {\n align-self: flex-start !important;\n }\n\n .align-self-md-end {\n align-self: flex-end !important;\n }\n\n .align-self-md-center {\n align-self: center !important;\n }\n\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n\n .order-md-first {\n order: -1 !important;\n }\n\n .order-md-0 {\n order: 0 !important;\n }\n\n .order-md-1 {\n order: 1 !important;\n }\n\n .order-md-2 {\n order: 2 !important;\n }\n\n .order-md-3 {\n order: 3 !important;\n }\n\n .order-md-4 {\n order: 4 !important;\n }\n\n .order-md-5 {\n order: 5 !important;\n }\n\n .order-md-last {\n order: 6 !important;\n }\n\n .m-md-0 {\n margin: 0 !important;\n }\n\n .m-md-1 {\n margin: 0.25rem !important;\n }\n\n .m-md-2 {\n margin: 0.5rem !important;\n }\n\n .m-md-3 {\n margin: 1rem !important;\n }\n\n .m-md-4 {\n margin: 1.5rem !important;\n }\n\n .m-md-5 {\n margin: 3rem !important;\n }\n\n .m-md-auto {\n margin: auto !important;\n }\n\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-md-0 {\n margin-top: 0 !important;\n }\n\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n\n .mt-md-auto {\n margin-top: auto !important;\n }\n\n .me-md-0 {\n margin-right: 0 !important;\n }\n\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-md-3 {\n margin-right: 1rem !important;\n }\n\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-md-5 {\n margin-right: 3rem !important;\n }\n\n .me-md-auto {\n margin-right: auto !important;\n }\n\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n\n .ms-md-0 {\n margin-left: 0 !important;\n }\n\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n\n .ms-md-auto {\n margin-left: auto !important;\n }\n\n .p-md-0 {\n padding: 0 !important;\n }\n\n .p-md-1 {\n padding: 0.25rem !important;\n }\n\n .p-md-2 {\n padding: 0.5rem !important;\n }\n\n .p-md-3 {\n padding: 1rem !important;\n }\n\n .p-md-4 {\n padding: 1.5rem !important;\n }\n\n .p-md-5 {\n padding: 3rem !important;\n }\n\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-md-0 {\n padding-top: 0 !important;\n }\n\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n\n .pe-md-0 {\n padding-right: 0 !important;\n }\n\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-md-0 {\n padding-left: 0 !important;\n }\n\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n\n .d-lg-inline-block {\n display: inline-block !important;\n }\n\n .d-lg-block {\n display: block !important;\n }\n\n .d-lg-grid {\n display: grid !important;\n }\n\n .d-lg-table {\n display: table !important;\n }\n\n .d-lg-table-row {\n display: table-row !important;\n }\n\n .d-lg-table-cell {\n display: table-cell !important;\n }\n\n .d-lg-flex {\n display: flex !important;\n }\n\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n\n .d-lg-none {\n display: none !important;\n }\n\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-lg-row {\n flex-direction: row !important;\n }\n\n .flex-lg-column {\n flex-direction: column !important;\n }\n\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-lg-center {\n justify-content: center !important;\n }\n\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n\n .align-items-lg-center {\n align-items: center !important;\n }\n\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n\n .align-content-lg-center {\n align-content: center !important;\n }\n\n .align-content-lg-between {\n align-content: space-between !important;\n }\n\n .align-content-lg-around {\n align-content: space-around !important;\n }\n\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n\n .align-self-lg-auto {\n align-self: auto !important;\n }\n\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n\n .align-self-lg-center {\n align-self: center !important;\n }\n\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n\n .order-lg-first {\n order: -1 !important;\n }\n\n .order-lg-0 {\n order: 0 !important;\n }\n\n .order-lg-1 {\n order: 1 !important;\n }\n\n .order-lg-2 {\n order: 2 !important;\n }\n\n .order-lg-3 {\n order: 3 !important;\n }\n\n .order-lg-4 {\n order: 4 !important;\n }\n\n .order-lg-5 {\n order: 5 !important;\n }\n\n .order-lg-last {\n order: 6 !important;\n }\n\n .m-lg-0 {\n margin: 0 !important;\n }\n\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n\n .m-lg-3 {\n margin: 1rem !important;\n }\n\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n\n .m-lg-5 {\n margin: 3rem !important;\n }\n\n .m-lg-auto {\n margin: auto !important;\n }\n\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n\n .mt-lg-auto {\n margin-top: auto !important;\n }\n\n .me-lg-0 {\n margin-right: 0 !important;\n }\n\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n\n .me-lg-auto {\n margin-right: auto !important;\n }\n\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n\n .ms-lg-auto {\n margin-left: auto !important;\n }\n\n .p-lg-0 {\n padding: 0 !important;\n }\n\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n\n .p-lg-3 {\n padding: 1rem !important;\n }\n\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n\n .p-lg-5 {\n padding: 3rem !important;\n }\n\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n\n .d-xl-inline-block {\n display: inline-block !important;\n }\n\n .d-xl-block {\n display: block !important;\n }\n\n .d-xl-grid {\n display: grid !important;\n }\n\n .d-xl-table {\n display: table !important;\n }\n\n .d-xl-table-row {\n display: table-row !important;\n }\n\n .d-xl-table-cell {\n display: table-cell !important;\n }\n\n .d-xl-flex {\n display: flex !important;\n }\n\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xl-none {\n display: none !important;\n }\n\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xl-row {\n flex-direction: row !important;\n }\n\n .flex-xl-column {\n flex-direction: column !important;\n }\n\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xl-center {\n justify-content: center !important;\n }\n\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xl-center {\n align-items: center !important;\n }\n\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xl-center {\n align-content: center !important;\n }\n\n .align-content-xl-between {\n align-content: space-between !important;\n }\n\n .align-content-xl-around {\n align-content: space-around !important;\n }\n\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xl-auto {\n align-self: auto !important;\n }\n\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xl-center {\n align-self: center !important;\n }\n\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n\n .order-xl-first {\n order: -1 !important;\n }\n\n .order-xl-0 {\n order: 0 !important;\n }\n\n .order-xl-1 {\n order: 1 !important;\n }\n\n .order-xl-2 {\n order: 2 !important;\n }\n\n .order-xl-3 {\n order: 3 !important;\n }\n\n .order-xl-4 {\n order: 4 !important;\n }\n\n .order-xl-5 {\n order: 5 !important;\n }\n\n .order-xl-last {\n order: 6 !important;\n }\n\n .m-xl-0 {\n margin: 0 !important;\n }\n\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xl-3 {\n margin: 1rem !important;\n }\n\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xl-5 {\n margin: 3rem !important;\n }\n\n .m-xl-auto {\n margin: auto !important;\n }\n\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xl-auto {\n margin-top: auto !important;\n }\n\n .me-xl-0 {\n margin-right: 0 !important;\n }\n\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xl-auto {\n margin-right: auto !important;\n }\n\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xl-auto {\n margin-left: auto !important;\n }\n\n .p-xl-0 {\n padding: 0 !important;\n }\n\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xl-3 {\n padding: 1rem !important;\n }\n\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xl-5 {\n padding: 3rem !important;\n }\n\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n\n .d-xxl-block {\n display: block !important;\n }\n\n .d-xxl-grid {\n display: grid !important;\n }\n\n .d-xxl-table {\n display: table !important;\n }\n\n .d-xxl-table-row {\n display: table-row !important;\n }\n\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n\n .d-xxl-flex {\n display: flex !important;\n }\n\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xxl-none {\n display: none !important;\n }\n\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xxl-row {\n flex-direction: row !important;\n }\n\n .flex-xxl-column {\n flex-direction: column !important;\n }\n\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xxl-center {\n align-items: center !important;\n }\n\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xxl-center {\n align-content: center !important;\n }\n\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xxl-center {\n align-self: center !important;\n }\n\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n\n .order-xxl-first {\n order: -1 !important;\n }\n\n .order-xxl-0 {\n order: 0 !important;\n }\n\n .order-xxl-1 {\n order: 1 !important;\n }\n\n .order-xxl-2 {\n order: 2 !important;\n }\n\n .order-xxl-3 {\n order: 3 !important;\n }\n\n .order-xxl-4 {\n order: 4 !important;\n }\n\n .order-xxl-5 {\n order: 5 !important;\n }\n\n .order-xxl-last {\n order: 6 !important;\n }\n\n .m-xxl-0 {\n margin: 0 !important;\n }\n\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xxl-3 {\n margin: 1rem !important;\n }\n\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xxl-5 {\n margin: 3rem !important;\n }\n\n .m-xxl-auto {\n margin: auto !important;\n }\n\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xxl-auto {\n margin-right: auto !important;\n }\n\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n\n .p-xxl-0 {\n padding: 0 !important;\n }\n\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xxl-3 {\n padding: 1rem !important;\n }\n\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xxl-5 {\n padding: 3rem !important;\n }\n\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n\n .d-print-inline-block {\n display: inline-block !important;\n }\n\n .d-print-block {\n display: block !important;\n }\n\n .d-print-grid {\n display: grid !important;\n }\n\n .d-print-table {\n display: table !important;\n }\n\n .d-print-table-row {\n display: table-row !important;\n }\n\n .d-print-table-cell {\n display: table-cell !important;\n }\n\n .d-print-flex {\n display: flex !important;\n }\n\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n// Color system\n\n// scss-docs-start gray-color-variables\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n// scss-docs-end gray-color-variables\n\n// fusv-disable\n// scss-docs-start gray-colors-map\n$grays: (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n) !default;\n// scss-docs-end gray-colors-map\n// fusv-enable\n\n// scss-docs-start color-variables\n$blue: #0d6efd !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #d63384 !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #198754 !default;\n$teal: #20c997 !default;\n$cyan: #0dcaf0 !default;\n// scss-docs-end color-variables\n\n// scss-docs-start colors-map\n$colors: (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n) !default;\n// scss-docs-end colors-map\n\n// scss-docs-start theme-color-variables\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-900 !default;\n// scss-docs-end theme-color-variables\n\n// scss-docs-start theme-colors-map\n$theme-colors: (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n) !default;\n// scss-docs-end theme-colors-map\n\n// scss-docs-start theme-colors-rgb\n$theme-colors-rgb: map-loop($theme-colors, to-rgb, \"$value\") !default;\n// scss-docs-end theme-colors-rgb\n\n// The contrast ratio to reach against white, to determine if color changes from \"light\" to \"dark\". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.\n// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast\n$min-contrast-ratio: 4.5 !default;\n\n// Customize the light and dark text colors for use in our color contrast function.\n$color-contrast-dark: $black !default;\n$color-contrast-light: $white !default;\n\n// fusv-disable\n$blue-100: tint-color($blue, 80%) !default;\n$blue-200: tint-color($blue, 60%) !default;\n$blue-300: tint-color($blue, 40%) !default;\n$blue-400: tint-color($blue, 20%) !default;\n$blue-500: $blue !default;\n$blue-600: shade-color($blue, 20%) !default;\n$blue-700: shade-color($blue, 40%) !default;\n$blue-800: shade-color($blue, 60%) !default;\n$blue-900: shade-color($blue, 80%) !default;\n\n$indigo-100: tint-color($indigo, 80%) !default;\n$indigo-200: tint-color($indigo, 60%) !default;\n$indigo-300: tint-color($indigo, 40%) !default;\n$indigo-400: tint-color($indigo, 20%) !default;\n$indigo-500: $indigo !default;\n$indigo-600: shade-color($indigo, 20%) !default;\n$indigo-700: shade-color($indigo, 40%) !default;\n$indigo-800: shade-color($indigo, 60%) !default;\n$indigo-900: shade-color($indigo, 80%) !default;\n\n$purple-100: tint-color($purple, 80%) !default;\n$purple-200: tint-color($purple, 60%) !default;\n$purple-300: tint-color($purple, 40%) !default;\n$purple-400: tint-color($purple, 20%) !default;\n$purple-500: $purple !default;\n$purple-600: shade-color($purple, 20%) !default;\n$purple-700: shade-color($purple, 40%) !default;\n$purple-800: shade-color($purple, 60%) !default;\n$purple-900: shade-color($purple, 80%) !default;\n\n$pink-100: tint-color($pink, 80%) !default;\n$pink-200: tint-color($pink, 60%) !default;\n$pink-300: tint-color($pink, 40%) !default;\n$pink-400: tint-color($pink, 20%) !default;\n$pink-500: $pink !default;\n$pink-600: shade-color($pink, 20%) !default;\n$pink-700: shade-color($pink, 40%) !default;\n$pink-800: shade-color($pink, 60%) !default;\n$pink-900: shade-color($pink, 80%) !default;\n\n$red-100: tint-color($red, 80%) !default;\n$red-200: tint-color($red, 60%) !default;\n$red-300: tint-color($red, 40%) !default;\n$red-400: tint-color($red, 20%) !default;\n$red-500: $red !default;\n$red-600: shade-color($red, 20%) !default;\n$red-700: shade-color($red, 40%) !default;\n$red-800: shade-color($red, 60%) !default;\n$red-900: shade-color($red, 80%) !default;\n\n$orange-100: tint-color($orange, 80%) !default;\n$orange-200: tint-color($orange, 60%) !default;\n$orange-300: tint-color($orange, 40%) !default;\n$orange-400: tint-color($orange, 20%) !default;\n$orange-500: $orange !default;\n$orange-600: shade-color($orange, 20%) !default;\n$orange-700: shade-color($orange, 40%) !default;\n$orange-800: shade-color($orange, 60%) !default;\n$orange-900: shade-color($orange, 80%) !default;\n\n$yellow-100: tint-color($yellow, 80%) !default;\n$yellow-200: tint-color($yellow, 60%) !default;\n$yellow-300: tint-color($yellow, 40%) !default;\n$yellow-400: tint-color($yellow, 20%) !default;\n$yellow-500: $yellow !default;\n$yellow-600: shade-color($yellow, 20%) !default;\n$yellow-700: shade-color($yellow, 40%) !default;\n$yellow-800: shade-color($yellow, 60%) !default;\n$yellow-900: shade-color($yellow, 80%) !default;\n\n$green-100: tint-color($green, 80%) !default;\n$green-200: tint-color($green, 60%) !default;\n$green-300: tint-color($green, 40%) !default;\n$green-400: tint-color($green, 20%) !default;\n$green-500: $green !default;\n$green-600: shade-color($green, 20%) !default;\n$green-700: shade-color($green, 40%) !default;\n$green-800: shade-color($green, 60%) !default;\n$green-900: shade-color($green, 80%) !default;\n\n$teal-100: tint-color($teal, 80%) !default;\n$teal-200: tint-color($teal, 60%) !default;\n$teal-300: tint-color($teal, 40%) !default;\n$teal-400: tint-color($teal, 20%) !default;\n$teal-500: $teal !default;\n$teal-600: shade-color($teal, 20%) !default;\n$teal-700: shade-color($teal, 40%) !default;\n$teal-800: shade-color($teal, 60%) !default;\n$teal-900: shade-color($teal, 80%) !default;\n\n$cyan-100: tint-color($cyan, 80%) !default;\n$cyan-200: tint-color($cyan, 60%) !default;\n$cyan-300: tint-color($cyan, 40%) !default;\n$cyan-400: tint-color($cyan, 20%) !default;\n$cyan-500: $cyan !default;\n$cyan-600: shade-color($cyan, 20%) !default;\n$cyan-700: shade-color($cyan, 40%) !default;\n$cyan-800: shade-color($cyan, 60%) !default;\n$cyan-900: shade-color($cyan, 80%) !default;\n\n$blues: (\n \"blue-100\": $blue-100,\n \"blue-200\": $blue-200,\n \"blue-300\": $blue-300,\n \"blue-400\": $blue-400,\n \"blue-500\": $blue-500,\n \"blue-600\": $blue-600,\n \"blue-700\": $blue-700,\n \"blue-800\": $blue-800,\n \"blue-900\": $blue-900\n) !default;\n\n$indigos: (\n \"indigo-100\": $indigo-100,\n \"indigo-200\": $indigo-200,\n \"indigo-300\": $indigo-300,\n \"indigo-400\": $indigo-400,\n \"indigo-500\": $indigo-500,\n \"indigo-600\": $indigo-600,\n \"indigo-700\": $indigo-700,\n \"indigo-800\": $indigo-800,\n \"indigo-900\": $indigo-900\n) !default;\n\n$purples: (\n \"purple-100\": $purple-200,\n \"purple-200\": $purple-100,\n \"purple-300\": $purple-300,\n \"purple-400\": $purple-400,\n \"purple-500\": $purple-500,\n \"purple-600\": $purple-600,\n \"purple-700\": $purple-700,\n \"purple-800\": $purple-800,\n \"purple-900\": $purple-900\n) !default;\n\n$pinks: (\n \"pink-100\": $pink-100,\n \"pink-200\": $pink-200,\n \"pink-300\": $pink-300,\n \"pink-400\": $pink-400,\n \"pink-500\": $pink-500,\n \"pink-600\": $pink-600,\n \"pink-700\": $pink-700,\n \"pink-800\": $pink-800,\n \"pink-900\": $pink-900\n) !default;\n\n$reds: (\n \"red-100\": $red-100,\n \"red-200\": $red-200,\n \"red-300\": $red-300,\n \"red-400\": $red-400,\n \"red-500\": $red-500,\n \"red-600\": $red-600,\n \"red-700\": $red-700,\n \"red-800\": $red-800,\n \"red-900\": $red-900\n) !default;\n\n$oranges: (\n \"orange-100\": $orange-100,\n \"orange-200\": $orange-200,\n \"orange-300\": $orange-300,\n \"orange-400\": $orange-400,\n \"orange-500\": $orange-500,\n \"orange-600\": $orange-600,\n \"orange-700\": $orange-700,\n \"orange-800\": $orange-800,\n \"orange-900\": $orange-900\n) !default;\n\n$yellows: (\n \"yellow-100\": $yellow-100,\n \"yellow-200\": $yellow-200,\n \"yellow-300\": $yellow-300,\n \"yellow-400\": $yellow-400,\n \"yellow-500\": $yellow-500,\n \"yellow-600\": $yellow-600,\n \"yellow-700\": $yellow-700,\n \"yellow-800\": $yellow-800,\n \"yellow-900\": $yellow-900\n) !default;\n\n$greens: (\n \"green-100\": $green-100,\n \"green-200\": $green-200,\n \"green-300\": $green-300,\n \"green-400\": $green-400,\n \"green-500\": $green-500,\n \"green-600\": $green-600,\n \"green-700\": $green-700,\n \"green-800\": $green-800,\n \"green-900\": $green-900\n) !default;\n\n$teals: (\n \"teal-100\": $teal-100,\n \"teal-200\": $teal-200,\n \"teal-300\": $teal-300,\n \"teal-400\": $teal-400,\n \"teal-500\": $teal-500,\n \"teal-600\": $teal-600,\n \"teal-700\": $teal-700,\n \"teal-800\": $teal-800,\n \"teal-900\": $teal-900\n) !default;\n\n$cyans: (\n \"cyan-100\": $cyan-100,\n \"cyan-200\": $cyan-200,\n \"cyan-300\": $cyan-300,\n \"cyan-400\": $cyan-400,\n \"cyan-500\": $cyan-500,\n \"cyan-600\": $cyan-600,\n \"cyan-700\": $cyan-700,\n \"cyan-800\": $cyan-800,\n \"cyan-900\": $cyan-900\n) !default;\n// fusv-enable\n\n// Characters which are escaped by the escape-svg function\n$escaped-characters: (\n (\"<\", \"%3c\"),\n (\">\", \"%3e\"),\n (\"#\", \"%23\"),\n (\"(\", \"%28\"),\n (\")\", \"%29\"),\n) !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-reduced-motion: true !default;\n$enable-smooth-scroll: true !default;\n$enable-grid-classes: true !default;\n$enable-cssgrid: false !default;\n$enable-button-pointers: true !default;\n$enable-rfs: true !default;\n$enable-validation-icons: true !default;\n$enable-negative-margins: false !default;\n$enable-deprecation-messages: true !default;\n$enable-important-utilities: true !default;\n\n// Prefix for :root CSS variables\n\n$variable-prefix: bs- !default;\n\n// Gradient\n//\n// The gradient which is added to components if `$enable-gradients` is `true`\n// This gradient is also added to elements with `.bg-gradient`\n// scss-docs-start variable-gradient\n$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;\n// scss-docs-end variable-gradient\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// scss-docs-start spacer-variables-maps\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: $spacer * .25,\n 2: $spacer * .5,\n 3: $spacer,\n 4: $spacer * 1.5,\n 5: $spacer * 3,\n) !default;\n\n$negative-spacers: if($enable-negative-margins, negativify-map($spacers), null) !default;\n// scss-docs-end spacer-variables-maps\n\n// Position\n//\n// Define the edge positioning anchors of the position utilities.\n\n// scss-docs-start position-map\n$position-values: (\n 0: 0,\n 50: 50%,\n 100: 100%\n) !default;\n// scss-docs-end position-map\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n$body-text-align: null !default;\n\n// Utilities maps\n//\n// Extends the default `$theme-colors` maps to help create our utilities.\n\n// scss-docs-start utilities-colors\n$utilities-colors: map-merge(\n $theme-colors-rgb,\n (\n \"black\": to-rgb($black),\n \"white\": to-rgb($white),\n \"body\": to-rgb($body-color)\n )\n) !default;\n// scss-docs-end utilities-colors\n\n// scss-docs-start utilities-text-colors\n$utilities-text-colors: map-loop($utilities-colors, rgba-css-var, \"$key\", \"text\") !default;\n// scss-docs-end utilities-text-colors\n\n// scss-docs-start utilities-bg-colors\n$utilities-bg-colors: map-loop($utilities-colors, rgba-css-var, \"$key\", \"bg\") !default;\n// scss-docs-end utilities-bg-colors\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: $primary !default;\n$link-decoration: underline !default;\n$link-shade-percentage: 20% !default;\n$link-hover-color: shift-color($link-color, $link-shade-percentage) !default;\n$link-hover-decoration: null !default;\n\n$stretched-link-pseudo-element: after !default;\n$stretched-link-z-index: 1 !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n// scss-docs-start grid-breakpoints\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px,\n xxl: 1400px\n) !default;\n// scss-docs-end grid-breakpoints\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints, \"$grid-breakpoints\");\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n// scss-docs-start container-max-widths\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px,\n xxl: 1320px\n) !default;\n// scss-docs-end container-max-widths\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 1.5rem !default;\n$grid-row-columns: 6 !default;\n\n$gutters: $spacers !default;\n\n// Container padding\n\n$container-padding-x: $grid-gutter-width * .5 !default;\n\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n// scss-docs-start border-variables\n$border-width: 1px !default;\n$border-widths: (\n 1: 1px,\n 2: 2px,\n 3: 3px,\n 4: 4px,\n 5: 5px\n) !default;\n\n$border-color: $gray-300 !default;\n// scss-docs-end border-variables\n\n// scss-docs-start border-radius-variables\n$border-radius: .25rem !default;\n$border-radius-sm: .2rem !default;\n$border-radius-lg: .3rem !default;\n$border-radius-pill: 50rem !default;\n// scss-docs-end border-radius-variables\n\n// scss-docs-start box-shadow-variables\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;\n// scss-docs-end box-shadow-variables\n\n$component-active-color: $white !default;\n$component-active-bg: $primary !default;\n\n// scss-docs-start caret-variables\n$caret-width: .3em !default;\n$caret-vertical-align: $caret-width * .85 !default;\n$caret-spacing: $caret-width * .85 !default;\n// scss-docs-end caret-variables\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n// scss-docs-start collapse-transition\n$transition-collapse: height .35s ease !default;\n$transition-collapse-width: width .35s ease !default;\n// scss-docs-end collapse-transition\n\n// stylelint-disable function-disallowed-list\n// scss-docs-start aspect-ratios\n$aspect-ratios: (\n \"1x1\": 100%,\n \"4x3\": calc(3 / 4 * 100%),\n \"16x9\": calc(9 / 16 * 100%),\n \"21x9\": calc(9 / 21 * 100%)\n) !default;\n// scss-docs-end aspect-ratios\n// stylelint-enable function-disallowed-list\n\n// Typography\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// scss-docs-start font-variables\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n// stylelint-enable value-keyword-case\n$font-family-base: var(--#{$variable-prefix}font-sans-serif) !default;\n$font-family-code: var(--#{$variable-prefix}font-monospace) !default;\n\n// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins\n// $font-size-base affects the font size of the body text\n$font-size-root: null !default;\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-sm: $font-size-base * .875 !default;\n$font-size-lg: $font-size-base * 1.25 !default;\n\n$font-weight-lighter: lighter !default;\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-bold: 700 !default;\n$font-weight-bolder: bolder !default;\n\n$font-weight-base: $font-weight-normal !default;\n\n$line-height-base: 1.5 !default;\n$line-height-sm: 1.25 !default;\n$line-height-lg: 2 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n// scss-docs-end font-variables\n\n// scss-docs-start font-sizes\n$font-sizes: (\n 1: $h1-font-size,\n 2: $h2-font-size,\n 3: $h3-font-size,\n 4: $h4-font-size,\n 5: $h5-font-size,\n 6: $h6-font-size\n) !default;\n// scss-docs-end font-sizes\n\n// scss-docs-start headings-variables\n$headings-margin-bottom: $spacer * .5 !default;\n$headings-font-family: null !default;\n$headings-font-style: null !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: null !default;\n// scss-docs-end headings-variables\n\n// scss-docs-start display-headings\n$display-font-sizes: (\n 1: 5rem,\n 2: 4.5rem,\n 3: 4rem,\n 4: 3.5rem,\n 5: 3rem,\n 6: 2.5rem\n) !default;\n\n$display-font-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n// scss-docs-end display-headings\n\n// scss-docs-start type-variables\n$lead-font-size: $font-size-base * 1.25 !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: .875em !default;\n\n$sub-sup-font-size: .75em !default;\n\n$text-muted: $gray-600 !default;\n\n$initialism-font-size: $small-font-size !default;\n\n$blockquote-margin-y: $spacer !default;\n$blockquote-font-size: $font-size-base * 1.25 !default;\n$blockquote-footer-color: $gray-600 !default;\n$blockquote-footer-font-size: $small-font-size !default;\n\n$hr-margin-y: $spacer !default;\n$hr-color: inherit !default;\n$hr-height: $border-width !default;\n$hr-opacity: .25 !default;\n\n$legend-margin-bottom: .5rem !default;\n$legend-font-size: 1.5rem !default;\n$legend-font-weight: null !default;\n\n$mark-padding: .2em !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$nested-kbd-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-bg: #fcf8e3 !default;\n// scss-docs-end type-variables\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n// scss-docs-start table-variables\n$table-cell-padding-y: .5rem !default;\n$table-cell-padding-x: .5rem !default;\n$table-cell-padding-y-sm: .25rem !default;\n$table-cell-padding-x-sm: .25rem !default;\n\n$table-cell-vertical-align: top !default;\n\n$table-color: $body-color !default;\n$table-bg: transparent !default;\n$table-accent-bg: transparent !default;\n\n$table-th-font-weight: null !default;\n\n$table-striped-color: $table-color !default;\n$table-striped-bg-factor: .05 !default;\n$table-striped-bg: rgba($black, $table-striped-bg-factor) !default;\n\n$table-active-color: $table-color !default;\n$table-active-bg-factor: .1 !default;\n$table-active-bg: rgba($black, $table-active-bg-factor) !default;\n\n$table-hover-color: $table-color !default;\n$table-hover-bg-factor: .075 !default;\n$table-hover-bg: rgba($black, $table-hover-bg-factor) !default;\n\n$table-border-factor: .1 !default;\n$table-border-width: $border-width !default;\n$table-border-color: $border-color !default;\n\n$table-striped-order: odd !default;\n\n$table-group-separator-color: currentColor !default;\n\n$table-caption-color: $text-muted !default;\n\n$table-bg-scale: -80% !default;\n// scss-docs-end table-variables\n\n// scss-docs-start table-loop\n$table-variants: (\n \"primary\": shift-color($primary, $table-bg-scale),\n \"secondary\": shift-color($secondary, $table-bg-scale),\n \"success\": shift-color($success, $table-bg-scale),\n \"info\": shift-color($info, $table-bg-scale),\n \"warning\": shift-color($warning, $table-bg-scale),\n \"danger\": shift-color($danger, $table-bg-scale),\n \"light\": $light,\n \"dark\": $dark,\n) !default;\n// scss-docs-end table-loop\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n// scss-docs-start input-btn-variables\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-font-family: null !default;\n$input-btn-font-size: $font-size-base !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .25rem !default;\n$input-btn-focus-color-opacity: .25 !default;\n$input-btn-focus-color: rgba($component-active-bg, $input-btn-focus-color-opacity) !default;\n$input-btn-focus-blur: 0 !default;\n$input-btn-focus-box-shadow: 0 0 $input-btn-focus-blur $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-font-size-sm: $font-size-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-font-size-lg: $font-size-lg !default;\n\n$input-btn-border-width: $border-width !default;\n// scss-docs-end input-btn-variables\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n// scss-docs-start btn-variables\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-font-family: $input-btn-font-family !default;\n$btn-font-size: $input-btn-font-size !default;\n$btn-line-height: $input-btn-line-height !default;\n$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-font-size-sm: $input-btn-font-size-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-font-size-lg: $input-btn-font-size-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-color: $link-color !default;\n$btn-link-hover-color: $link-hover-color !default;\n$btn-link-disabled-color: $gray-600 !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$btn-hover-bg-shade-amount: 15% !default;\n$btn-hover-bg-tint-amount: 15% !default;\n$btn-hover-border-shade-amount: 20% !default;\n$btn-hover-border-tint-amount: 10% !default;\n$btn-active-bg-shade-amount: 20% !default;\n$btn-active-bg-tint-amount: 20% !default;\n$btn-active-border-shade-amount: 25% !default;\n$btn-active-border-tint-amount: 10% !default;\n// scss-docs-end btn-variables\n\n\n// Forms\n\n// scss-docs-start form-text-variables\n$form-text-margin-top: .25rem !default;\n$form-text-font-size: $small-font-size !default;\n$form-text-font-style: null !default;\n$form-text-font-weight: null !default;\n$form-text-color: $text-muted !default;\n// scss-docs-end form-text-variables\n\n// scss-docs-start form-label-variables\n$form-label-margin-bottom: .5rem !default;\n$form-label-font-size: null !default;\n$form-label-font-style: null !default;\n$form-label-font-weight: null !default;\n$form-label-color: null !default;\n// scss-docs-end form-label-variables\n\n// scss-docs-start form-input-variables\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-font-family: $input-btn-font-family !default;\n$input-font-size: $input-btn-font-size !default;\n$input-font-weight: $font-weight-base !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-font-size-sm: $input-btn-font-size-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-font-size-lg: $input-btn-font-size-lg !default;\n\n$input-bg: $body-bg !default;\n$input-disabled-bg: $gray-200 !default;\n$input-disabled-border-color: null !default;\n\n$input-color: $body-color !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: $box-shadow-inset !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-sm: $border-radius-sm !default;\n$input-border-radius-lg: $border-radius-lg !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: tint-color($component-active-bg, 50%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n$input-plaintext-color: $body-color !default;\n\n$input-height-border: $input-border-width * 2 !default;\n\n$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;\n$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;\n$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;\n\n$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;\n$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;\n$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-color-width: 3rem !default;\n// scss-docs-end form-input-variables\n\n// scss-docs-start form-check-variables\n$form-check-input-width: 1em !default;\n$form-check-min-height: $font-size-base * $line-height-base !default;\n$form-check-padding-start: $form-check-input-width + .5em !default;\n$form-check-margin-bottom: .125rem !default;\n$form-check-label-color: null !default;\n$form-check-label-cursor: null !default;\n$form-check-transition: null !default;\n\n$form-check-input-active-filter: brightness(90%) !default;\n\n$form-check-input-bg: $input-bg !default;\n$form-check-input-border: 1px solid rgba($black, .25) !default;\n$form-check-input-border-radius: .25em !default;\n$form-check-radio-border-radius: 50% !default;\n$form-check-input-focus-border: $input-focus-border-color !default;\n$form-check-input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$form-check-input-checked-color: $component-active-color !default;\n$form-check-input-checked-bg-color: $component-active-bg !default;\n$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;\n$form-check-input-checked-bg-image: url(\"data:image/svg+xml, \") !default;\n$form-check-radio-checked-bg-image: url(\"data:image/svg+xml, \") !default;\n\n$form-check-input-indeterminate-color: $component-active-color !default;\n$form-check-input-indeterminate-bg-color: $component-active-bg !default;\n$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;\n$form-check-input-indeterminate-bg-image: url(\"data:image/svg+xml, \") !default;\n\n$form-check-input-disabled-opacity: .5 !default;\n$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;\n$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;\n\n$form-check-inline-margin-end: 1rem !default;\n// scss-docs-end form-check-variables\n\n// scss-docs-start form-switch-variables\n$form-switch-color: rgba(0, 0, 0, .25) !default;\n$form-switch-width: 2em !default;\n$form-switch-padding-start: $form-switch-width + .5em !default;\n$form-switch-bg-image: url(\"data:image/svg+xml, \") !default;\n$form-switch-border-radius: $form-switch-width !default;\n$form-switch-transition: background-position .15s ease-in-out !default;\n\n$form-switch-focus-color: $input-focus-border-color !default;\n$form-switch-focus-bg-image: url(\"data:image/svg+xml, \") !default;\n\n$form-switch-checked-color: $component-active-color !default;\n$form-switch-checked-bg-image: url(\"data:image/svg+xml, \") !default;\n$form-switch-checked-bg-position: right center !default;\n// scss-docs-end form-switch-variables\n\n// scss-docs-start input-group-variables\n$input-group-addon-padding-y: $input-padding-y !default;\n$input-group-addon-padding-x: $input-padding-x !default;\n$input-group-addon-font-weight: $input-font-weight !default;\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n// scss-docs-end input-group-variables\n\n// scss-docs-start form-select-variables\n$form-select-padding-y: $input-padding-y !default;\n$form-select-padding-x: $input-padding-x !default;\n$form-select-font-family: $input-font-family !default;\n$form-select-font-size: $input-font-size !default;\n$form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image\n$form-select-font-weight: $input-font-weight !default;\n$form-select-line-height: $input-line-height !default;\n$form-select-color: $input-color !default;\n$form-select-bg: $input-bg !default;\n$form-select-disabled-color: null !default;\n$form-select-disabled-bg: $gray-200 !default;\n$form-select-disabled-border-color: $input-disabled-border-color !default;\n$form-select-bg-position: right $form-select-padding-x center !default;\n$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions\n$form-select-indicator-color: $gray-800 !default;\n$form-select-indicator: url(\"data:image/svg+xml, \") !default;\n\n$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;\n$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;\n$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;\n\n$form-select-border-width: $input-border-width !default;\n$form-select-border-color: $input-border-color !default;\n$form-select-border-radius: $border-radius !default;\n$form-select-box-shadow: $box-shadow-inset !default;\n\n$form-select-focus-border-color: $input-focus-border-color !default;\n$form-select-focus-width: $input-focus-width !default;\n$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;\n\n$form-select-padding-y-sm: $input-padding-y-sm !default;\n$form-select-padding-x-sm: $input-padding-x-sm !default;\n$form-select-font-size-sm: $input-font-size-sm !default;\n\n$form-select-padding-y-lg: $input-padding-y-lg !default;\n$form-select-padding-x-lg: $input-padding-x-lg !default;\n$form-select-font-size-lg: $input-font-size-lg !default;\n\n$form-select-transition: $input-transition !default;\n// scss-docs-end form-select-variables\n\n// scss-docs-start form-range-variables\n$form-range-track-width: 100% !default;\n$form-range-track-height: .5rem !default;\n$form-range-track-cursor: pointer !default;\n$form-range-track-bg: $gray-300 !default;\n$form-range-track-border-radius: 1rem !default;\n$form-range-track-box-shadow: $box-shadow-inset !default;\n\n$form-range-thumb-width: 1rem !default;\n$form-range-thumb-height: $form-range-thumb-width !default;\n$form-range-thumb-bg: $component-active-bg !default;\n$form-range-thumb-border: 0 !default;\n$form-range-thumb-border-radius: 1rem !default;\n$form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;\n$form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge\n$form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;\n$form-range-thumb-disabled-bg: $gray-500 !default;\n$form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n// scss-docs-end form-range-variables\n\n// scss-docs-start form-file-variables\n$form-file-button-color: $input-color !default;\n$form-file-button-bg: $input-group-addon-bg !default;\n$form-file-button-hover-bg: shade-color($form-file-button-bg, 5%) !default;\n// scss-docs-end form-file-variables\n\n// scss-docs-start form-floating-variables\n$form-floating-height: add(3.5rem, $input-height-border) !default;\n$form-floating-line-height: 1.25 !default;\n$form-floating-padding-x: $input-padding-x !default;\n$form-floating-padding-y: 1rem !default;\n$form-floating-input-padding-t: 1.625rem !default;\n$form-floating-input-padding-b: .625rem !default;\n$form-floating-label-opacity: .65 !default;\n$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;\n$form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;\n// scss-docs-end form-floating-variables\n\n// Form validation\n\n// scss-docs-start form-feedback-variables\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $form-text-font-size !default;\n$form-feedback-font-style: $form-text-font-style !default;\n$form-feedback-valid-color: $success !default;\n$form-feedback-invalid-color: $danger !default;\n\n$form-feedback-icon-valid-color: $form-feedback-valid-color !default;\n$form-feedback-icon-valid: url(\"data:image/svg+xml, \") !default;\n$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;\n$form-feedback-icon-invalid: url(\"data:image/svg+xml, \") !default;\n// scss-docs-end form-feedback-variables\n\n// scss-docs-start form-validation-states\n$form-validation-states: (\n \"valid\": (\n \"color\": $form-feedback-valid-color,\n \"icon\": $form-feedback-icon-valid\n ),\n \"invalid\": (\n \"color\": $form-feedback-invalid-color,\n \"icon\": $form-feedback-icon-invalid\n )\n) !default;\n// scss-docs-end form-validation-states\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n// scss-docs-start zindex-stack\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-offcanvas-backdrop: 1040 !default;\n$zindex-offcanvas: 1045 !default;\n$zindex-modal-backdrop: 1050 !default;\n$zindex-modal: 1055 !default;\n$zindex-popover: 1070 !default;\n$zindex-tooltip: 1080 !default;\n// scss-docs-end zindex-stack\n\n\n// Navs\n\n// scss-docs-start nav-variables\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-font-size: null !default;\n$nav-link-font-weight: null !default;\n$nav-link-color: $link-color !default;\n$nav-link-hover-color: $link-hover-color !default;\n$nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n// scss-docs-end nav-variables\n\n\n// Navbar\n\n// scss-docs-start navbar-variables\n$navbar-padding-y: $spacer * .5 !default;\n$navbar-padding-x: null !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;\n$navbar-brand-margin-end: 1rem !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n$navbar-toggler-focus-width: $btn-focus-width !default;\n$navbar-toggler-transition: box-shadow .15s ease-in-out !default;\n// scss-docs-end navbar-variables\n\n// scss-docs-start navbar-theme-variables\n$navbar-dark-color: rgba($white, .55) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: url(\"data:image/svg+xml, \") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n\n$navbar-light-color: rgba($black, .55) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: url(\"data:image/svg+xml, \") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n$navbar-light-brand-color: $navbar-light-active-color !default;\n$navbar-light-brand-hover-color: $navbar-light-active-color !default;\n$navbar-dark-brand-color: $navbar-dark-active-color !default;\n$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;\n// scss-docs-end navbar-theme-variables\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n// scss-docs-start dropdown-variables\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-x: 0 !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-font-size: $font-size-base !default;\n$dropdown-color: $body-color !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: rgba($black, .15) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;\n$dropdown-divider-bg: $dropdown-border-color !default;\n$dropdown-divider-margin-y: $spacer * .5 !default;\n$dropdown-box-shadow: $box-shadow !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: shade-color($gray-900, 10%) !default;\n$dropdown-link-hover-bg: $gray-200 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-500 !default;\n\n$dropdown-item-padding-y: $spacer * .25 !default;\n$dropdown-item-padding-x: $spacer !default;\n\n$dropdown-header-color: $gray-600 !default;\n$dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default;\n// scss-docs-end dropdown-variables\n\n// scss-docs-start dropdown-dark-variables\n$dropdown-dark-color: $gray-300 !default;\n$dropdown-dark-bg: $gray-800 !default;\n$dropdown-dark-border-color: $dropdown-border-color !default;\n$dropdown-dark-divider-bg: $dropdown-divider-bg !default;\n$dropdown-dark-box-shadow: null !default;\n$dropdown-dark-link-color: $dropdown-dark-color !default;\n$dropdown-dark-link-hover-color: $white !default;\n$dropdown-dark-link-hover-bg: rgba($white, .15) !default;\n$dropdown-dark-link-active-color: $dropdown-link-active-color !default;\n$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;\n$dropdown-dark-link-disabled-color: $gray-500 !default;\n$dropdown-dark-header-color: $gray-500 !default;\n// scss-docs-end dropdown-dark-variables\n\n\n// Pagination\n\n// scss-docs-start pagination-variables\n$pagination-padding-y: .375rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n\n$pagination-color: $link-color !default;\n$pagination-bg: $white !default;\n$pagination-border-width: $border-width !default;\n$pagination-border-radius: $border-radius !default;\n$pagination-margin-start: -$pagination-border-width !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-focus-color: $link-hover-color !default;\n$pagination-focus-bg: $gray-200 !default;\n$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: $link-hover-color !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $pagination-active-bg !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n$pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$pagination-border-radius-sm: $border-radius-sm !default;\n$pagination-border-radius-lg: $border-radius-lg !default;\n// scss-docs-end pagination-variables\n\n\n// Placeholders\n\n// scss-docs-start placeholders\n$placeholder-opacity-max: .5 !default;\n$placeholder-opacity-min: .2 !default;\n// scss-docs-end placeholders\n\n// Cards\n\n// scss-docs-start card-variables\n$card-spacer-y: $spacer !default;\n$card-spacer-x: $spacer !default;\n$card-title-spacer-y: $spacer * .5 !default;\n$card-border-width: $border-width !default;\n$card-border-color: rgba($black, .125) !default;\n$card-border-radius: $border-radius !default;\n$card-box-shadow: null !default;\n$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;\n$card-cap-padding-y: $card-spacer-y * .5 !default;\n$card-cap-padding-x: $card-spacer-x !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-cap-color: null !default;\n$card-height: null !default;\n$card-color: null !default;\n$card-bg: $white !default;\n$card-img-overlay-padding: $spacer !default;\n$card-group-margin: $grid-gutter-width * .5 !default;\n// scss-docs-end card-variables\n\n// Accordion\n\n// scss-docs-start accordion-variables\n$accordion-padding-y: 1rem !default;\n$accordion-padding-x: 1.25rem !default;\n$accordion-color: $body-color !default;\n$accordion-bg: $body-bg !default;\n$accordion-border-width: $border-width !default;\n$accordion-border-color: rgba($black, .125) !default;\n$accordion-border-radius: $border-radius !default;\n$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;\n\n$accordion-body-padding-y: $accordion-padding-y !default;\n$accordion-body-padding-x: $accordion-padding-x !default;\n\n$accordion-button-padding-y: $accordion-padding-y !default;\n$accordion-button-padding-x: $accordion-padding-x !default;\n$accordion-button-color: $accordion-color !default;\n$accordion-button-bg: $accordion-bg !default;\n$accordion-transition: $btn-transition, border-radius .15s ease !default;\n$accordion-button-active-bg: tint-color($component-active-bg, 90%) !default;\n$accordion-button-active-color: shade-color($primary, 10%) !default;\n\n$accordion-button-focus-border-color: $input-focus-border-color !default;\n$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;\n\n$accordion-icon-width: 1.25rem !default;\n$accordion-icon-color: $accordion-button-color !default;\n$accordion-icon-active-color: $accordion-button-active-color !default;\n$accordion-icon-transition: transform .2s ease-in-out !default;\n$accordion-icon-transform: rotate(-180deg) !default;\n\n$accordion-button-icon: url(\"data:image/svg+xml, \") !default;\n$accordion-button-active-icon: url(\"data:image/svg+xml, \") !default;\n// scss-docs-end accordion-variables\n\n// Tooltips\n\n// scss-docs-start tooltip-variables\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-border-radius: $border-radius !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: $spacer * .25 !default;\n$tooltip-padding-x: $spacer * .5 !default;\n$tooltip-margin: 0 !default;\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n$tooltip-arrow-color: $tooltip-bg !default;\n// scss-docs-end tooltip-variables\n\n// Form tooltips must come after regular tooltips\n// scss-docs-start tooltip-feedback-variables\n$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;\n$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;\n$form-feedback-tooltip-font-size: $tooltip-font-size !default;\n$form-feedback-tooltip-line-height: null !default;\n$form-feedback-tooltip-opacity: $tooltip-opacity !default;\n$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;\n// scss-docs-end tooltip-feedback-variables\n\n\n// Popovers\n\n// scss-docs-start popover-variables\n$popover-font-size: $font-size-sm !default;\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: rgba($black, .2) !default;\n$popover-border-radius: $border-radius-lg !default;\n$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;\n$popover-box-shadow: $box-shadow !default;\n\n$popover-header-bg: shade-color($popover-bg, 6%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: $spacer !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $spacer !default;\n$popover-body-padding-x: $spacer !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n$popover-arrow-color: $popover-bg !default;\n\n$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;\n// scss-docs-end popover-variables\n\n\n// Toasts\n\n// scss-docs-start toast-variables\n$toast-max-width: 350px !default;\n$toast-padding-x: .75rem !default;\n$toast-padding-y: .5rem !default;\n$toast-font-size: .875rem !default;\n$toast-color: null !default;\n$toast-background-color: rgba($white, .85) !default;\n$toast-border-width: 1px !default;\n$toast-border-color: rgba(0, 0, 0, .1) !default;\n$toast-border-radius: $border-radius !default;\n$toast-box-shadow: $box-shadow !default;\n$toast-spacing: $container-padding-x !default;\n\n$toast-header-color: $gray-600 !default;\n$toast-header-background-color: rgba($white, .85) !default;\n$toast-header-border-color: rgba(0, 0, 0, .05) !default;\n// scss-docs-end toast-variables\n\n\n// Badges\n\n// scss-docs-start badge-variables\n$badge-font-size: .75em !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-color: $white !default;\n$badge-padding-y: .35em !default;\n$badge-padding-x: .65em !default;\n$badge-border-radius: $border-radius !default;\n// scss-docs-end badge-variables\n\n\n// Modals\n\n// scss-docs-start modal-variables\n$modal-inner-padding: $spacer !default;\n\n$modal-footer-margin-between: .5rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-color: null !default;\n$modal-content-bg: $white !default;\n$modal-content-border-color: rgba($black, .2) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-border-radius: $border-radius-lg !default;\n$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;\n$modal-content-box-shadow-xs: $box-shadow-sm !default;\n$modal-content-box-shadow-sm-up: $box-shadow !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n$modal-header-border-color: $border-color !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n$modal-header-padding-y: $modal-inner-padding !default;\n$modal-header-padding-x: $modal-inner-padding !default;\n$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility\n\n$modal-sm: 300px !default;\n$modal-md: 500px !default;\n$modal-lg: 800px !default;\n$modal-xl: 1140px !default;\n\n$modal-fade-transform: translate(0, -50px) !default;\n$modal-show-transform: none !default;\n$modal-transition: transform .3s ease-out !default;\n$modal-scale-transform: scale(1.02) !default;\n// scss-docs-end modal-variables\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n// scss-docs-start alert-variables\n$alert-padding-y: $spacer !default;\n$alert-padding-x: $spacer !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n$alert-bg-scale: -80% !default;\n$alert-border-scale: -70% !default;\n$alert-color-scale: 40% !default;\n$alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side\n// scss-docs-end alert-variables\n\n\n// Progress bars\n\n// scss-docs-start progress-variables\n$progress-height: 1rem !default;\n$progress-font-size: $font-size-base * .75 !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: $box-shadow-inset !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: $primary !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n// scss-docs-end progress-variables\n\n\n// List group\n\n// scss-docs-start list-group-variables\n$list-group-color: $gray-900 !default;\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: $spacer * .5 !default;\n$list-group-item-padding-x: $spacer !default;\n$list-group-item-bg-scale: -80% !default;\n$list-group-item-color-scale: 40% !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n// scss-docs-end list-group-variables\n\n\n// Image thumbnails\n\n// scss-docs-start thumbnail-variables\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: $gray-300 !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: $box-shadow-sm !default;\n// scss-docs-end thumbnail-variables\n\n\n// Figures\n\n// scss-docs-start figure-variables\n$figure-caption-font-size: $small-font-size !default;\n$figure-caption-color: $gray-600 !default;\n// scss-docs-end figure-variables\n\n\n// Breadcrumbs\n\n// scss-docs-start breadcrumb-variables\n$breadcrumb-font-size: null !default;\n$breadcrumb-padding-y: 0 !default;\n$breadcrumb-padding-x: 0 !default;\n$breadcrumb-item-padding-x: .5rem !default;\n$breadcrumb-margin-bottom: 1rem !default;\n$breadcrumb-bg: null !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: quote(\"/\") !default;\n$breadcrumb-divider-flipped: $breadcrumb-divider !default;\n$breadcrumb-border-radius: null !default;\n// scss-docs-end breadcrumb-variables\n\n// Carousel\n\n// scss-docs-start carousel-variables\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n$carousel-control-hover-opacity: .9 !default;\n$carousel-control-transition: opacity .15s ease !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-hit-area-height: 10px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-opacity: .5 !default;\n$carousel-indicator-active-bg: $white !default;\n$carousel-indicator-active-opacity: 1 !default;\n$carousel-indicator-transition: opacity .6s ease !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n$carousel-caption-padding-y: 1.25rem !default;\n$carousel-caption-spacer: 1.25rem !default;\n\n$carousel-control-icon-width: 2rem !default;\n\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml, \") !default;\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml, \") !default;\n\n$carousel-transition-duration: .6s !default;\n$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n\n$carousel-dark-indicator-active-bg: $black !default;\n$carousel-dark-caption-color: $black !default;\n$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;\n// scss-docs-end carousel-variables\n\n\n// Spinners\n\n// scss-docs-start spinner-variables\n$spinner-width: 2rem !default;\n$spinner-height: $spinner-width !default;\n$spinner-vertical-align: -.125em !default;\n$spinner-border-width: .25em !default;\n$spinner-animation-speed: .75s !default;\n\n$spinner-width-sm: 1rem !default;\n$spinner-height-sm: $spinner-width-sm !default;\n$spinner-border-width-sm: .2em !default;\n// scss-docs-end spinner-variables\n\n\n// Close\n\n// scss-docs-start close-variables\n$btn-close-width: 1em !default;\n$btn-close-height: $btn-close-width !default;\n$btn-close-padding-x: .25em !default;\n$btn-close-padding-y: $btn-close-padding-x !default;\n$btn-close-color: $black !default;\n$btn-close-bg: url(\"data:image/svg+xml, \") !default;\n$btn-close-focus-shadow: $input-btn-focus-box-shadow !default;\n$btn-close-opacity: .5 !default;\n$btn-close-hover-opacity: .75 !default;\n$btn-close-focus-opacity: 1 !default;\n$btn-close-disabled-opacity: .25 !default;\n$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;\n// scss-docs-end close-variables\n\n\n// Offcanvas\n\n// scss-docs-start offcanvas-variables\n$offcanvas-padding-y: $modal-inner-padding !default;\n$offcanvas-padding-x: $modal-inner-padding !default;\n$offcanvas-horizontal-width: 400px !default;\n$offcanvas-vertical-height: 30vh !default;\n$offcanvas-transition-duration: .3s !default;\n$offcanvas-border-color: $modal-content-border-color !default;\n$offcanvas-border-width: $modal-content-border-width !default;\n$offcanvas-title-line-height: $modal-title-line-height !default;\n$offcanvas-bg-color: $modal-content-bg !default;\n$offcanvas-color: $modal-content-color !default;\n$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;\n$offcanvas-backdrop-bg: $modal-backdrop-bg !default;\n$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;\n// scss-docs-end offcanvas-variables\n\n// Code\n\n$code-font-size: $small-font-size !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .2rem !default;\n$kbd-padding-x: .4rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: $white !default;\n$kbd-bg: $gray-900 !default;\n\n$pre-color: null !default;\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$variable-prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$variable-prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$variable-prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$variable-prefix}gutter-x: #{$gutter};\n --#{$variable-prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--#{$variable-prefix}gutter-y) * -1); // stylelint-disable-line function-disallowed-list\n margin-right: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n margin-left: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready($gutter: $grid-gutter-width) {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$variable-prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// numberof columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (eg. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $value in $is-local-vars {\n --#{$variable-prefix}#{$local-var}: #{$value};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]}
\ No newline at end of file
diff --git a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css b/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css
deleted file mode 100644
index 3160359..0000000
--- a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*!
- * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)
- * Copyright 2011-2021 The Bootstrap Authors
- * Copyright 2011-2021 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
- */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
-/*# sourceMappingURL=bootstrap-grid.min.css.map */
\ No newline at end of file
diff --git a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map b/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map
deleted file mode 100644
index 4f745de..0000000
--- a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../scss/bootstrap-grid.scss","../../scss/_containers.scss","dist/css/bootstrap-grid.css","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AAAA;;;;;ACME,WCCF,iBAGA,cACA,cACA,cAHA,cADA,eCLE,MAAA,KACA,cAAA,0BACA,aAAA,0BACA,aAAA,KACA,YAAA,KCwDE,yBH5CE,WAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cAAA,cACE,UAAA,OG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QIfN,KCAA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KACA,WAAA,8BACA,aAAA,+BACA,YAAA,+BDHE,OCQF,WAAA,WAIA,YAAA,EACA,MAAA,KACA,UAAA,KACA,cAAA,8BACA,aAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,YAAA,YAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,WAxDV,YAAA,aAwDU,WAxDV,YAAA,aAmEM,KJoGR,MIlGU,cAAA,EAGF,KJoGR,MIlGU,cAAA,EAPF,KJ8GR,MI5GU,cAAA,QAGF,KJ8GR,MI5GU,cAAA,QAPF,KJwHR,MItHU,cAAA,OAGF,KJwHR,MItHU,cAAA,OAPF,KJkIR,MIhIU,cAAA,KAGF,KJkIR,MIhIU,cAAA,KAPF,KJ4IR,MI1IU,cAAA,OAGF,KJ4IR,MI1IU,cAAA,OAPF,KJsJR,MIpJU,cAAA,KAGF,KJsJR,MIpJU,cAAA,KFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJyTR,SIvTU,cAAA,EAGF,QJyTR,SIvTU,cAAA,EAPF,QJmUR,SIjUU,cAAA,QAGF,QJmUR,SIjUU,cAAA,QAPF,QJ6UR,SI3UU,cAAA,OAGF,QJ6UR,SI3UU,cAAA,OAPF,QJuVR,SIrVU,cAAA,KAGF,QJuVR,SIrVU,cAAA,KAPF,QJiWR,SI/VU,cAAA,OAGF,QJiWR,SI/VU,cAAA,OAPF,QJ2WR,SIzWU,cAAA,KAGF,QJ2WR,SIzWU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJ8gBR,SI5gBU,cAAA,EAGF,QJ8gBR,SI5gBU,cAAA,EAPF,QJwhBR,SIthBU,cAAA,QAGF,QJwhBR,SIthBU,cAAA,QAPF,QJkiBR,SIhiBU,cAAA,OAGF,QJkiBR,SIhiBU,cAAA,OAPF,QJ4iBR,SI1iBU,cAAA,KAGF,QJ4iBR,SI1iBU,cAAA,KAPF,QJsjBR,SIpjBU,cAAA,OAGF,QJsjBR,SIpjBU,cAAA,OAPF,QJgkBR,SI9jBU,cAAA,KAGF,QJgkBR,SI9jBU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJmuBR,SIjuBU,cAAA,EAGF,QJmuBR,SIjuBU,cAAA,EAPF,QJ6uBR,SI3uBU,cAAA,QAGF,QJ6uBR,SI3uBU,cAAA,QAPF,QJuvBR,SIrvBU,cAAA,OAGF,QJuvBR,SIrvBU,cAAA,OAPF,QJiwBR,SI/vBU,cAAA,KAGF,QJiwBR,SI/vBU,cAAA,KAPF,QJ2wBR,SIzwBU,cAAA,OAGF,QJ2wBR,SIzwBU,cAAA,OAPF,QJqxBR,SInxBU,cAAA,KAGF,QJqxBR,SInxBU,cAAA,MFzDN,0BESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJw7BR,SIt7BU,cAAA,EAGF,QJw7BR,SIt7BU,cAAA,EAPF,QJk8BR,SIh8BU,cAAA,QAGF,QJk8BR,SIh8BU,cAAA,QAPF,QJ48BR,SI18BU,cAAA,OAGF,QJ48BR,SI18BU,cAAA,OAPF,QJs9BR,SIp9BU,cAAA,KAGF,QJs9BR,SIp9BU,cAAA,KAPF,QJg+BR,SI99BU,cAAA,OAGF,QJg+BR,SI99BU,cAAA,OAPF,QJ0+BR,SIx+BU,cAAA,KAGF,QJ0+BR,SIx+BU,cAAA,MFzDN,0BESE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,YAAA,EAwDU,cAxDV,YAAA,YAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,eAxDV,YAAA,aAwDU,eAxDV,YAAA,aAmEM,SJ6oCR,UI3oCU,cAAA,EAGF,SJ6oCR,UI3oCU,cAAA,EAPF,SJupCR,UIrpCU,cAAA,QAGF,SJupCR,UIrpCU,cAAA,QAPF,SJiqCR,UI/pCU,cAAA,OAGF,SJiqCR,UI/pCU,cAAA,OAPF,SJ2qCR,UIzqCU,cAAA,KAGF,SJ2qCR,UIzqCU,cAAA,KAPF,SJqrCR,UInrCU,cAAA,OAGF,SJqrCR,UInrCU,cAAA,OAPF,SJ+rCR,UI7rCU,cAAA,KAGF,SJ+rCR,UI7rCU,cAAA,MCzDF,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,aAAA,YAAA,YAAA,YAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,gBAAA,YAAA,gBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,cAAA,YAAA,aAAA,YAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,gBAAA,aAAA,gBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eHPR,yBGAI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHPR,yBGAI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHPR,yBGAI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHPR,0BGAI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHPR,0BGAI,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,aAAA,YAAA,YAAA,YAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,gBAAA,YAAA,gBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,aAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,cAAA,YAAA,aAAA,YAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,gBAAA,aAAA,gBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBChCZ,aDyBQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["/*!\n * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n$include-column-box-sizing: true !default;\n\n@import \"functions\";\n@import \"variables\";\n\n@import \"mixins/lists\";\n@import \"mixins/breakpoints\";\n@import \"mixins/container\";\n@import \"mixins/grid\";\n@import \"mixins/utilities\";\n\n@import \"vendor/rfs\";\n\n@import \"containers\";\n@import \"grid\";\n\n@import \"utilities\";\n// Only use the utilities we need\n// stylelint-disable-next-line scss/dollar-variable-default\n$utilities: map-get-multiple(\n $utilities,\n (\n \"display\",\n \"order\",\n \"flex\",\n \"flex-direction\",\n \"flex-grow\",\n \"flex-shrink\",\n \"flex-wrap\",\n \"justify-content\",\n \"align-items\",\n \"align-content\",\n \"align-self\",\n \"margin\",\n \"margin-x\",\n \"margin-y\",\n \"margin-top\",\n \"margin-end\",\n \"margin-bottom\",\n \"margin-start\",\n \"negative-margin\",\n \"negative-margin-x\",\n \"negative-margin-y\",\n \"negative-margin-top\",\n \"negative-margin-end\",\n \"negative-margin-bottom\",\n \"negative-margin-start\",\n \"padding\",\n \"padding-x\",\n \"padding-y\",\n \"padding-top\",\n \"padding-end\",\n \"padding-bottom\",\n \"padding-start\",\n )\n);\n\n@import \"utilities/api\";\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","/*!\n * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n width: 100%;\n padding-right: var(--bs-gutter-x, 0.75rem);\n padding-left: var(--bs-gutter-x, 0.75rem);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--bs-gutter-y) * -1);\n margin-right: calc(var(--bs-gutter-x) * -.5);\n margin-left: calc(var(--bs-gutter-x) * -.5);\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * .5);\n padding-left: calc(var(--bs-gutter-x) * .5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-sm-0 {\n margin-left: 0;\n }\n\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-sm-3 {\n margin-left: 25%;\n }\n\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-sm-6 {\n margin-left: 50%;\n }\n\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-sm-9 {\n margin-left: 75%;\n }\n\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-md-0 {\n margin-left: 0;\n }\n\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-md-3 {\n margin-left: 25%;\n }\n\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-md-6 {\n margin-left: 50%;\n }\n\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-md-9 {\n margin-left: 75%;\n }\n\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-lg-0 {\n margin-left: 0;\n }\n\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-lg-3 {\n margin-left: 25%;\n }\n\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-lg-6 {\n margin-left: 50%;\n }\n\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-lg-9 {\n margin-left: 75%;\n }\n\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xl-0 {\n margin-left: 0;\n }\n\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xl-3 {\n margin-left: 25%;\n }\n\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xl-6 {\n margin-left: 50%;\n }\n\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xl-9 {\n margin-left: 75%;\n }\n\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xxl-0 {\n margin-left: 0;\n }\n\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xxl-3 {\n margin-left: 25%;\n }\n\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xxl-6 {\n margin-left: 50%;\n }\n\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xxl-9 {\n margin-left: 75%;\n }\n\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n\n .d-sm-inline-block {\n display: inline-block !important;\n }\n\n .d-sm-block {\n display: block !important;\n }\n\n .d-sm-grid {\n display: grid !important;\n }\n\n .d-sm-table {\n display: table !important;\n }\n\n .d-sm-table-row {\n display: table-row !important;\n }\n\n .d-sm-table-cell {\n display: table-cell !important;\n }\n\n .d-sm-flex {\n display: flex !important;\n }\n\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n\n .d-sm-none {\n display: none !important;\n }\n\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-sm-row {\n flex-direction: row !important;\n }\n\n .flex-sm-column {\n flex-direction: column !important;\n }\n\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-sm-center {\n justify-content: center !important;\n }\n\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n\n .align-items-sm-center {\n align-items: center !important;\n }\n\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n\n .align-content-sm-center {\n align-content: center !important;\n }\n\n .align-content-sm-between {\n align-content: space-between !important;\n }\n\n .align-content-sm-around {\n align-content: space-around !important;\n }\n\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n\n .align-self-sm-auto {\n align-self: auto !important;\n }\n\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n\n .align-self-sm-center {\n align-self: center !important;\n }\n\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n\n .order-sm-first {\n order: -1 !important;\n }\n\n .order-sm-0 {\n order: 0 !important;\n }\n\n .order-sm-1 {\n order: 1 !important;\n }\n\n .order-sm-2 {\n order: 2 !important;\n }\n\n .order-sm-3 {\n order: 3 !important;\n }\n\n .order-sm-4 {\n order: 4 !important;\n }\n\n .order-sm-5 {\n order: 5 !important;\n }\n\n .order-sm-last {\n order: 6 !important;\n }\n\n .m-sm-0 {\n margin: 0 !important;\n }\n\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n\n .m-sm-3 {\n margin: 1rem !important;\n }\n\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n\n .m-sm-5 {\n margin: 3rem !important;\n }\n\n .m-sm-auto {\n margin: auto !important;\n }\n\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n\n .mt-sm-auto {\n margin-top: auto !important;\n }\n\n .me-sm-0 {\n margin-right: 0 !important;\n }\n\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n\n .me-sm-auto {\n margin-right: auto !important;\n }\n\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n\n .ms-sm-auto {\n margin-left: auto !important;\n }\n\n .p-sm-0 {\n padding: 0 !important;\n }\n\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n\n .p-sm-3 {\n padding: 1rem !important;\n }\n\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n\n .p-sm-5 {\n padding: 3rem !important;\n }\n\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n\n .d-md-inline-block {\n display: inline-block !important;\n }\n\n .d-md-block {\n display: block !important;\n }\n\n .d-md-grid {\n display: grid !important;\n }\n\n .d-md-table {\n display: table !important;\n }\n\n .d-md-table-row {\n display: table-row !important;\n }\n\n .d-md-table-cell {\n display: table-cell !important;\n }\n\n .d-md-flex {\n display: flex !important;\n }\n\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n\n .d-md-none {\n display: none !important;\n }\n\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-md-row {\n flex-direction: row !important;\n }\n\n .flex-md-column {\n flex-direction: column !important;\n }\n\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-md-center {\n justify-content: center !important;\n }\n\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-md-start {\n align-items: flex-start !important;\n }\n\n .align-items-md-end {\n align-items: flex-end !important;\n }\n\n .align-items-md-center {\n align-items: center !important;\n }\n\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n\n .align-content-md-start {\n align-content: flex-start !important;\n }\n\n .align-content-md-end {\n align-content: flex-end !important;\n }\n\n .align-content-md-center {\n align-content: center !important;\n }\n\n .align-content-md-between {\n align-content: space-between !important;\n }\n\n .align-content-md-around {\n align-content: space-around !important;\n }\n\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n\n .align-self-md-auto {\n align-self: auto !important;\n }\n\n .align-self-md-start {\n align-self: flex-start !important;\n }\n\n .align-self-md-end {\n align-self: flex-end !important;\n }\n\n .align-self-md-center {\n align-self: center !important;\n }\n\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n\n .order-md-first {\n order: -1 !important;\n }\n\n .order-md-0 {\n order: 0 !important;\n }\n\n .order-md-1 {\n order: 1 !important;\n }\n\n .order-md-2 {\n order: 2 !important;\n }\n\n .order-md-3 {\n order: 3 !important;\n }\n\n .order-md-4 {\n order: 4 !important;\n }\n\n .order-md-5 {\n order: 5 !important;\n }\n\n .order-md-last {\n order: 6 !important;\n }\n\n .m-md-0 {\n margin: 0 !important;\n }\n\n .m-md-1 {\n margin: 0.25rem !important;\n }\n\n .m-md-2 {\n margin: 0.5rem !important;\n }\n\n .m-md-3 {\n margin: 1rem !important;\n }\n\n .m-md-4 {\n margin: 1.5rem !important;\n }\n\n .m-md-5 {\n margin: 3rem !important;\n }\n\n .m-md-auto {\n margin: auto !important;\n }\n\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-md-0 {\n margin-top: 0 !important;\n }\n\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n\n .mt-md-auto {\n margin-top: auto !important;\n }\n\n .me-md-0 {\n margin-right: 0 !important;\n }\n\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-md-3 {\n margin-right: 1rem !important;\n }\n\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-md-5 {\n margin-right: 3rem !important;\n }\n\n .me-md-auto {\n margin-right: auto !important;\n }\n\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n\n .ms-md-0 {\n margin-left: 0 !important;\n }\n\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n\n .ms-md-auto {\n margin-left: auto !important;\n }\n\n .p-md-0 {\n padding: 0 !important;\n }\n\n .p-md-1 {\n padding: 0.25rem !important;\n }\n\n .p-md-2 {\n padding: 0.5rem !important;\n }\n\n .p-md-3 {\n padding: 1rem !important;\n }\n\n .p-md-4 {\n padding: 1.5rem !important;\n }\n\n .p-md-5 {\n padding: 3rem !important;\n }\n\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-md-0 {\n padding-top: 0 !important;\n }\n\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n\n .pe-md-0 {\n padding-right: 0 !important;\n }\n\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-md-0 {\n padding-left: 0 !important;\n }\n\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n\n .d-lg-inline-block {\n display: inline-block !important;\n }\n\n .d-lg-block {\n display: block !important;\n }\n\n .d-lg-grid {\n display: grid !important;\n }\n\n .d-lg-table {\n display: table !important;\n }\n\n .d-lg-table-row {\n display: table-row !important;\n }\n\n .d-lg-table-cell {\n display: table-cell !important;\n }\n\n .d-lg-flex {\n display: flex !important;\n }\n\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n\n .d-lg-none {\n display: none !important;\n }\n\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-lg-row {\n flex-direction: row !important;\n }\n\n .flex-lg-column {\n flex-direction: column !important;\n }\n\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-lg-center {\n justify-content: center !important;\n }\n\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n\n .align-items-lg-center {\n align-items: center !important;\n }\n\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n\n .align-content-lg-center {\n align-content: center !important;\n }\n\n .align-content-lg-between {\n align-content: space-between !important;\n }\n\n .align-content-lg-around {\n align-content: space-around !important;\n }\n\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n\n .align-self-lg-auto {\n align-self: auto !important;\n }\n\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n\n .align-self-lg-center {\n align-self: center !important;\n }\n\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n\n .order-lg-first {\n order: -1 !important;\n }\n\n .order-lg-0 {\n order: 0 !important;\n }\n\n .order-lg-1 {\n order: 1 !important;\n }\n\n .order-lg-2 {\n order: 2 !important;\n }\n\n .order-lg-3 {\n order: 3 !important;\n }\n\n .order-lg-4 {\n order: 4 !important;\n }\n\n .order-lg-5 {\n order: 5 !important;\n }\n\n .order-lg-last {\n order: 6 !important;\n }\n\n .m-lg-0 {\n margin: 0 !important;\n }\n\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n\n .m-lg-3 {\n margin: 1rem !important;\n }\n\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n\n .m-lg-5 {\n margin: 3rem !important;\n }\n\n .m-lg-auto {\n margin: auto !important;\n }\n\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n\n .mt-lg-auto {\n margin-top: auto !important;\n }\n\n .me-lg-0 {\n margin-right: 0 !important;\n }\n\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n\n .me-lg-auto {\n margin-right: auto !important;\n }\n\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n\n .ms-lg-auto {\n margin-left: auto !important;\n }\n\n .p-lg-0 {\n padding: 0 !important;\n }\n\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n\n .p-lg-3 {\n padding: 1rem !important;\n }\n\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n\n .p-lg-5 {\n padding: 3rem !important;\n }\n\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n\n .d-xl-inline-block {\n display: inline-block !important;\n }\n\n .d-xl-block {\n display: block !important;\n }\n\n .d-xl-grid {\n display: grid !important;\n }\n\n .d-xl-table {\n display: table !important;\n }\n\n .d-xl-table-row {\n display: table-row !important;\n }\n\n .d-xl-table-cell {\n display: table-cell !important;\n }\n\n .d-xl-flex {\n display: flex !important;\n }\n\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xl-none {\n display: none !important;\n }\n\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xl-row {\n flex-direction: row !important;\n }\n\n .flex-xl-column {\n flex-direction: column !important;\n }\n\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xl-center {\n justify-content: center !important;\n }\n\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xl-center {\n align-items: center !important;\n }\n\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xl-center {\n align-content: center !important;\n }\n\n .align-content-xl-between {\n align-content: space-between !important;\n }\n\n .align-content-xl-around {\n align-content: space-around !important;\n }\n\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xl-auto {\n align-self: auto !important;\n }\n\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xl-center {\n align-self: center !important;\n }\n\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n\n .order-xl-first {\n order: -1 !important;\n }\n\n .order-xl-0 {\n order: 0 !important;\n }\n\n .order-xl-1 {\n order: 1 !important;\n }\n\n .order-xl-2 {\n order: 2 !important;\n }\n\n .order-xl-3 {\n order: 3 !important;\n }\n\n .order-xl-4 {\n order: 4 !important;\n }\n\n .order-xl-5 {\n order: 5 !important;\n }\n\n .order-xl-last {\n order: 6 !important;\n }\n\n .m-xl-0 {\n margin: 0 !important;\n }\n\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xl-3 {\n margin: 1rem !important;\n }\n\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xl-5 {\n margin: 3rem !important;\n }\n\n .m-xl-auto {\n margin: auto !important;\n }\n\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xl-auto {\n margin-top: auto !important;\n }\n\n .me-xl-0 {\n margin-right: 0 !important;\n }\n\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xl-auto {\n margin-right: auto !important;\n }\n\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xl-auto {\n margin-left: auto !important;\n }\n\n .p-xl-0 {\n padding: 0 !important;\n }\n\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xl-3 {\n padding: 1rem !important;\n }\n\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xl-5 {\n padding: 3rem !important;\n }\n\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n\n .d-xxl-block {\n display: block !important;\n }\n\n .d-xxl-grid {\n display: grid !important;\n }\n\n .d-xxl-table {\n display: table !important;\n }\n\n .d-xxl-table-row {\n display: table-row !important;\n }\n\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n\n .d-xxl-flex {\n display: flex !important;\n }\n\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xxl-none {\n display: none !important;\n }\n\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xxl-row {\n flex-direction: row !important;\n }\n\n .flex-xxl-column {\n flex-direction: column !important;\n }\n\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xxl-center {\n align-items: center !important;\n }\n\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xxl-center {\n align-content: center !important;\n }\n\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xxl-center {\n align-self: center !important;\n }\n\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n\n .order-xxl-first {\n order: -1 !important;\n }\n\n .order-xxl-0 {\n order: 0 !important;\n }\n\n .order-xxl-1 {\n order: 1 !important;\n }\n\n .order-xxl-2 {\n order: 2 !important;\n }\n\n .order-xxl-3 {\n order: 3 !important;\n }\n\n .order-xxl-4 {\n order: 4 !important;\n }\n\n .order-xxl-5 {\n order: 5 !important;\n }\n\n .order-xxl-last {\n order: 6 !important;\n }\n\n .m-xxl-0 {\n margin: 0 !important;\n }\n\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xxl-3 {\n margin: 1rem !important;\n }\n\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xxl-5 {\n margin: 3rem !important;\n }\n\n .m-xxl-auto {\n margin: auto !important;\n }\n\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xxl-auto {\n margin-right: auto !important;\n }\n\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n\n .p-xxl-0 {\n padding: 0 !important;\n }\n\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xxl-3 {\n padding: 1rem !important;\n }\n\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xxl-5 {\n padding: 3rem !important;\n }\n\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n\n .d-print-inline-block {\n display: inline-block !important;\n }\n\n .d-print-block {\n display: block !important;\n }\n\n .d-print-grid {\n display: grid !important;\n }\n\n .d-print-table {\n display: table !important;\n }\n\n .d-print-table-row {\n display: table-row !important;\n }\n\n .d-print-table-cell {\n display: table-cell !important;\n }\n\n .d-print-flex {\n display: flex !important;\n }\n\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n width: 100%;\n padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter});\n padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter});\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$variable-prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$variable-prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$variable-prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$variable-prefix}gutter-x: #{$gutter};\n --#{$variable-prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--#{$variable-prefix}gutter-y) * -1); // stylelint-disable-line function-disallowed-list\n margin-right: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n margin-left: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready($gutter: $grid-gutter-width) {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$variable-prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// numberof columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (eg. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $value in $is-local-vars {\n --#{$variable-prefix}#{$local-var}: #{$value};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]}
\ No newline at end of file
diff --git a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map b/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map
deleted file mode 100644
index 33f5c3b..0000000
--- a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../scss/bootstrap-grid.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","bootstrap-grid.css","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AAAA;;;;;EAAA;ACME;;;;;;;ECHA,WAAA;EACA,yCAAA;EACA,0CAAA;EACA,iBAAA;EACA,kBAAA;ACWF;;AC6CI;EH5CE;IACE,gBIuce;EFpcrB;AACF;ACuCI;EH5CE;IACE,gBIuce;EF/brB;AACF;ACkCI;EH5CE;IACE,gBIuce;EF1brB;AACF;AC6BI;EH5CE;IACE,iBIuce;EFrbrB;AACF;ACwBI;EH5CE;IACE,iBIuce;EFhbrB;AACF;AGvCE;ECAA,qBAAA;EACA,gBAAA;EACA,aAAA;EACA,eAAA;EACA,yCAAA;EACA,2CAAA;EACA,4CAAA;AJ0CF;AG7CI;ECQF,sBAAA;EAIA,cAAA;EACA,WAAA;EACA,eAAA;EACA,2CAAA;EACA,4CAAA;EACA,8BAAA;AJqCF;;AIUM;EACE,YAAA;AJPR;;AIUM;EApCJ,cAAA;EACA,WAAA;AJ8BF;;AIhBE;EACE,cAAA;EACA,WAAA;AJmBJ;;AIrBE;EACE,cAAA;EACA,UAAA;AJwBJ;;AI1BE;EACE,cAAA;EACA,qBAAA;AJ6BJ;;AI/BE;EACE,cAAA;EACA,UAAA;AJkCJ;;AIpCE;EACE,cAAA;EACA,UAAA;AJuCJ;;AIzCE;EACE,cAAA;EACA,qBAAA;AJ4CJ;;AIbM;EAhDJ,cAAA;EACA,WAAA;AJiEF;;AIZU;EAhEN,cAAA;EACA,kBAAA;AJgFJ;;AIjBU;EAhEN,cAAA;EACA,mBAAA;AJqFJ;;AItBU;EAhEN,cAAA;EACA,UAAA;AJ0FJ;;AI3BU;EAhEN,cAAA;EACA,mBAAA;AJ+FJ;;AIhCU;EAhEN,cAAA;EACA,mBAAA;AJoGJ;;AIrCU;EAhEN,cAAA;EACA,UAAA;AJyGJ;;AI1CU;EAhEN,cAAA;EACA,mBAAA;AJ8GJ;;AI/CU;EAhEN,cAAA;EACA,mBAAA;AJmHJ;;AIpDU;EAhEN,cAAA;EACA,UAAA;AJwHJ;;AIzDU;EAhEN,cAAA;EACA,mBAAA;AJ6HJ;;AI9DU;EAhEN,cAAA;EACA,mBAAA;AJkIJ;;AInEU;EAhEN,cAAA;EACA,WAAA;AJuIJ;;AIhEY;EAxDV,yBAAA;AJ4HF;;AIpEY;EAxDV,0BAAA;AJgIF;;AIxEY;EAxDV,iBAAA;AJoIF;;AI5EY;EAxDV,0BAAA;AJwIF;;AIhFY;EAxDV,0BAAA;AJ4IF;;AIpFY;EAxDV,iBAAA;AJgJF;;AIxFY;EAxDV,0BAAA;AJoJF;;AI5FY;EAxDV,0BAAA;AJwJF;;AIhGY;EAxDV,iBAAA;AJ4JF;;AIpGY;EAxDV,0BAAA;AJgKF;;AIxGY;EAxDV,0BAAA;AJoKF;;AIjGQ;;EAEE,gBAAA;AJoGV;;AIjGQ;;EAEE,gBAAA;AJoGV;;AI3GQ;;EAEE,sBAAA;AJ8GV;;AI3GQ;;EAEE,sBAAA;AJ8GV;;AIrHQ;;EAEE,qBAAA;AJwHV;;AIrHQ;;EAEE,qBAAA;AJwHV;;AI/HQ;;EAEE,mBAAA;AJkIV;;AI/HQ;;EAEE,mBAAA;AJkIV;;AIzIQ;;EAEE,qBAAA;AJ4IV;;AIzIQ;;EAEE,qBAAA;AJ4IV;;AInJQ;;EAEE,mBAAA;AJsJV;;AInJQ;;EAEE,mBAAA;AJsJV;;AC/MI;EGSE;IACE,YAAA;EJ0MN;;EIvMI;IApCJ,cAAA;IACA,WAAA;EJ+OA;;EIjOA;IACE,cAAA;IACA,WAAA;EJoOF;;EItOA;IACE,cAAA;IACA,UAAA;EJyOF;;EI3OA;IACE,cAAA;IACA,qBAAA;EJ8OF;;EIhPA;IACE,cAAA;IACA,UAAA;EJmPF;;EIrPA;IACE,cAAA;IACA,UAAA;EJwPF;;EI1PA;IACE,cAAA;IACA,qBAAA;EJ6PF;;EI9NI;IAhDJ,cAAA;IACA,WAAA;EJkRA;;EI7NQ;IAhEN,cAAA;IACA,kBAAA;EJiSF;;EIlOQ;IAhEN,cAAA;IACA,mBAAA;EJsSF;;EIvOQ;IAhEN,cAAA;IACA,UAAA;EJ2SF;;EI5OQ;IAhEN,cAAA;IACA,mBAAA;EJgTF;;EIjPQ;IAhEN,cAAA;IACA,mBAAA;EJqTF;;EItPQ;IAhEN,cAAA;IACA,UAAA;EJ0TF;;EI3PQ;IAhEN,cAAA;IACA,mBAAA;EJ+TF;;EIhQQ;IAhEN,cAAA;IACA,mBAAA;EJoUF;;EIrQQ;IAhEN,cAAA;IACA,UAAA;EJyUF;;EI1QQ;IAhEN,cAAA;IACA,mBAAA;EJ8UF;;EI/QQ;IAhEN,cAAA;IACA,mBAAA;EJmVF;;EIpRQ;IAhEN,cAAA;IACA,WAAA;EJwVF;;EIjRU;IAxDV,eAAA;EJ6UA;;EIrRU;IAxDV,yBAAA;EJiVA;;EIzRU;IAxDV,0BAAA;EJqVA;;EI7RU;IAxDV,iBAAA;EJyVA;;EIjSU;IAxDV,0BAAA;EJ6VA;;EIrSU;IAxDV,0BAAA;EJiWA;;EIzSU;IAxDV,iBAAA;EJqWA;;EI7SU;IAxDV,0BAAA;EJyWA;;EIjTU;IAxDV,0BAAA;EJ6WA;;EIrTU;IAxDV,iBAAA;EJiXA;;EIzTU;IAxDV,0BAAA;EJqXA;;EI7TU;IAxDV,0BAAA;EJyXA;;EItTM;;IAEE,gBAAA;EJyTR;;EItTM;;IAEE,gBAAA;EJyTR;;EIhUM;;IAEE,sBAAA;EJmUR;;EIhUM;;IAEE,sBAAA;EJmUR;;EI1UM;;IAEE,qBAAA;EJ6UR;;EI1UM;;IAEE,qBAAA;EJ6UR;;EIpVM;;IAEE,mBAAA;EJuVR;;EIpVM;;IAEE,mBAAA;EJuVR;;EI9VM;;IAEE,qBAAA;EJiWR;;EI9VM;;IAEE,qBAAA;EJiWR;;EIxWM;;IAEE,mBAAA;EJ2WR;;EIxWM;;IAEE,mBAAA;EJ2WR;AACF;ACraI;EGSE;IACE,YAAA;EJ+ZN;;EI5ZI;IApCJ,cAAA;IACA,WAAA;EJocA;;EItbA;IACE,cAAA;IACA,WAAA;EJybF;;EI3bA;IACE,cAAA;IACA,UAAA;EJ8bF;;EIhcA;IACE,cAAA;IACA,qBAAA;EJmcF;;EIrcA;IACE,cAAA;IACA,UAAA;EJwcF;;EI1cA;IACE,cAAA;IACA,UAAA;EJ6cF;;EI/cA;IACE,cAAA;IACA,qBAAA;EJkdF;;EInbI;IAhDJ,cAAA;IACA,WAAA;EJueA;;EIlbQ;IAhEN,cAAA;IACA,kBAAA;EJsfF;;EIvbQ;IAhEN,cAAA;IACA,mBAAA;EJ2fF;;EI5bQ;IAhEN,cAAA;IACA,UAAA;EJggBF;;EIjcQ;IAhEN,cAAA;IACA,mBAAA;EJqgBF;;EItcQ;IAhEN,cAAA;IACA,mBAAA;EJ0gBF;;EI3cQ;IAhEN,cAAA;IACA,UAAA;EJ+gBF;;EIhdQ;IAhEN,cAAA;IACA,mBAAA;EJohBF;;EIrdQ;IAhEN,cAAA;IACA,mBAAA;EJyhBF;;EI1dQ;IAhEN,cAAA;IACA,UAAA;EJ8hBF;;EI/dQ;IAhEN,cAAA;IACA,mBAAA;EJmiBF;;EIpeQ;IAhEN,cAAA;IACA,mBAAA;EJwiBF;;EIzeQ;IAhEN,cAAA;IACA,WAAA;EJ6iBF;;EIteU;IAxDV,eAAA;EJkiBA;;EI1eU;IAxDV,yBAAA;EJsiBA;;EI9eU;IAxDV,0BAAA;EJ0iBA;;EIlfU;IAxDV,iBAAA;EJ8iBA;;EItfU;IAxDV,0BAAA;EJkjBA;;EI1fU;IAxDV,0BAAA;EJsjBA;;EI9fU;IAxDV,iBAAA;EJ0jBA;;EIlgBU;IAxDV,0BAAA;EJ8jBA;;EItgBU;IAxDV,0BAAA;EJkkBA;;EI1gBU;IAxDV,iBAAA;EJskBA;;EI9gBU;IAxDV,0BAAA;EJ0kBA;;EIlhBU;IAxDV,0BAAA;EJ8kBA;;EI3gBM;;IAEE,gBAAA;EJ8gBR;;EI3gBM;;IAEE,gBAAA;EJ8gBR;;EIrhBM;;IAEE,sBAAA;EJwhBR;;EIrhBM;;IAEE,sBAAA;EJwhBR;;EI/hBM;;IAEE,qBAAA;EJkiBR;;EI/hBM;;IAEE,qBAAA;EJkiBR;;EIziBM;;IAEE,mBAAA;EJ4iBR;;EIziBM;;IAEE,mBAAA;EJ4iBR;;EInjBM;;IAEE,qBAAA;EJsjBR;;EInjBM;;IAEE,qBAAA;EJsjBR;;EI7jBM;;IAEE,mBAAA;EJgkBR;;EI7jBM;;IAEE,mBAAA;EJgkBR;AACF;AC1nBI;EGSE;IACE,YAAA;EJonBN;;EIjnBI;IApCJ,cAAA;IACA,WAAA;EJypBA;;EI3oBA;IACE,cAAA;IACA,WAAA;EJ8oBF;;EIhpBA;IACE,cAAA;IACA,UAAA;EJmpBF;;EIrpBA;IACE,cAAA;IACA,qBAAA;EJwpBF;;EI1pBA;IACE,cAAA;IACA,UAAA;EJ6pBF;;EI/pBA;IACE,cAAA;IACA,UAAA;EJkqBF;;EIpqBA;IACE,cAAA;IACA,qBAAA;EJuqBF;;EIxoBI;IAhDJ,cAAA;IACA,WAAA;EJ4rBA;;EIvoBQ;IAhEN,cAAA;IACA,kBAAA;EJ2sBF;;EI5oBQ;IAhEN,cAAA;IACA,mBAAA;EJgtBF;;EIjpBQ;IAhEN,cAAA;IACA,UAAA;EJqtBF;;EItpBQ;IAhEN,cAAA;IACA,mBAAA;EJ0tBF;;EI3pBQ;IAhEN,cAAA;IACA,mBAAA;EJ+tBF;;EIhqBQ;IAhEN,cAAA;IACA,UAAA;EJouBF;;EIrqBQ;IAhEN,cAAA;IACA,mBAAA;EJyuBF;;EI1qBQ;IAhEN,cAAA;IACA,mBAAA;EJ8uBF;;EI/qBQ;IAhEN,cAAA;IACA,UAAA;EJmvBF;;EIprBQ;IAhEN,cAAA;IACA,mBAAA;EJwvBF;;EIzrBQ;IAhEN,cAAA;IACA,mBAAA;EJ6vBF;;EI9rBQ;IAhEN,cAAA;IACA,WAAA;EJkwBF;;EI3rBU;IAxDV,eAAA;EJuvBA;;EI/rBU;IAxDV,yBAAA;EJ2vBA;;EInsBU;IAxDV,0BAAA;EJ+vBA;;EIvsBU;IAxDV,iBAAA;EJmwBA;;EI3sBU;IAxDV,0BAAA;EJuwBA;;EI/sBU;IAxDV,0BAAA;EJ2wBA;;EIntBU;IAxDV,iBAAA;EJ+wBA;;EIvtBU;IAxDV,0BAAA;EJmxBA;;EI3tBU;IAxDV,0BAAA;EJuxBA;;EI/tBU;IAxDV,iBAAA;EJ2xBA;;EInuBU;IAxDV,0BAAA;EJ+xBA;;EIvuBU;IAxDV,0BAAA;EJmyBA;;EIhuBM;;IAEE,gBAAA;EJmuBR;;EIhuBM;;IAEE,gBAAA;EJmuBR;;EI1uBM;;IAEE,sBAAA;EJ6uBR;;EI1uBM;;IAEE,sBAAA;EJ6uBR;;EIpvBM;;IAEE,qBAAA;EJuvBR;;EIpvBM;;IAEE,qBAAA;EJuvBR;;EI9vBM;;IAEE,mBAAA;EJiwBR;;EI9vBM;;IAEE,mBAAA;EJiwBR;;EIxwBM;;IAEE,qBAAA;EJ2wBR;;EIxwBM;;IAEE,qBAAA;EJ2wBR;;EIlxBM;;IAEE,mBAAA;EJqxBR;;EIlxBM;;IAEE,mBAAA;EJqxBR;AACF;AC/0BI;EGSE;IACE,YAAA;EJy0BN;;EIt0BI;IApCJ,cAAA;IACA,WAAA;EJ82BA;;EIh2BA;IACE,cAAA;IACA,WAAA;EJm2BF;;EIr2BA;IACE,cAAA;IACA,UAAA;EJw2BF;;EI12BA;IACE,cAAA;IACA,qBAAA;EJ62BF;;EI/2BA;IACE,cAAA;IACA,UAAA;EJk3BF;;EIp3BA;IACE,cAAA;IACA,UAAA;EJu3BF;;EIz3BA;IACE,cAAA;IACA,qBAAA;EJ43BF;;EI71BI;IAhDJ,cAAA;IACA,WAAA;EJi5BA;;EI51BQ;IAhEN,cAAA;IACA,kBAAA;EJg6BF;;EIj2BQ;IAhEN,cAAA;IACA,mBAAA;EJq6BF;;EIt2BQ;IAhEN,cAAA;IACA,UAAA;EJ06BF;;EI32BQ;IAhEN,cAAA;IACA,mBAAA;EJ+6BF;;EIh3BQ;IAhEN,cAAA;IACA,mBAAA;EJo7BF;;EIr3BQ;IAhEN,cAAA;IACA,UAAA;EJy7BF;;EI13BQ;IAhEN,cAAA;IACA,mBAAA;EJ87BF;;EI/3BQ;IAhEN,cAAA;IACA,mBAAA;EJm8BF;;EIp4BQ;IAhEN,cAAA;IACA,UAAA;EJw8BF;;EIz4BQ;IAhEN,cAAA;IACA,mBAAA;EJ68BF;;EI94BQ;IAhEN,cAAA;IACA,mBAAA;EJk9BF;;EIn5BQ;IAhEN,cAAA;IACA,WAAA;EJu9BF;;EIh5BU;IAxDV,eAAA;EJ48BA;;EIp5BU;IAxDV,yBAAA;EJg9BA;;EIx5BU;IAxDV,0BAAA;EJo9BA;;EI55BU;IAxDV,iBAAA;EJw9BA;;EIh6BU;IAxDV,0BAAA;EJ49BA;;EIp6BU;IAxDV,0BAAA;EJg+BA;;EIx6BU;IAxDV,iBAAA;EJo+BA;;EI56BU;IAxDV,0BAAA;EJw+BA;;EIh7BU;IAxDV,0BAAA;EJ4+BA;;EIp7BU;IAxDV,iBAAA;EJg/BA;;EIx7BU;IAxDV,0BAAA;EJo/BA;;EI57BU;IAxDV,0BAAA;EJw/BA;;EIr7BM;;IAEE,gBAAA;EJw7BR;;EIr7BM;;IAEE,gBAAA;EJw7BR;;EI/7BM;;IAEE,sBAAA;EJk8BR;;EI/7BM;;IAEE,sBAAA;EJk8BR;;EIz8BM;;IAEE,qBAAA;EJ48BR;;EIz8BM;;IAEE,qBAAA;EJ48BR;;EIn9BM;;IAEE,mBAAA;EJs9BR;;EIn9BM;;IAEE,mBAAA;EJs9BR;;EI79BM;;IAEE,qBAAA;EJg+BR;;EI79BM;;IAEE,qBAAA;EJg+BR;;EIv+BM;;IAEE,mBAAA;EJ0+BR;;EIv+BM;;IAEE,mBAAA;EJ0+BR;AACF;ACpiCI;EGSE;IACE,YAAA;EJ8hCN;;EI3hCI;IApCJ,cAAA;IACA,WAAA;EJmkCA;;EIrjCA;IACE,cAAA;IACA,WAAA;EJwjCF;;EI1jCA;IACE,cAAA;IACA,UAAA;EJ6jCF;;EI/jCA;IACE,cAAA;IACA,qBAAA;EJkkCF;;EIpkCA;IACE,cAAA;IACA,UAAA;EJukCF;;EIzkCA;IACE,cAAA;IACA,UAAA;EJ4kCF;;EI9kCA;IACE,cAAA;IACA,qBAAA;EJilCF;;EIljCI;IAhDJ,cAAA;IACA,WAAA;EJsmCA;;EIjjCQ;IAhEN,cAAA;IACA,kBAAA;EJqnCF;;EItjCQ;IAhEN,cAAA;IACA,mBAAA;EJ0nCF;;EI3jCQ;IAhEN,cAAA;IACA,UAAA;EJ+nCF;;EIhkCQ;IAhEN,cAAA;IACA,mBAAA;EJooCF;;EIrkCQ;IAhEN,cAAA;IACA,mBAAA;EJyoCF;;EI1kCQ;IAhEN,cAAA;IACA,UAAA;EJ8oCF;;EI/kCQ;IAhEN,cAAA;IACA,mBAAA;EJmpCF;;EIplCQ;IAhEN,cAAA;IACA,mBAAA;EJwpCF;;EIzlCQ;IAhEN,cAAA;IACA,UAAA;EJ6pCF;;EI9lCQ;IAhEN,cAAA;IACA,mBAAA;EJkqCF;;EInmCQ;IAhEN,cAAA;IACA,mBAAA;EJuqCF;;EIxmCQ;IAhEN,cAAA;IACA,WAAA;EJ4qCF;;EIrmCU;IAxDV,eAAA;EJiqCA;;EIzmCU;IAxDV,yBAAA;EJqqCA;;EI7mCU;IAxDV,0BAAA;EJyqCA;;EIjnCU;IAxDV,iBAAA;EJ6qCA;;EIrnCU;IAxDV,0BAAA;EJirCA;;EIznCU;IAxDV,0BAAA;EJqrCA;;EI7nCU;IAxDV,iBAAA;EJyrCA;;EIjoCU;IAxDV,0BAAA;EJ6rCA;;EIroCU;IAxDV,0BAAA;EJisCA;;EIzoCU;IAxDV,iBAAA;EJqsCA;;EI7oCU;IAxDV,0BAAA;EJysCA;;EIjpCU;IAxDV,0BAAA;EJ6sCA;;EI1oCM;;IAEE,gBAAA;EJ6oCR;;EI1oCM;;IAEE,gBAAA;EJ6oCR;;EIppCM;;IAEE,sBAAA;EJupCR;;EIppCM;;IAEE,sBAAA;EJupCR;;EI9pCM;;IAEE,qBAAA;EJiqCR;;EI9pCM;;IAEE,qBAAA;EJiqCR;;EIxqCM;;IAEE,mBAAA;EJ2qCR;;EIxqCM;;IAEE,mBAAA;EJ2qCR;;EIlrCM;;IAEE,qBAAA;EJqrCR;;EIlrCM;;IAEE,qBAAA;EJqrCR;;EI5rCM;;IAEE,mBAAA;EJ+rCR;;EI5rCM;;IAEE,mBAAA;EJ+rCR;AACF;AKzvCQ;EAOI,0BAAA;ALqvCZ;;AK5vCQ;EAOI,gCAAA;ALyvCZ;;AKhwCQ;EAOI,yBAAA;AL6vCZ;;AKpwCQ;EAOI,wBAAA;ALiwCZ;;AKxwCQ;EAOI,yBAAA;ALqwCZ;;AK5wCQ;EAOI,6BAAA;ALywCZ;;AKhxCQ;EAOI,8BAAA;AL6wCZ;;AKpxCQ;EAOI,wBAAA;ALixCZ;;AKxxCQ;EAOI,+BAAA;ALqxCZ;;AK5xCQ;EAOI,wBAAA;ALyxCZ;;AKhyCQ;EAOI,yBAAA;AL6xCZ;;AKpyCQ;EAOI,8BAAA;ALiyCZ;;AKxyCQ;EAOI,iCAAA;ALqyCZ;;AK5yCQ;EAOI,sCAAA;ALyyCZ;;AKhzCQ;EAOI,yCAAA;AL6yCZ;;AKpzCQ;EAOI,uBAAA;ALizCZ;;AKxzCQ;EAOI,uBAAA;ALqzCZ;;AK5zCQ;EAOI,yBAAA;ALyzCZ;;AKh0CQ;EAOI,yBAAA;AL6zCZ;;AKp0CQ;EAOI,0BAAA;ALi0CZ;;AKx0CQ;EAOI,4BAAA;ALq0CZ;;AK50CQ;EAOI,kCAAA;ALy0CZ;;AKh1CQ;EAOI,sCAAA;AL60CZ;;AKp1CQ;EAOI,oCAAA;ALi1CZ;;AKx1CQ;EAOI,kCAAA;ALq1CZ;;AK51CQ;EAOI,yCAAA;ALy1CZ;;AKh2CQ;EAOI,wCAAA;AL61CZ;;AKp2CQ;EAOI,wCAAA;ALi2CZ;;AKx2CQ;EAOI,kCAAA;ALq2CZ;;AK52CQ;EAOI,gCAAA;ALy2CZ;;AKh3CQ;EAOI,8BAAA;AL62CZ;;AKp3CQ;EAOI,gCAAA;ALi3CZ;;AKx3CQ;EAOI,+BAAA;ALq3CZ;;AK53CQ;EAOI,oCAAA;ALy3CZ;;AKh4CQ;EAOI,kCAAA;AL63CZ;;AKp4CQ;EAOI,gCAAA;ALi4CZ;;AKx4CQ;EAOI,uCAAA;ALq4CZ;;AK54CQ;EAOI,sCAAA;ALy4CZ;;AKh5CQ;EAOI,iCAAA;AL64CZ;;AKp5CQ;EAOI,2BAAA;ALi5CZ;;AKx5CQ;EAOI,iCAAA;ALq5CZ;;AK55CQ;EAOI,+BAAA;ALy5CZ;;AKh6CQ;EAOI,6BAAA;AL65CZ;;AKp6CQ;EAOI,+BAAA;ALi6CZ;;AKx6CQ;EAOI,8BAAA;ALq6CZ;;AK56CQ;EAOI,oBAAA;ALy6CZ;;AKh7CQ;EAOI,mBAAA;AL66CZ;;AKp7CQ;EAOI,mBAAA;ALi7CZ;;AKx7CQ;EAOI,mBAAA;ALq7CZ;;AK57CQ;EAOI,mBAAA;ALy7CZ;;AKh8CQ;EAOI,mBAAA;AL67CZ;;AKp8CQ;EAOI,mBAAA;ALi8CZ;;AKx8CQ;EAOI,mBAAA;ALq8CZ;;AK58CQ;EAOI,oBAAA;ALy8CZ;;AKh9CQ;EAOI,0BAAA;AL68CZ;;AKp9CQ;EAOI,yBAAA;ALi9CZ;;AKx9CQ;EAOI,uBAAA;ALq9CZ;;AK59CQ;EAOI,yBAAA;ALy9CZ;;AKh+CQ;EAOI,uBAAA;AL69CZ;;AKp+CQ;EAOI,uBAAA;ALi+CZ;;AKx+CQ;EAOI,yBAAA;EAAA,0BAAA;ALs+CZ;;AK7+CQ;EAOI,+BAAA;EAAA,gCAAA;AL2+CZ;;AKl/CQ;EAOI,8BAAA;EAAA,+BAAA;ALg/CZ;;AKv/CQ;EAOI,4BAAA;EAAA,6BAAA;ALq/CZ;;AK5/CQ;EAOI,8BAAA;EAAA,+BAAA;AL0/CZ;;AKjgDQ;EAOI,4BAAA;EAAA,6BAAA;AL+/CZ;;AKtgDQ;EAOI,4BAAA;EAAA,6BAAA;ALogDZ;;AK3gDQ;EAOI,wBAAA;EAAA,2BAAA;ALygDZ;;AKhhDQ;EAOI,8BAAA;EAAA,iCAAA;AL8gDZ;;AKrhDQ;EAOI,6BAAA;EAAA,gCAAA;ALmhDZ;;AK1hDQ;EAOI,2BAAA;EAAA,8BAAA;ALwhDZ;;AK/hDQ;EAOI,6BAAA;EAAA,gCAAA;AL6hDZ;;AKpiDQ;EAOI,2BAAA;EAAA,8BAAA;ALkiDZ;;AKziDQ;EAOI,2BAAA;EAAA,8BAAA;ALuiDZ;;AK9iDQ;EAOI,wBAAA;AL2iDZ;;AKljDQ;EAOI,8BAAA;AL+iDZ;;AKtjDQ;EAOI,6BAAA;ALmjDZ;;AK1jDQ;EAOI,2BAAA;ALujDZ;;AK9jDQ;EAOI,6BAAA;AL2jDZ;;AKlkDQ;EAOI,2BAAA;AL+jDZ;;AKtkDQ;EAOI,2BAAA;ALmkDZ;;AK1kDQ;EAOI,yBAAA;ALukDZ;;AK9kDQ;EAOI,+BAAA;AL2kDZ;;AKllDQ;EAOI,8BAAA;AL+kDZ;;AKtlDQ;EAOI,4BAAA;ALmlDZ;;AK1lDQ;EAOI,8BAAA;ALulDZ;;AK9lDQ;EAOI,4BAAA;AL2lDZ;;AKlmDQ;EAOI,4BAAA;AL+lDZ;;AKtmDQ;EAOI,2BAAA;ALmmDZ;;AK1mDQ;EAOI,iCAAA;ALumDZ;;AK9mDQ;EAOI,gCAAA;AL2mDZ;;AKlnDQ;EAOI,8BAAA;AL+mDZ;;AKtnDQ;EAOI,gCAAA;ALmnDZ;;AK1nDQ;EAOI,8BAAA;ALunDZ;;AK9nDQ;EAOI,8BAAA;AL2nDZ;;AKloDQ;EAOI,0BAAA;AL+nDZ;;AKtoDQ;EAOI,gCAAA;ALmoDZ;;AK1oDQ;EAOI,+BAAA;ALuoDZ;;AK9oDQ;EAOI,6BAAA;AL2oDZ;;AKlpDQ;EAOI,+BAAA;AL+oDZ;;AKtpDQ;EAOI,6BAAA;ALmpDZ;;AK1pDQ;EAOI,6BAAA;ALupDZ;;AK9pDQ;EAOI,qBAAA;AL2pDZ;;AKlqDQ;EAOI,2BAAA;AL+pDZ;;AKtqDQ;EAOI,0BAAA;ALmqDZ;;AK1qDQ;EAOI,wBAAA;ALuqDZ;;AK9qDQ;EAOI,0BAAA;AL2qDZ;;AKlrDQ;EAOI,wBAAA;AL+qDZ;;AKtrDQ;EAOI,0BAAA;EAAA,2BAAA;ALorDZ;;AK3rDQ;EAOI,gCAAA;EAAA,iCAAA;ALyrDZ;;AKhsDQ;EAOI,+BAAA;EAAA,gCAAA;AL8rDZ;;AKrsDQ;EAOI,6BAAA;EAAA,8BAAA;ALmsDZ;;AK1sDQ;EAOI,+BAAA;EAAA,gCAAA;ALwsDZ;;AK/sDQ;EAOI,6BAAA;EAAA,8BAAA;AL6sDZ;;AKptDQ;EAOI,yBAAA;EAAA,4BAAA;ALktDZ;;AKztDQ;EAOI,+BAAA;EAAA,kCAAA;ALutDZ;;AK9tDQ;EAOI,8BAAA;EAAA,iCAAA;AL4tDZ;;AKnuDQ;EAOI,4BAAA;EAAA,+BAAA;ALiuDZ;;AKxuDQ;EAOI,8BAAA;EAAA,iCAAA;ALsuDZ;;AK7uDQ;EAOI,4BAAA;EAAA,+BAAA;AL2uDZ;;AKlvDQ;EAOI,yBAAA;AL+uDZ;;AKtvDQ;EAOI,+BAAA;ALmvDZ;;AK1vDQ;EAOI,8BAAA;ALuvDZ;;AK9vDQ;EAOI,4BAAA;AL2vDZ;;AKlwDQ;EAOI,8BAAA;AL+vDZ;;AKtwDQ;EAOI,4BAAA;ALmwDZ;;AK1wDQ;EAOI,0BAAA;ALuwDZ;;AK9wDQ;EAOI,gCAAA;AL2wDZ;;AKlxDQ;EAOI,+BAAA;AL+wDZ;;AKtxDQ;EAOI,6BAAA;ALmxDZ;;AK1xDQ;EAOI,+BAAA;ALuxDZ;;AK9xDQ;EAOI,6BAAA;AL2xDZ;;AKlyDQ;EAOI,4BAAA;AL+xDZ;;AKtyDQ;EAOI,kCAAA;ALmyDZ;;AK1yDQ;EAOI,iCAAA;ALuyDZ;;AK9yDQ;EAOI,+BAAA;AL2yDZ;;AKlzDQ;EAOI,iCAAA;AL+yDZ;;AKtzDQ;EAOI,+BAAA;ALmzDZ;;AK1zDQ;EAOI,2BAAA;ALuzDZ;;AK9zDQ;EAOI,iCAAA;AL2zDZ;;AKl0DQ;EAOI,gCAAA;AL+zDZ;;AKt0DQ;EAOI,8BAAA;ALm0DZ;;AK10DQ;EAOI,gCAAA;ALu0DZ;;AK90DQ;EAOI,8BAAA;AL20DZ;;ACl1DI;EIAI;IAOI,0BAAA;ELg1DV;;EKv1DM;IAOI,gCAAA;ELo1DV;;EK31DM;IAOI,yBAAA;ELw1DV;;EK/1DM;IAOI,wBAAA;EL41DV;;EKn2DM;IAOI,yBAAA;ELg2DV;;EKv2DM;IAOI,6BAAA;ELo2DV;;EK32DM;IAOI,8BAAA;ELw2DV;;EK/2DM;IAOI,wBAAA;EL42DV;;EKn3DM;IAOI,+BAAA;ELg3DV;;EKv3DM;IAOI,wBAAA;ELo3DV;;EK33DM;IAOI,yBAAA;ELw3DV;;EK/3DM;IAOI,8BAAA;EL43DV;;EKn4DM;IAOI,iCAAA;ELg4DV;;EKv4DM;IAOI,sCAAA;ELo4DV;;EK34DM;IAOI,yCAAA;ELw4DV;;EK/4DM;IAOI,uBAAA;EL44DV;;EKn5DM;IAOI,uBAAA;ELg5DV;;EKv5DM;IAOI,yBAAA;ELo5DV;;EK35DM;IAOI,yBAAA;ELw5DV;;EK/5DM;IAOI,0BAAA;EL45DV;;EKn6DM;IAOI,4BAAA;ELg6DV;;EKv6DM;IAOI,kCAAA;ELo6DV;;EK36DM;IAOI,sCAAA;ELw6DV;;EK/6DM;IAOI,oCAAA;EL46DV;;EKn7DM;IAOI,kCAAA;ELg7DV;;EKv7DM;IAOI,yCAAA;ELo7DV;;EK37DM;IAOI,wCAAA;ELw7DV;;EK/7DM;IAOI,wCAAA;EL47DV;;EKn8DM;IAOI,kCAAA;ELg8DV;;EKv8DM;IAOI,gCAAA;ELo8DV;;EK38DM;IAOI,8BAAA;ELw8DV;;EK/8DM;IAOI,gCAAA;EL48DV;;EKn9DM;IAOI,+BAAA;ELg9DV;;EKv9DM;IAOI,oCAAA;ELo9DV;;EK39DM;IAOI,kCAAA;ELw9DV;;EK/9DM;IAOI,gCAAA;EL49DV;;EKn+DM;IAOI,uCAAA;ELg+DV;;EKv+DM;IAOI,sCAAA;ELo+DV;;EK3+DM;IAOI,iCAAA;ELw+DV;;EK/+DM;IAOI,2BAAA;EL4+DV;;EKn/DM;IAOI,iCAAA;ELg/DV;;EKv/DM;IAOI,+BAAA;ELo/DV;;EK3/DM;IAOI,6BAAA;ELw/DV;;EK//DM;IAOI,+BAAA;EL4/DV;;EKngEM;IAOI,8BAAA;ELggEV;;EKvgEM;IAOI,oBAAA;ELogEV;;EK3gEM;IAOI,mBAAA;ELwgEV;;EK/gEM;IAOI,mBAAA;EL4gEV;;EKnhEM;IAOI,mBAAA;ELghEV;;EKvhEM;IAOI,mBAAA;ELohEV;;EK3hEM;IAOI,mBAAA;ELwhEV;;EK/hEM;IAOI,mBAAA;EL4hEV;;EKniEM;IAOI,mBAAA;ELgiEV;;EKviEM;IAOI,oBAAA;ELoiEV;;EK3iEM;IAOI,0BAAA;ELwiEV;;EK/iEM;IAOI,yBAAA;EL4iEV;;EKnjEM;IAOI,uBAAA;ELgjEV;;EKvjEM;IAOI,yBAAA;ELojEV;;EK3jEM;IAOI,uBAAA;ELwjEV;;EK/jEM;IAOI,uBAAA;EL4jEV;;EKnkEM;IAOI,yBAAA;IAAA,0BAAA;ELikEV;;EKxkEM;IAOI,+BAAA;IAAA,gCAAA;ELskEV;;EK7kEM;IAOI,8BAAA;IAAA,+BAAA;EL2kEV;;EKllEM;IAOI,4BAAA;IAAA,6BAAA;ELglEV;;EKvlEM;IAOI,8BAAA;IAAA,+BAAA;ELqlEV;;EK5lEM;IAOI,4BAAA;IAAA,6BAAA;EL0lEV;;EKjmEM;IAOI,4BAAA;IAAA,6BAAA;EL+lEV;;EKtmEM;IAOI,wBAAA;IAAA,2BAAA;ELomEV;;EK3mEM;IAOI,8BAAA;IAAA,iCAAA;ELymEV;;EKhnEM;IAOI,6BAAA;IAAA,gCAAA;EL8mEV;;EKrnEM;IAOI,2BAAA;IAAA,8BAAA;ELmnEV;;EK1nEM;IAOI,6BAAA;IAAA,gCAAA;ELwnEV;;EK/nEM;IAOI,2BAAA;IAAA,8BAAA;EL6nEV;;EKpoEM;IAOI,2BAAA;IAAA,8BAAA;ELkoEV;;EKzoEM;IAOI,wBAAA;ELsoEV;;EK7oEM;IAOI,8BAAA;EL0oEV;;EKjpEM;IAOI,6BAAA;EL8oEV;;EKrpEM;IAOI,2BAAA;ELkpEV;;EKzpEM;IAOI,6BAAA;ELspEV;;EK7pEM;IAOI,2BAAA;EL0pEV;;EKjqEM;IAOI,2BAAA;EL8pEV;;EKrqEM;IAOI,yBAAA;ELkqEV;;EKzqEM;IAOI,+BAAA;ELsqEV;;EK7qEM;IAOI,8BAAA;EL0qEV;;EKjrEM;IAOI,4BAAA;EL8qEV;;EKrrEM;IAOI,8BAAA;ELkrEV;;EKzrEM;IAOI,4BAAA;ELsrEV;;EK7rEM;IAOI,4BAAA;EL0rEV;;EKjsEM;IAOI,2BAAA;EL8rEV;;EKrsEM;IAOI,iCAAA;ELksEV;;EKzsEM;IAOI,gCAAA;ELssEV;;EK7sEM;IAOI,8BAAA;EL0sEV;;EKjtEM;IAOI,gCAAA;EL8sEV;;EKrtEM;IAOI,8BAAA;ELktEV;;EKztEM;IAOI,8BAAA;ELstEV;;EK7tEM;IAOI,0BAAA;EL0tEV;;EKjuEM;IAOI,gCAAA;EL8tEV;;EKruEM;IAOI,+BAAA;ELkuEV;;EKzuEM;IAOI,6BAAA;ELsuEV;;EK7uEM;IAOI,+BAAA;EL0uEV;;EKjvEM;IAOI,6BAAA;EL8uEV;;EKrvEM;IAOI,6BAAA;ELkvEV;;EKzvEM;IAOI,qBAAA;ELsvEV;;EK7vEM;IAOI,2BAAA;EL0vEV;;EKjwEM;IAOI,0BAAA;EL8vEV;;EKrwEM;IAOI,wBAAA;ELkwEV;;EKzwEM;IAOI,0BAAA;ELswEV;;EK7wEM;IAOI,wBAAA;EL0wEV;;EKjxEM;IAOI,0BAAA;IAAA,2BAAA;EL+wEV;;EKtxEM;IAOI,gCAAA;IAAA,iCAAA;ELoxEV;;EK3xEM;IAOI,+BAAA;IAAA,gCAAA;ELyxEV;;EKhyEM;IAOI,6BAAA;IAAA,8BAAA;EL8xEV;;EKryEM;IAOI,+BAAA;IAAA,gCAAA;ELmyEV;;EK1yEM;IAOI,6BAAA;IAAA,8BAAA;ELwyEV;;EK/yEM;IAOI,yBAAA;IAAA,4BAAA;EL6yEV;;EKpzEM;IAOI,+BAAA;IAAA,kCAAA;ELkzEV;;EKzzEM;IAOI,8BAAA;IAAA,iCAAA;ELuzEV;;EK9zEM;IAOI,4BAAA;IAAA,+BAAA;EL4zEV;;EKn0EM;IAOI,8BAAA;IAAA,iCAAA;ELi0EV;;EKx0EM;IAOI,4BAAA;IAAA,+BAAA;ELs0EV;;EK70EM;IAOI,yBAAA;EL00EV;;EKj1EM;IAOI,+BAAA;EL80EV;;EKr1EM;IAOI,8BAAA;ELk1EV;;EKz1EM;IAOI,4BAAA;ELs1EV;;EK71EM;IAOI,8BAAA;EL01EV;;EKj2EM;IAOI,4BAAA;EL81EV;;EKr2EM;IAOI,0BAAA;ELk2EV;;EKz2EM;IAOI,gCAAA;ELs2EV;;EK72EM;IAOI,+BAAA;EL02EV;;EKj3EM;IAOI,6BAAA;EL82EV;;EKr3EM;IAOI,+BAAA;ELk3EV;;EKz3EM;IAOI,6BAAA;ELs3EV;;EK73EM;IAOI,4BAAA;EL03EV;;EKj4EM;IAOI,kCAAA;EL83EV;;EKr4EM;IAOI,iCAAA;ELk4EV;;EKz4EM;IAOI,+BAAA;ELs4EV;;EK74EM;IAOI,iCAAA;EL04EV;;EKj5EM;IAOI,+BAAA;EL84EV;;EKr5EM;IAOI,2BAAA;ELk5EV;;EKz5EM;IAOI,iCAAA;ELs5EV;;EK75EM;IAOI,gCAAA;EL05EV;;EKj6EM;IAOI,8BAAA;EL85EV;;EKr6EM;IAOI,gCAAA;ELk6EV;;EKz6EM;IAOI,8BAAA;ELs6EV;AACF;AC96EI;EIAI;IAOI,0BAAA;EL26EV;;EKl7EM;IAOI,gCAAA;EL+6EV;;EKt7EM;IAOI,yBAAA;ELm7EV;;EK17EM;IAOI,wBAAA;ELu7EV;;EK97EM;IAOI,yBAAA;EL27EV;;EKl8EM;IAOI,6BAAA;EL+7EV;;EKt8EM;IAOI,8BAAA;ELm8EV;;EK18EM;IAOI,wBAAA;ELu8EV;;EK98EM;IAOI,+BAAA;EL28EV;;EKl9EM;IAOI,wBAAA;EL+8EV;;EKt9EM;IAOI,yBAAA;ELm9EV;;EK19EM;IAOI,8BAAA;ELu9EV;;EK99EM;IAOI,iCAAA;EL29EV;;EKl+EM;IAOI,sCAAA;EL+9EV;;EKt+EM;IAOI,yCAAA;ELm+EV;;EK1+EM;IAOI,uBAAA;ELu+EV;;EK9+EM;IAOI,uBAAA;EL2+EV;;EKl/EM;IAOI,yBAAA;EL++EV;;EKt/EM;IAOI,yBAAA;ELm/EV;;EK1/EM;IAOI,0BAAA;ELu/EV;;EK9/EM;IAOI,4BAAA;EL2/EV;;EKlgFM;IAOI,kCAAA;EL+/EV;;EKtgFM;IAOI,sCAAA;ELmgFV;;EK1gFM;IAOI,oCAAA;ELugFV;;EK9gFM;IAOI,kCAAA;EL2gFV;;EKlhFM;IAOI,yCAAA;EL+gFV;;EKthFM;IAOI,wCAAA;ELmhFV;;EK1hFM;IAOI,wCAAA;ELuhFV;;EK9hFM;IAOI,kCAAA;EL2hFV;;EKliFM;IAOI,gCAAA;EL+hFV;;EKtiFM;IAOI,8BAAA;ELmiFV;;EK1iFM;IAOI,gCAAA;ELuiFV;;EK9iFM;IAOI,+BAAA;EL2iFV;;EKljFM;IAOI,oCAAA;EL+iFV;;EKtjFM;IAOI,kCAAA;ELmjFV;;EK1jFM;IAOI,gCAAA;ELujFV;;EK9jFM;IAOI,uCAAA;EL2jFV;;EKlkFM;IAOI,sCAAA;EL+jFV;;EKtkFM;IAOI,iCAAA;ELmkFV;;EK1kFM;IAOI,2BAAA;ELukFV;;EK9kFM;IAOI,iCAAA;EL2kFV;;EKllFM;IAOI,+BAAA;EL+kFV;;EKtlFM;IAOI,6BAAA;ELmlFV;;EK1lFM;IAOI,+BAAA;ELulFV;;EK9lFM;IAOI,8BAAA;EL2lFV;;EKlmFM;IAOI,oBAAA;EL+lFV;;EKtmFM;IAOI,mBAAA;ELmmFV;;EK1mFM;IAOI,mBAAA;ELumFV;;EK9mFM;IAOI,mBAAA;EL2mFV;;EKlnFM;IAOI,mBAAA;EL+mFV;;EKtnFM;IAOI,mBAAA;ELmnFV;;EK1nFM;IAOI,mBAAA;ELunFV;;EK9nFM;IAOI,mBAAA;EL2nFV;;EKloFM;IAOI,oBAAA;EL+nFV;;EKtoFM;IAOI,0BAAA;ELmoFV;;EK1oFM;IAOI,yBAAA;ELuoFV;;EK9oFM;IAOI,uBAAA;EL2oFV;;EKlpFM;IAOI,yBAAA;EL+oFV;;EKtpFM;IAOI,uBAAA;ELmpFV;;EK1pFM;IAOI,uBAAA;ELupFV;;EK9pFM;IAOI,yBAAA;IAAA,0BAAA;EL4pFV;;EKnqFM;IAOI,+BAAA;IAAA,gCAAA;ELiqFV;;EKxqFM;IAOI,8BAAA;IAAA,+BAAA;ELsqFV;;EK7qFM;IAOI,4BAAA;IAAA,6BAAA;EL2qFV;;EKlrFM;IAOI,8BAAA;IAAA,+BAAA;ELgrFV;;EKvrFM;IAOI,4BAAA;IAAA,6BAAA;ELqrFV;;EK5rFM;IAOI,4BAAA;IAAA,6BAAA;EL0rFV;;EKjsFM;IAOI,wBAAA;IAAA,2BAAA;EL+rFV;;EKtsFM;IAOI,8BAAA;IAAA,iCAAA;ELosFV;;EK3sFM;IAOI,6BAAA;IAAA,gCAAA;ELysFV;;EKhtFM;IAOI,2BAAA;IAAA,8BAAA;EL8sFV;;EKrtFM;IAOI,6BAAA;IAAA,gCAAA;ELmtFV;;EK1tFM;IAOI,2BAAA;IAAA,8BAAA;ELwtFV;;EK/tFM;IAOI,2BAAA;IAAA,8BAAA;EL6tFV;;EKpuFM;IAOI,wBAAA;ELiuFV;;EKxuFM;IAOI,8BAAA;ELquFV;;EK5uFM;IAOI,6BAAA;ELyuFV;;EKhvFM;IAOI,2BAAA;EL6uFV;;EKpvFM;IAOI,6BAAA;ELivFV;;EKxvFM;IAOI,2BAAA;ELqvFV;;EK5vFM;IAOI,2BAAA;ELyvFV;;EKhwFM;IAOI,yBAAA;EL6vFV;;EKpwFM;IAOI,+BAAA;ELiwFV;;EKxwFM;IAOI,8BAAA;ELqwFV;;EK5wFM;IAOI,4BAAA;ELywFV;;EKhxFM;IAOI,8BAAA;EL6wFV;;EKpxFM;IAOI,4BAAA;ELixFV;;EKxxFM;IAOI,4BAAA;ELqxFV;;EK5xFM;IAOI,2BAAA;ELyxFV;;EKhyFM;IAOI,iCAAA;EL6xFV;;EKpyFM;IAOI,gCAAA;ELiyFV;;EKxyFM;IAOI,8BAAA;ELqyFV;;EK5yFM;IAOI,gCAAA;ELyyFV;;EKhzFM;IAOI,8BAAA;EL6yFV;;EKpzFM;IAOI,8BAAA;ELizFV;;EKxzFM;IAOI,0BAAA;ELqzFV;;EK5zFM;IAOI,gCAAA;ELyzFV;;EKh0FM;IAOI,+BAAA;EL6zFV;;EKp0FM;IAOI,6BAAA;ELi0FV;;EKx0FM;IAOI,+BAAA;ELq0FV;;EK50FM;IAOI,6BAAA;ELy0FV;;EKh1FM;IAOI,6BAAA;EL60FV;;EKp1FM;IAOI,qBAAA;ELi1FV;;EKx1FM;IAOI,2BAAA;ELq1FV;;EK51FM;IAOI,0BAAA;ELy1FV;;EKh2FM;IAOI,wBAAA;EL61FV;;EKp2FM;IAOI,0BAAA;ELi2FV;;EKx2FM;IAOI,wBAAA;ELq2FV;;EK52FM;IAOI,0BAAA;IAAA,2BAAA;EL02FV;;EKj3FM;IAOI,gCAAA;IAAA,iCAAA;EL+2FV;;EKt3FM;IAOI,+BAAA;IAAA,gCAAA;ELo3FV;;EK33FM;IAOI,6BAAA;IAAA,8BAAA;ELy3FV;;EKh4FM;IAOI,+BAAA;IAAA,gCAAA;EL83FV;;EKr4FM;IAOI,6BAAA;IAAA,8BAAA;ELm4FV;;EK14FM;IAOI,yBAAA;IAAA,4BAAA;ELw4FV;;EK/4FM;IAOI,+BAAA;IAAA,kCAAA;EL64FV;;EKp5FM;IAOI,8BAAA;IAAA,iCAAA;ELk5FV;;EKz5FM;IAOI,4BAAA;IAAA,+BAAA;ELu5FV;;EK95FM;IAOI,8BAAA;IAAA,iCAAA;EL45FV;;EKn6FM;IAOI,4BAAA;IAAA,+BAAA;ELi6FV;;EKx6FM;IAOI,yBAAA;ELq6FV;;EK56FM;IAOI,+BAAA;ELy6FV;;EKh7FM;IAOI,8BAAA;EL66FV;;EKp7FM;IAOI,4BAAA;ELi7FV;;EKx7FM;IAOI,8BAAA;ELq7FV;;EK57FM;IAOI,4BAAA;ELy7FV;;EKh8FM;IAOI,0BAAA;EL67FV;;EKp8FM;IAOI,gCAAA;ELi8FV;;EKx8FM;IAOI,+BAAA;ELq8FV;;EK58FM;IAOI,6BAAA;ELy8FV;;EKh9FM;IAOI,+BAAA;EL68FV;;EKp9FM;IAOI,6BAAA;ELi9FV;;EKx9FM;IAOI,4BAAA;ELq9FV;;EK59FM;IAOI,kCAAA;ELy9FV;;EKh+FM;IAOI,iCAAA;EL69FV;;EKp+FM;IAOI,+BAAA;ELi+FV;;EKx+FM;IAOI,iCAAA;ELq+FV;;EK5+FM;IAOI,+BAAA;ELy+FV;;EKh/FM;IAOI,2BAAA;EL6+FV;;EKp/FM;IAOI,iCAAA;ELi/FV;;EKx/FM;IAOI,gCAAA;ELq/FV;;EK5/FM;IAOI,8BAAA;ELy/FV;;EKhgGM;IAOI,gCAAA;EL6/FV;;EKpgGM;IAOI,8BAAA;ELigGV;AACF;ACzgGI;EIAI;IAOI,0BAAA;ELsgGV;;EK7gGM;IAOI,gCAAA;EL0gGV;;EKjhGM;IAOI,yBAAA;EL8gGV;;EKrhGM;IAOI,wBAAA;ELkhGV;;EKzhGM;IAOI,yBAAA;ELshGV;;EK7hGM;IAOI,6BAAA;EL0hGV;;EKjiGM;IAOI,8BAAA;EL8hGV;;EKriGM;IAOI,wBAAA;ELkiGV;;EKziGM;IAOI,+BAAA;ELsiGV;;EK7iGM;IAOI,wBAAA;EL0iGV;;EKjjGM;IAOI,yBAAA;EL8iGV;;EKrjGM;IAOI,8BAAA;ELkjGV;;EKzjGM;IAOI,iCAAA;ELsjGV;;EK7jGM;IAOI,sCAAA;EL0jGV;;EKjkGM;IAOI,yCAAA;EL8jGV;;EKrkGM;IAOI,uBAAA;ELkkGV;;EKzkGM;IAOI,uBAAA;ELskGV;;EK7kGM;IAOI,yBAAA;EL0kGV;;EKjlGM;IAOI,yBAAA;EL8kGV;;EKrlGM;IAOI,0BAAA;ELklGV;;EKzlGM;IAOI,4BAAA;ELslGV;;EK7lGM;IAOI,kCAAA;EL0lGV;;EKjmGM;IAOI,sCAAA;EL8lGV;;EKrmGM;IAOI,oCAAA;ELkmGV;;EKzmGM;IAOI,kCAAA;ELsmGV;;EK7mGM;IAOI,yCAAA;EL0mGV;;EKjnGM;IAOI,wCAAA;EL8mGV;;EKrnGM;IAOI,wCAAA;ELknGV;;EKznGM;IAOI,kCAAA;ELsnGV;;EK7nGM;IAOI,gCAAA;EL0nGV;;EKjoGM;IAOI,8BAAA;EL8nGV;;EKroGM;IAOI,gCAAA;ELkoGV;;EKzoGM;IAOI,+BAAA;ELsoGV;;EK7oGM;IAOI,oCAAA;EL0oGV;;EKjpGM;IAOI,kCAAA;EL8oGV;;EKrpGM;IAOI,gCAAA;ELkpGV;;EKzpGM;IAOI,uCAAA;ELspGV;;EK7pGM;IAOI,sCAAA;EL0pGV;;EKjqGM;IAOI,iCAAA;EL8pGV;;EKrqGM;IAOI,2BAAA;ELkqGV;;EKzqGM;IAOI,iCAAA;ELsqGV;;EK7qGM;IAOI,+BAAA;EL0qGV;;EKjrGM;IAOI,6BAAA;EL8qGV;;EKrrGM;IAOI,+BAAA;ELkrGV;;EKzrGM;IAOI,8BAAA;ELsrGV;;EK7rGM;IAOI,oBAAA;EL0rGV;;EKjsGM;IAOI,mBAAA;EL8rGV;;EKrsGM;IAOI,mBAAA;ELksGV;;EKzsGM;IAOI,mBAAA;ELssGV;;EK7sGM;IAOI,mBAAA;EL0sGV;;EKjtGM;IAOI,mBAAA;EL8sGV;;EKrtGM;IAOI,mBAAA;ELktGV;;EKztGM;IAOI,mBAAA;ELstGV;;EK7tGM;IAOI,oBAAA;EL0tGV;;EKjuGM;IAOI,0BAAA;EL8tGV;;EKruGM;IAOI,yBAAA;ELkuGV;;EKzuGM;IAOI,uBAAA;ELsuGV;;EK7uGM;IAOI,yBAAA;EL0uGV;;EKjvGM;IAOI,uBAAA;EL8uGV;;EKrvGM;IAOI,uBAAA;ELkvGV;;EKzvGM;IAOI,yBAAA;IAAA,0BAAA;ELuvGV;;EK9vGM;IAOI,+BAAA;IAAA,gCAAA;EL4vGV;;EKnwGM;IAOI,8BAAA;IAAA,+BAAA;ELiwGV;;EKxwGM;IAOI,4BAAA;IAAA,6BAAA;ELswGV;;EK7wGM;IAOI,8BAAA;IAAA,+BAAA;EL2wGV;;EKlxGM;IAOI,4BAAA;IAAA,6BAAA;ELgxGV;;EKvxGM;IAOI,4BAAA;IAAA,6BAAA;ELqxGV;;EK5xGM;IAOI,wBAAA;IAAA,2BAAA;EL0xGV;;EKjyGM;IAOI,8BAAA;IAAA,iCAAA;EL+xGV;;EKtyGM;IAOI,6BAAA;IAAA,gCAAA;ELoyGV;;EK3yGM;IAOI,2BAAA;IAAA,8BAAA;ELyyGV;;EKhzGM;IAOI,6BAAA;IAAA,gCAAA;EL8yGV;;EKrzGM;IAOI,2BAAA;IAAA,8BAAA;ELmzGV;;EK1zGM;IAOI,2BAAA;IAAA,8BAAA;ELwzGV;;EK/zGM;IAOI,wBAAA;EL4zGV;;EKn0GM;IAOI,8BAAA;ELg0GV;;EKv0GM;IAOI,6BAAA;ELo0GV;;EK30GM;IAOI,2BAAA;ELw0GV;;EK/0GM;IAOI,6BAAA;EL40GV;;EKn1GM;IAOI,2BAAA;ELg1GV;;EKv1GM;IAOI,2BAAA;ELo1GV;;EK31GM;IAOI,yBAAA;ELw1GV;;EK/1GM;IAOI,+BAAA;EL41GV;;EKn2GM;IAOI,8BAAA;ELg2GV;;EKv2GM;IAOI,4BAAA;ELo2GV;;EK32GM;IAOI,8BAAA;ELw2GV;;EK/2GM;IAOI,4BAAA;EL42GV;;EKn3GM;IAOI,4BAAA;ELg3GV;;EKv3GM;IAOI,2BAAA;ELo3GV;;EK33GM;IAOI,iCAAA;ELw3GV;;EK/3GM;IAOI,gCAAA;EL43GV;;EKn4GM;IAOI,8BAAA;ELg4GV;;EKv4GM;IAOI,gCAAA;ELo4GV;;EK34GM;IAOI,8BAAA;ELw4GV;;EK/4GM;IAOI,8BAAA;EL44GV;;EKn5GM;IAOI,0BAAA;ELg5GV;;EKv5GM;IAOI,gCAAA;ELo5GV;;EK35GM;IAOI,+BAAA;ELw5GV;;EK/5GM;IAOI,6BAAA;EL45GV;;EKn6GM;IAOI,+BAAA;ELg6GV;;EKv6GM;IAOI,6BAAA;ELo6GV;;EK36GM;IAOI,6BAAA;ELw6GV;;EK/6GM;IAOI,qBAAA;EL46GV;;EKn7GM;IAOI,2BAAA;ELg7GV;;EKv7GM;IAOI,0BAAA;ELo7GV;;EK37GM;IAOI,wBAAA;ELw7GV;;EK/7GM;IAOI,0BAAA;EL47GV;;EKn8GM;IAOI,wBAAA;ELg8GV;;EKv8GM;IAOI,0BAAA;IAAA,2BAAA;ELq8GV;;EK58GM;IAOI,gCAAA;IAAA,iCAAA;EL08GV;;EKj9GM;IAOI,+BAAA;IAAA,gCAAA;EL+8GV;;EKt9GM;IAOI,6BAAA;IAAA,8BAAA;ELo9GV;;EK39GM;IAOI,+BAAA;IAAA,gCAAA;ELy9GV;;EKh+GM;IAOI,6BAAA;IAAA,8BAAA;EL89GV;;EKr+GM;IAOI,yBAAA;IAAA,4BAAA;ELm+GV;;EK1+GM;IAOI,+BAAA;IAAA,kCAAA;ELw+GV;;EK/+GM;IAOI,8BAAA;IAAA,iCAAA;EL6+GV;;EKp/GM;IAOI,4BAAA;IAAA,+BAAA;ELk/GV;;EKz/GM;IAOI,8BAAA;IAAA,iCAAA;ELu/GV;;EK9/GM;IAOI,4BAAA;IAAA,+BAAA;EL4/GV;;EKngHM;IAOI,yBAAA;ELggHV;;EKvgHM;IAOI,+BAAA;ELogHV;;EK3gHM;IAOI,8BAAA;ELwgHV;;EK/gHM;IAOI,4BAAA;EL4gHV;;EKnhHM;IAOI,8BAAA;ELghHV;;EKvhHM;IAOI,4BAAA;ELohHV;;EK3hHM;IAOI,0BAAA;ELwhHV;;EK/hHM;IAOI,gCAAA;EL4hHV;;EKniHM;IAOI,+BAAA;ELgiHV;;EKviHM;IAOI,6BAAA;ELoiHV;;EK3iHM;IAOI,+BAAA;ELwiHV;;EK/iHM;IAOI,6BAAA;EL4iHV;;EKnjHM;IAOI,4BAAA;ELgjHV;;EKvjHM;IAOI,kCAAA;ELojHV;;EK3jHM;IAOI,iCAAA;ELwjHV;;EK/jHM;IAOI,+BAAA;EL4jHV;;EKnkHM;IAOI,iCAAA;ELgkHV;;EKvkHM;IAOI,+BAAA;ELokHV;;EK3kHM;IAOI,2BAAA;ELwkHV;;EK/kHM;IAOI,iCAAA;EL4kHV;;EKnlHM;IAOI,gCAAA;ELglHV;;EKvlHM;IAOI,8BAAA;ELolHV;;EK3lHM;IAOI,gCAAA;ELwlHV;;EK/lHM;IAOI,8BAAA;EL4lHV;AACF;ACpmHI;EIAI;IAOI,0BAAA;ELimHV;;EKxmHM;IAOI,gCAAA;ELqmHV;;EK5mHM;IAOI,yBAAA;ELymHV;;EKhnHM;IAOI,wBAAA;EL6mHV;;EKpnHM;IAOI,yBAAA;ELinHV;;EKxnHM;IAOI,6BAAA;ELqnHV;;EK5nHM;IAOI,8BAAA;ELynHV;;EKhoHM;IAOI,wBAAA;EL6nHV;;EKpoHM;IAOI,+BAAA;ELioHV;;EKxoHM;IAOI,wBAAA;ELqoHV;;EK5oHM;IAOI,yBAAA;ELyoHV;;EKhpHM;IAOI,8BAAA;EL6oHV;;EKppHM;IAOI,iCAAA;ELipHV;;EKxpHM;IAOI,sCAAA;ELqpHV;;EK5pHM;IAOI,yCAAA;ELypHV;;EKhqHM;IAOI,uBAAA;EL6pHV;;EKpqHM;IAOI,uBAAA;ELiqHV;;EKxqHM;IAOI,yBAAA;ELqqHV;;EK5qHM;IAOI,yBAAA;ELyqHV;;EKhrHM;IAOI,0BAAA;EL6qHV;;EKprHM;IAOI,4BAAA;ELirHV;;EKxrHM;IAOI,kCAAA;ELqrHV;;EK5rHM;IAOI,sCAAA;ELyrHV;;EKhsHM;IAOI,oCAAA;EL6rHV;;EKpsHM;IAOI,kCAAA;ELisHV;;EKxsHM;IAOI,yCAAA;ELqsHV;;EK5sHM;IAOI,wCAAA;ELysHV;;EKhtHM;IAOI,wCAAA;EL6sHV;;EKptHM;IAOI,kCAAA;ELitHV;;EKxtHM;IAOI,gCAAA;ELqtHV;;EK5tHM;IAOI,8BAAA;ELytHV;;EKhuHM;IAOI,gCAAA;EL6tHV;;EKpuHM;IAOI,+BAAA;ELiuHV;;EKxuHM;IAOI,oCAAA;ELquHV;;EK5uHM;IAOI,kCAAA;ELyuHV;;EKhvHM;IAOI,gCAAA;EL6uHV;;EKpvHM;IAOI,uCAAA;ELivHV;;EKxvHM;IAOI,sCAAA;ELqvHV;;EK5vHM;IAOI,iCAAA;ELyvHV;;EKhwHM;IAOI,2BAAA;EL6vHV;;EKpwHM;IAOI,iCAAA;ELiwHV;;EKxwHM;IAOI,+BAAA;ELqwHV;;EK5wHM;IAOI,6BAAA;ELywHV;;EKhxHM;IAOI,+BAAA;EL6wHV;;EKpxHM;IAOI,8BAAA;ELixHV;;EKxxHM;IAOI,oBAAA;ELqxHV;;EK5xHM;IAOI,mBAAA;ELyxHV;;EKhyHM;IAOI,mBAAA;EL6xHV;;EKpyHM;IAOI,mBAAA;ELiyHV;;EKxyHM;IAOI,mBAAA;ELqyHV;;EK5yHM;IAOI,mBAAA;ELyyHV;;EKhzHM;IAOI,mBAAA;EL6yHV;;EKpzHM;IAOI,mBAAA;ELizHV;;EKxzHM;IAOI,oBAAA;ELqzHV;;EK5zHM;IAOI,0BAAA;ELyzHV;;EKh0HM;IAOI,yBAAA;EL6zHV;;EKp0HM;IAOI,uBAAA;ELi0HV;;EKx0HM;IAOI,yBAAA;ELq0HV;;EK50HM;IAOI,uBAAA;ELy0HV;;EKh1HM;IAOI,uBAAA;EL60HV;;EKp1HM;IAOI,yBAAA;IAAA,0BAAA;ELk1HV;;EKz1HM;IAOI,+BAAA;IAAA,gCAAA;ELu1HV;;EK91HM;IAOI,8BAAA;IAAA,+BAAA;EL41HV;;EKn2HM;IAOI,4BAAA;IAAA,6BAAA;ELi2HV;;EKx2HM;IAOI,8BAAA;IAAA,+BAAA;ELs2HV;;EK72HM;IAOI,4BAAA;IAAA,6BAAA;EL22HV;;EKl3HM;IAOI,4BAAA;IAAA,6BAAA;ELg3HV;;EKv3HM;IAOI,wBAAA;IAAA,2BAAA;ELq3HV;;EK53HM;IAOI,8BAAA;IAAA,iCAAA;EL03HV;;EKj4HM;IAOI,6BAAA;IAAA,gCAAA;EL+3HV;;EKt4HM;IAOI,2BAAA;IAAA,8BAAA;ELo4HV;;EK34HM;IAOI,6BAAA;IAAA,gCAAA;ELy4HV;;EKh5HM;IAOI,2BAAA;IAAA,8BAAA;EL84HV;;EKr5HM;IAOI,2BAAA;IAAA,8BAAA;ELm5HV;;EK15HM;IAOI,wBAAA;ELu5HV;;EK95HM;IAOI,8BAAA;EL25HV;;EKl6HM;IAOI,6BAAA;EL+5HV;;EKt6HM;IAOI,2BAAA;ELm6HV;;EK16HM;IAOI,6BAAA;ELu6HV;;EK96HM;IAOI,2BAAA;EL26HV;;EKl7HM;IAOI,2BAAA;EL+6HV;;EKt7HM;IAOI,yBAAA;ELm7HV;;EK17HM;IAOI,+BAAA;ELu7HV;;EK97HM;IAOI,8BAAA;EL27HV;;EKl8HM;IAOI,4BAAA;EL+7HV;;EKt8HM;IAOI,8BAAA;ELm8HV;;EK18HM;IAOI,4BAAA;ELu8HV;;EK98HM;IAOI,4BAAA;EL28HV;;EKl9HM;IAOI,2BAAA;EL+8HV;;EKt9HM;IAOI,iCAAA;ELm9HV;;EK19HM;IAOI,gCAAA;ELu9HV;;EK99HM;IAOI,8BAAA;EL29HV;;EKl+HM;IAOI,gCAAA;EL+9HV;;EKt+HM;IAOI,8BAAA;ELm+HV;;EK1+HM;IAOI,8BAAA;ELu+HV;;EK9+HM;IAOI,0BAAA;EL2+HV;;EKl/HM;IAOI,gCAAA;EL++HV;;EKt/HM;IAOI,+BAAA;ELm/HV;;EK1/HM;IAOI,6BAAA;ELu/HV;;EK9/HM;IAOI,+BAAA;EL2/HV;;EKlgIM;IAOI,6BAAA;EL+/HV;;EKtgIM;IAOI,6BAAA;ELmgIV;;EK1gIM;IAOI,qBAAA;ELugIV;;EK9gIM;IAOI,2BAAA;EL2gIV;;EKlhIM;IAOI,0BAAA;EL+gIV;;EKthIM;IAOI,wBAAA;ELmhIV;;EK1hIM;IAOI,0BAAA;ELuhIV;;EK9hIM;IAOI,wBAAA;EL2hIV;;EKliIM;IAOI,0BAAA;IAAA,2BAAA;ELgiIV;;EKviIM;IAOI,gCAAA;IAAA,iCAAA;ELqiIV;;EK5iIM;IAOI,+BAAA;IAAA,gCAAA;EL0iIV;;EKjjIM;IAOI,6BAAA;IAAA,8BAAA;EL+iIV;;EKtjIM;IAOI,+BAAA;IAAA,gCAAA;ELojIV;;EK3jIM;IAOI,6BAAA;IAAA,8BAAA;ELyjIV;;EKhkIM;IAOI,yBAAA;IAAA,4BAAA;EL8jIV;;EKrkIM;IAOI,+BAAA;IAAA,kCAAA;ELmkIV;;EK1kIM;IAOI,8BAAA;IAAA,iCAAA;ELwkIV;;EK/kIM;IAOI,4BAAA;IAAA,+BAAA;EL6kIV;;EKplIM;IAOI,8BAAA;IAAA,iCAAA;ELklIV;;EKzlIM;IAOI,4BAAA;IAAA,+BAAA;ELulIV;;EK9lIM;IAOI,yBAAA;EL2lIV;;EKlmIM;IAOI,+BAAA;EL+lIV;;EKtmIM;IAOI,8BAAA;ELmmIV;;EK1mIM;IAOI,4BAAA;ELumIV;;EK9mIM;IAOI,8BAAA;EL2mIV;;EKlnIM;IAOI,4BAAA;EL+mIV;;EKtnIM;IAOI,0BAAA;ELmnIV;;EK1nIM;IAOI,gCAAA;ELunIV;;EK9nIM;IAOI,+BAAA;EL2nIV;;EKloIM;IAOI,6BAAA;EL+nIV;;EKtoIM;IAOI,+BAAA;ELmoIV;;EK1oIM;IAOI,6BAAA;ELuoIV;;EK9oIM;IAOI,4BAAA;EL2oIV;;EKlpIM;IAOI,kCAAA;EL+oIV;;EKtpIM;IAOI,iCAAA;ELmpIV;;EK1pIM;IAOI,+BAAA;ELupIV;;EK9pIM;IAOI,iCAAA;EL2pIV;;EKlqIM;IAOI,+BAAA;EL+pIV;;EKtqIM;IAOI,2BAAA;ELmqIV;;EK1qIM;IAOI,iCAAA;ELuqIV;;EK9qIM;IAOI,gCAAA;EL2qIV;;EKlrIM;IAOI,8BAAA;EL+qIV;;EKtrIM;IAOI,gCAAA;ELmrIV;;EK1rIM;IAOI,8BAAA;ELurIV;AACF;AC/rII;EIAI;IAOI,0BAAA;EL4rIV;;EKnsIM;IAOI,gCAAA;ELgsIV;;EKvsIM;IAOI,yBAAA;ELosIV;;EK3sIM;IAOI,wBAAA;ELwsIV;;EK/sIM;IAOI,yBAAA;EL4sIV;;EKntIM;IAOI,6BAAA;ELgtIV;;EKvtIM;IAOI,8BAAA;ELotIV;;EK3tIM;IAOI,wBAAA;ELwtIV;;EK/tIM;IAOI,+BAAA;EL4tIV;;EKnuIM;IAOI,wBAAA;ELguIV;;EKvuIM;IAOI,yBAAA;ELouIV;;EK3uIM;IAOI,8BAAA;ELwuIV;;EK/uIM;IAOI,iCAAA;EL4uIV;;EKnvIM;IAOI,sCAAA;ELgvIV;;EKvvIM;IAOI,yCAAA;ELovIV;;EK3vIM;IAOI,uBAAA;ELwvIV;;EK/vIM;IAOI,uBAAA;EL4vIV;;EKnwIM;IAOI,yBAAA;ELgwIV;;EKvwIM;IAOI,yBAAA;ELowIV;;EK3wIM;IAOI,0BAAA;ELwwIV;;EK/wIM;IAOI,4BAAA;EL4wIV;;EKnxIM;IAOI,kCAAA;ELgxIV;;EKvxIM;IAOI,sCAAA;ELoxIV;;EK3xIM;IAOI,oCAAA;ELwxIV;;EK/xIM;IAOI,kCAAA;EL4xIV;;EKnyIM;IAOI,yCAAA;ELgyIV;;EKvyIM;IAOI,wCAAA;ELoyIV;;EK3yIM;IAOI,wCAAA;ELwyIV;;EK/yIM;IAOI,kCAAA;EL4yIV;;EKnzIM;IAOI,gCAAA;ELgzIV;;EKvzIM;IAOI,8BAAA;ELozIV;;EK3zIM;IAOI,gCAAA;ELwzIV;;EK/zIM;IAOI,+BAAA;EL4zIV;;EKn0IM;IAOI,oCAAA;ELg0IV;;EKv0IM;IAOI,kCAAA;ELo0IV;;EK30IM;IAOI,gCAAA;ELw0IV;;EK/0IM;IAOI,uCAAA;EL40IV;;EKn1IM;IAOI,sCAAA;ELg1IV;;EKv1IM;IAOI,iCAAA;ELo1IV;;EK31IM;IAOI,2BAAA;ELw1IV;;EK/1IM;IAOI,iCAAA;EL41IV;;EKn2IM;IAOI,+BAAA;ELg2IV;;EKv2IM;IAOI,6BAAA;ELo2IV;;EK32IM;IAOI,+BAAA;ELw2IV;;EK/2IM;IAOI,8BAAA;EL42IV;;EKn3IM;IAOI,oBAAA;ELg3IV;;EKv3IM;IAOI,mBAAA;ELo3IV;;EK33IM;IAOI,mBAAA;ELw3IV;;EK/3IM;IAOI,mBAAA;EL43IV;;EKn4IM;IAOI,mBAAA;ELg4IV;;EKv4IM;IAOI,mBAAA;ELo4IV;;EK34IM;IAOI,mBAAA;ELw4IV;;EK/4IM;IAOI,mBAAA;EL44IV;;EKn5IM;IAOI,oBAAA;ELg5IV;;EKv5IM;IAOI,0BAAA;ELo5IV;;EK35IM;IAOI,yBAAA;ELw5IV;;EK/5IM;IAOI,uBAAA;EL45IV;;EKn6IM;IAOI,yBAAA;ELg6IV;;EKv6IM;IAOI,uBAAA;ELo6IV;;EK36IM;IAOI,uBAAA;ELw6IV;;EK/6IM;IAOI,yBAAA;IAAA,0BAAA;EL66IV;;EKp7IM;IAOI,+BAAA;IAAA,gCAAA;ELk7IV;;EKz7IM;IAOI,8BAAA;IAAA,+BAAA;ELu7IV;;EK97IM;IAOI,4BAAA;IAAA,6BAAA;EL47IV;;EKn8IM;IAOI,8BAAA;IAAA,+BAAA;ELi8IV;;EKx8IM;IAOI,4BAAA;IAAA,6BAAA;ELs8IV;;EK78IM;IAOI,4BAAA;IAAA,6BAAA;EL28IV;;EKl9IM;IAOI,wBAAA;IAAA,2BAAA;ELg9IV;;EKv9IM;IAOI,8BAAA;IAAA,iCAAA;ELq9IV;;EK59IM;IAOI,6BAAA;IAAA,gCAAA;EL09IV;;EKj+IM;IAOI,2BAAA;IAAA,8BAAA;EL+9IV;;EKt+IM;IAOI,6BAAA;IAAA,gCAAA;ELo+IV;;EK3+IM;IAOI,2BAAA;IAAA,8BAAA;ELy+IV;;EKh/IM;IAOI,2BAAA;IAAA,8BAAA;EL8+IV;;EKr/IM;IAOI,wBAAA;ELk/IV;;EKz/IM;IAOI,8BAAA;ELs/IV;;EK7/IM;IAOI,6BAAA;EL0/IV;;EKjgJM;IAOI,2BAAA;EL8/IV;;EKrgJM;IAOI,6BAAA;ELkgJV;;EKzgJM;IAOI,2BAAA;ELsgJV;;EK7gJM;IAOI,2BAAA;EL0gJV;;EKjhJM;IAOI,yBAAA;EL8gJV;;EKrhJM;IAOI,+BAAA;ELkhJV;;EKzhJM;IAOI,8BAAA;ELshJV;;EK7hJM;IAOI,4BAAA;EL0hJV;;EKjiJM;IAOI,8BAAA;EL8hJV;;EKriJM;IAOI,4BAAA;ELkiJV;;EKziJM;IAOI,4BAAA;ELsiJV;;EK7iJM;IAOI,2BAAA;EL0iJV;;EKjjJM;IAOI,iCAAA;EL8iJV;;EKrjJM;IAOI,gCAAA;ELkjJV;;EKzjJM;IAOI,8BAAA;ELsjJV;;EK7jJM;IAOI,gCAAA;EL0jJV;;EKjkJM;IAOI,8BAAA;EL8jJV;;EKrkJM;IAOI,8BAAA;ELkkJV;;EKzkJM;IAOI,0BAAA;ELskJV;;EK7kJM;IAOI,gCAAA;EL0kJV;;EKjlJM;IAOI,+BAAA;EL8kJV;;EKrlJM;IAOI,6BAAA;ELklJV;;EKzlJM;IAOI,+BAAA;ELslJV;;EK7lJM;IAOI,6BAAA;EL0lJV;;EKjmJM;IAOI,6BAAA;EL8lJV;;EKrmJM;IAOI,qBAAA;ELkmJV;;EKzmJM;IAOI,2BAAA;ELsmJV;;EK7mJM;IAOI,0BAAA;EL0mJV;;EKjnJM;IAOI,wBAAA;EL8mJV;;EKrnJM;IAOI,0BAAA;ELknJV;;EKznJM;IAOI,wBAAA;ELsnJV;;EK7nJM;IAOI,0BAAA;IAAA,2BAAA;EL2nJV;;EKloJM;IAOI,gCAAA;IAAA,iCAAA;ELgoJV;;EKvoJM;IAOI,+BAAA;IAAA,gCAAA;ELqoJV;;EK5oJM;IAOI,6BAAA;IAAA,8BAAA;EL0oJV;;EKjpJM;IAOI,+BAAA;IAAA,gCAAA;EL+oJV;;EKtpJM;IAOI,6BAAA;IAAA,8BAAA;ELopJV;;EK3pJM;IAOI,yBAAA;IAAA,4BAAA;ELypJV;;EKhqJM;IAOI,+BAAA;IAAA,kCAAA;EL8pJV;;EKrqJM;IAOI,8BAAA;IAAA,iCAAA;ELmqJV;;EK1qJM;IAOI,4BAAA;IAAA,+BAAA;ELwqJV;;EK/qJM;IAOI,8BAAA;IAAA,iCAAA;EL6qJV;;EKprJM;IAOI,4BAAA;IAAA,+BAAA;ELkrJV;;EKzrJM;IAOI,yBAAA;ELsrJV;;EK7rJM;IAOI,+BAAA;EL0rJV;;EKjsJM;IAOI,8BAAA;EL8rJV;;EKrsJM;IAOI,4BAAA;ELksJV;;EKzsJM;IAOI,8BAAA;ELssJV;;EK7sJM;IAOI,4BAAA;EL0sJV;;EKjtJM;IAOI,0BAAA;EL8sJV;;EKrtJM;IAOI,gCAAA;ELktJV;;EKztJM;IAOI,+BAAA;ELstJV;;EK7tJM;IAOI,6BAAA;EL0tJV;;EKjuJM;IAOI,+BAAA;EL8tJV;;EKruJM;IAOI,6BAAA;ELkuJV;;EKzuJM;IAOI,4BAAA;ELsuJV;;EK7uJM;IAOI,kCAAA;EL0uJV;;EKjvJM;IAOI,iCAAA;EL8uJV;;EKrvJM;IAOI,+BAAA;ELkvJV;;EKzvJM;IAOI,iCAAA;ELsvJV;;EK7vJM;IAOI,+BAAA;EL0vJV;;EKjwJM;IAOI,2BAAA;EL8vJV;;EKrwJM;IAOI,iCAAA;ELkwJV;;EKzwJM;IAOI,gCAAA;ELswJV;;EK7wJM;IAOI,8BAAA;EL0wJV;;EKjxJM;IAOI,gCAAA;EL8wJV;;EKrxJM;IAOI,8BAAA;ELkxJV;AACF;AMnzJA;EDyBQ;IAOI,0BAAA;ELuxJV;;EK9xJM;IAOI,gCAAA;EL2xJV;;EKlyJM;IAOI,yBAAA;EL+xJV;;EKtyJM;IAOI,wBAAA;ELmyJV;;EK1yJM;IAOI,yBAAA;ELuyJV;;EK9yJM;IAOI,6BAAA;EL2yJV;;EKlzJM;IAOI,8BAAA;EL+yJV;;EKtzJM;IAOI,wBAAA;ELmzJV;;EK1zJM;IAOI,+BAAA;ELuzJV;;EK9zJM;IAOI,wBAAA;EL2zJV;AACF","file":"bootstrap-grid.rtl.css","sourcesContent":["/*!\n * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n$include-column-box-sizing: true !default;\n\n@import \"functions\";\n@import \"variables\";\n\n@import \"mixins/lists\";\n@import \"mixins/breakpoints\";\n@import \"mixins/container\";\n@import \"mixins/grid\";\n@import \"mixins/utilities\";\n\n@import \"vendor/rfs\";\n\n@import \"containers\";\n@import \"grid\";\n\n@import \"utilities\";\n// Only use the utilities we need\n// stylelint-disable-next-line scss/dollar-variable-default\n$utilities: map-get-multiple(\n $utilities,\n (\n \"display\",\n \"order\",\n \"flex\",\n \"flex-direction\",\n \"flex-grow\",\n \"flex-shrink\",\n \"flex-wrap\",\n \"justify-content\",\n \"align-items\",\n \"align-content\",\n \"align-self\",\n \"margin\",\n \"margin-x\",\n \"margin-y\",\n \"margin-top\",\n \"margin-end\",\n \"margin-bottom\",\n \"margin-start\",\n \"negative-margin\",\n \"negative-margin-x\",\n \"negative-margin-y\",\n \"negative-margin-top\",\n \"negative-margin-end\",\n \"negative-margin-bottom\",\n \"negative-margin-start\",\n \"padding\",\n \"padding-x\",\n \"padding-y\",\n \"padding-top\",\n \"padding-end\",\n \"padding-bottom\",\n \"padding-start\",\n )\n);\n\n@import \"utilities/api\";\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n width: 100%;\n padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter});\n padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter});\n margin-right: auto;\n margin-left: auto;\n}\n","/*!\n * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n width: 100%;\n padding-right: var(--bs-gutter-x, 0.75rem);\n padding-left: var(--bs-gutter-x, 0.75rem);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--bs-gutter-y) * -1);\n margin-right: calc(var(--bs-gutter-x) * -.5);\n margin-left: calc(var(--bs-gutter-x) * -.5);\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * .5);\n padding-left: calc(var(--bs-gutter-x) * .5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-sm-0 {\n margin-left: 0;\n }\n\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-sm-3 {\n margin-left: 25%;\n }\n\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-sm-6 {\n margin-left: 50%;\n }\n\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-sm-9 {\n margin-left: 75%;\n }\n\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-md-0 {\n margin-left: 0;\n }\n\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-md-3 {\n margin-left: 25%;\n }\n\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-md-6 {\n margin-left: 50%;\n }\n\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-md-9 {\n margin-left: 75%;\n }\n\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-lg-0 {\n margin-left: 0;\n }\n\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-lg-3 {\n margin-left: 25%;\n }\n\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-lg-6 {\n margin-left: 50%;\n }\n\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-lg-9 {\n margin-left: 75%;\n }\n\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xl-0 {\n margin-left: 0;\n }\n\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xl-3 {\n margin-left: 25%;\n }\n\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xl-6 {\n margin-left: 50%;\n }\n\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xl-9 {\n margin-left: 75%;\n }\n\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xxl-0 {\n margin-left: 0;\n }\n\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xxl-3 {\n margin-left: 25%;\n }\n\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xxl-6 {\n margin-left: 50%;\n }\n\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xxl-9 {\n margin-left: 75%;\n }\n\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n\n .d-sm-inline-block {\n display: inline-block !important;\n }\n\n .d-sm-block {\n display: block !important;\n }\n\n .d-sm-grid {\n display: grid !important;\n }\n\n .d-sm-table {\n display: table !important;\n }\n\n .d-sm-table-row {\n display: table-row !important;\n }\n\n .d-sm-table-cell {\n display: table-cell !important;\n }\n\n .d-sm-flex {\n display: flex !important;\n }\n\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n\n .d-sm-none {\n display: none !important;\n }\n\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-sm-row {\n flex-direction: row !important;\n }\n\n .flex-sm-column {\n flex-direction: column !important;\n }\n\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-sm-center {\n justify-content: center !important;\n }\n\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n\n .align-items-sm-center {\n align-items: center !important;\n }\n\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n\n .align-content-sm-center {\n align-content: center !important;\n }\n\n .align-content-sm-between {\n align-content: space-between !important;\n }\n\n .align-content-sm-around {\n align-content: space-around !important;\n }\n\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n\n .align-self-sm-auto {\n align-self: auto !important;\n }\n\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n\n .align-self-sm-center {\n align-self: center !important;\n }\n\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n\n .order-sm-first {\n order: -1 !important;\n }\n\n .order-sm-0 {\n order: 0 !important;\n }\n\n .order-sm-1 {\n order: 1 !important;\n }\n\n .order-sm-2 {\n order: 2 !important;\n }\n\n .order-sm-3 {\n order: 3 !important;\n }\n\n .order-sm-4 {\n order: 4 !important;\n }\n\n .order-sm-5 {\n order: 5 !important;\n }\n\n .order-sm-last {\n order: 6 !important;\n }\n\n .m-sm-0 {\n margin: 0 !important;\n }\n\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n\n .m-sm-3 {\n margin: 1rem !important;\n }\n\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n\n .m-sm-5 {\n margin: 3rem !important;\n }\n\n .m-sm-auto {\n margin: auto !important;\n }\n\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n\n .mt-sm-auto {\n margin-top: auto !important;\n }\n\n .me-sm-0 {\n margin-right: 0 !important;\n }\n\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n\n .me-sm-auto {\n margin-right: auto !important;\n }\n\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n\n .ms-sm-auto {\n margin-left: auto !important;\n }\n\n .p-sm-0 {\n padding: 0 !important;\n }\n\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n\n .p-sm-3 {\n padding: 1rem !important;\n }\n\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n\n .p-sm-5 {\n padding: 3rem !important;\n }\n\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n\n .d-md-inline-block {\n display: inline-block !important;\n }\n\n .d-md-block {\n display: block !important;\n }\n\n .d-md-grid {\n display: grid !important;\n }\n\n .d-md-table {\n display: table !important;\n }\n\n .d-md-table-row {\n display: table-row !important;\n }\n\n .d-md-table-cell {\n display: table-cell !important;\n }\n\n .d-md-flex {\n display: flex !important;\n }\n\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n\n .d-md-none {\n display: none !important;\n }\n\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-md-row {\n flex-direction: row !important;\n }\n\n .flex-md-column {\n flex-direction: column !important;\n }\n\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-md-center {\n justify-content: center !important;\n }\n\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-md-start {\n align-items: flex-start !important;\n }\n\n .align-items-md-end {\n align-items: flex-end !important;\n }\n\n .align-items-md-center {\n align-items: center !important;\n }\n\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n\n .align-content-md-start {\n align-content: flex-start !important;\n }\n\n .align-content-md-end {\n align-content: flex-end !important;\n }\n\n .align-content-md-center {\n align-content: center !important;\n }\n\n .align-content-md-between {\n align-content: space-between !important;\n }\n\n .align-content-md-around {\n align-content: space-around !important;\n }\n\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n\n .align-self-md-auto {\n align-self: auto !important;\n }\n\n .align-self-md-start {\n align-self: flex-start !important;\n }\n\n .align-self-md-end {\n align-self: flex-end !important;\n }\n\n .align-self-md-center {\n align-self: center !important;\n }\n\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n\n .order-md-first {\n order: -1 !important;\n }\n\n .order-md-0 {\n order: 0 !important;\n }\n\n .order-md-1 {\n order: 1 !important;\n }\n\n .order-md-2 {\n order: 2 !important;\n }\n\n .order-md-3 {\n order: 3 !important;\n }\n\n .order-md-4 {\n order: 4 !important;\n }\n\n .order-md-5 {\n order: 5 !important;\n }\n\n .order-md-last {\n order: 6 !important;\n }\n\n .m-md-0 {\n margin: 0 !important;\n }\n\n .m-md-1 {\n margin: 0.25rem !important;\n }\n\n .m-md-2 {\n margin: 0.5rem !important;\n }\n\n .m-md-3 {\n margin: 1rem !important;\n }\n\n .m-md-4 {\n margin: 1.5rem !important;\n }\n\n .m-md-5 {\n margin: 3rem !important;\n }\n\n .m-md-auto {\n margin: auto !important;\n }\n\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-md-0 {\n margin-top: 0 !important;\n }\n\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n\n .mt-md-auto {\n margin-top: auto !important;\n }\n\n .me-md-0 {\n margin-right: 0 !important;\n }\n\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-md-3 {\n margin-right: 1rem !important;\n }\n\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-md-5 {\n margin-right: 3rem !important;\n }\n\n .me-md-auto {\n margin-right: auto !important;\n }\n\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n\n .ms-md-0 {\n margin-left: 0 !important;\n }\n\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n\n .ms-md-auto {\n margin-left: auto !important;\n }\n\n .p-md-0 {\n padding: 0 !important;\n }\n\n .p-md-1 {\n padding: 0.25rem !important;\n }\n\n .p-md-2 {\n padding: 0.5rem !important;\n }\n\n .p-md-3 {\n padding: 1rem !important;\n }\n\n .p-md-4 {\n padding: 1.5rem !important;\n }\n\n .p-md-5 {\n padding: 3rem !important;\n }\n\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-md-0 {\n padding-top: 0 !important;\n }\n\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n\n .pe-md-0 {\n padding-right: 0 !important;\n }\n\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-md-0 {\n padding-left: 0 !important;\n }\n\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n\n .d-lg-inline-block {\n display: inline-block !important;\n }\n\n .d-lg-block {\n display: block !important;\n }\n\n .d-lg-grid {\n display: grid !important;\n }\n\n .d-lg-table {\n display: table !important;\n }\n\n .d-lg-table-row {\n display: table-row !important;\n }\n\n .d-lg-table-cell {\n display: table-cell !important;\n }\n\n .d-lg-flex {\n display: flex !important;\n }\n\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n\n .d-lg-none {\n display: none !important;\n }\n\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-lg-row {\n flex-direction: row !important;\n }\n\n .flex-lg-column {\n flex-direction: column !important;\n }\n\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-lg-center {\n justify-content: center !important;\n }\n\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n\n .align-items-lg-center {\n align-items: center !important;\n }\n\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n\n .align-content-lg-center {\n align-content: center !important;\n }\n\n .align-content-lg-between {\n align-content: space-between !important;\n }\n\n .align-content-lg-around {\n align-content: space-around !important;\n }\n\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n\n .align-self-lg-auto {\n align-self: auto !important;\n }\n\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n\n .align-self-lg-center {\n align-self: center !important;\n }\n\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n\n .order-lg-first {\n order: -1 !important;\n }\n\n .order-lg-0 {\n order: 0 !important;\n }\n\n .order-lg-1 {\n order: 1 !important;\n }\n\n .order-lg-2 {\n order: 2 !important;\n }\n\n .order-lg-3 {\n order: 3 !important;\n }\n\n .order-lg-4 {\n order: 4 !important;\n }\n\n .order-lg-5 {\n order: 5 !important;\n }\n\n .order-lg-last {\n order: 6 !important;\n }\n\n .m-lg-0 {\n margin: 0 !important;\n }\n\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n\n .m-lg-3 {\n margin: 1rem !important;\n }\n\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n\n .m-lg-5 {\n margin: 3rem !important;\n }\n\n .m-lg-auto {\n margin: auto !important;\n }\n\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n\n .mt-lg-auto {\n margin-top: auto !important;\n }\n\n .me-lg-0 {\n margin-right: 0 !important;\n }\n\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n\n .me-lg-auto {\n margin-right: auto !important;\n }\n\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n\n .ms-lg-auto {\n margin-left: auto !important;\n }\n\n .p-lg-0 {\n padding: 0 !important;\n }\n\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n\n .p-lg-3 {\n padding: 1rem !important;\n }\n\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n\n .p-lg-5 {\n padding: 3rem !important;\n }\n\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n\n .d-xl-inline-block {\n display: inline-block !important;\n }\n\n .d-xl-block {\n display: block !important;\n }\n\n .d-xl-grid {\n display: grid !important;\n }\n\n .d-xl-table {\n display: table !important;\n }\n\n .d-xl-table-row {\n display: table-row !important;\n }\n\n .d-xl-table-cell {\n display: table-cell !important;\n }\n\n .d-xl-flex {\n display: flex !important;\n }\n\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xl-none {\n display: none !important;\n }\n\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xl-row {\n flex-direction: row !important;\n }\n\n .flex-xl-column {\n flex-direction: column !important;\n }\n\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xl-center {\n justify-content: center !important;\n }\n\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xl-center {\n align-items: center !important;\n }\n\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xl-center {\n align-content: center !important;\n }\n\n .align-content-xl-between {\n align-content: space-between !important;\n }\n\n .align-content-xl-around {\n align-content: space-around !important;\n }\n\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xl-auto {\n align-self: auto !important;\n }\n\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xl-center {\n align-self: center !important;\n }\n\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n\n .order-xl-first {\n order: -1 !important;\n }\n\n .order-xl-0 {\n order: 0 !important;\n }\n\n .order-xl-1 {\n order: 1 !important;\n }\n\n .order-xl-2 {\n order: 2 !important;\n }\n\n .order-xl-3 {\n order: 3 !important;\n }\n\n .order-xl-4 {\n order: 4 !important;\n }\n\n .order-xl-5 {\n order: 5 !important;\n }\n\n .order-xl-last {\n order: 6 !important;\n }\n\n .m-xl-0 {\n margin: 0 !important;\n }\n\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xl-3 {\n margin: 1rem !important;\n }\n\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xl-5 {\n margin: 3rem !important;\n }\n\n .m-xl-auto {\n margin: auto !important;\n }\n\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xl-auto {\n margin-top: auto !important;\n }\n\n .me-xl-0 {\n margin-right: 0 !important;\n }\n\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xl-auto {\n margin-right: auto !important;\n }\n\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xl-auto {\n margin-left: auto !important;\n }\n\n .p-xl-0 {\n padding: 0 !important;\n }\n\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xl-3 {\n padding: 1rem !important;\n }\n\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xl-5 {\n padding: 3rem !important;\n }\n\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n\n .d-xxl-block {\n display: block !important;\n }\n\n .d-xxl-grid {\n display: grid !important;\n }\n\n .d-xxl-table {\n display: table !important;\n }\n\n .d-xxl-table-row {\n display: table-row !important;\n }\n\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n\n .d-xxl-flex {\n display: flex !important;\n }\n\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xxl-none {\n display: none !important;\n }\n\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xxl-row {\n flex-direction: row !important;\n }\n\n .flex-xxl-column {\n flex-direction: column !important;\n }\n\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xxl-center {\n align-items: center !important;\n }\n\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xxl-center {\n align-content: center !important;\n }\n\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xxl-center {\n align-self: center !important;\n }\n\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n\n .order-xxl-first {\n order: -1 !important;\n }\n\n .order-xxl-0 {\n order: 0 !important;\n }\n\n .order-xxl-1 {\n order: 1 !important;\n }\n\n .order-xxl-2 {\n order: 2 !important;\n }\n\n .order-xxl-3 {\n order: 3 !important;\n }\n\n .order-xxl-4 {\n order: 4 !important;\n }\n\n .order-xxl-5 {\n order: 5 !important;\n }\n\n .order-xxl-last {\n order: 6 !important;\n }\n\n .m-xxl-0 {\n margin: 0 !important;\n }\n\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xxl-3 {\n margin: 1rem !important;\n }\n\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xxl-5 {\n margin: 3rem !important;\n }\n\n .m-xxl-auto {\n margin: auto !important;\n }\n\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xxl-auto {\n margin-right: auto !important;\n }\n\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n\n .p-xxl-0 {\n padding: 0 !important;\n }\n\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xxl-3 {\n padding: 1rem !important;\n }\n\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xxl-5 {\n padding: 3rem !important;\n }\n\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n\n .d-print-inline-block {\n display: inline-block !important;\n }\n\n .d-print-block {\n display: block !important;\n }\n\n .d-print-grid {\n display: grid !important;\n }\n\n .d-print-table {\n display: table !important;\n }\n\n .d-print-table-row {\n display: table-row !important;\n }\n\n .d-print-table-cell {\n display: table-cell !important;\n }\n\n .d-print-flex {\n display: flex !important;\n }\n\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n// Color system\n\n// scss-docs-start gray-color-variables\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n// scss-docs-end gray-color-variables\n\n// fusv-disable\n// scss-docs-start gray-colors-map\n$grays: (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n) !default;\n// scss-docs-end gray-colors-map\n// fusv-enable\n\n// scss-docs-start color-variables\n$blue: #0d6efd !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #d63384 !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #198754 !default;\n$teal: #20c997 !default;\n$cyan: #0dcaf0 !default;\n// scss-docs-end color-variables\n\n// scss-docs-start colors-map\n$colors: (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n) !default;\n// scss-docs-end colors-map\n\n// scss-docs-start theme-color-variables\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-900 !default;\n// scss-docs-end theme-color-variables\n\n// scss-docs-start theme-colors-map\n$theme-colors: (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n) !default;\n// scss-docs-end theme-colors-map\n\n// scss-docs-start theme-colors-rgb\n$theme-colors-rgb: map-loop($theme-colors, to-rgb, \"$value\") !default;\n// scss-docs-end theme-colors-rgb\n\n// The contrast ratio to reach against white, to determine if color changes from \"light\" to \"dark\". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.\n// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast\n$min-contrast-ratio: 4.5 !default;\n\n// Customize the light and dark text colors for use in our color contrast function.\n$color-contrast-dark: $black !default;\n$color-contrast-light: $white !default;\n\n// fusv-disable\n$blue-100: tint-color($blue, 80%) !default;\n$blue-200: tint-color($blue, 60%) !default;\n$blue-300: tint-color($blue, 40%) !default;\n$blue-400: tint-color($blue, 20%) !default;\n$blue-500: $blue !default;\n$blue-600: shade-color($blue, 20%) !default;\n$blue-700: shade-color($blue, 40%) !default;\n$blue-800: shade-color($blue, 60%) !default;\n$blue-900: shade-color($blue, 80%) !default;\n\n$indigo-100: tint-color($indigo, 80%) !default;\n$indigo-200: tint-color($indigo, 60%) !default;\n$indigo-300: tint-color($indigo, 40%) !default;\n$indigo-400: tint-color($indigo, 20%) !default;\n$indigo-500: $indigo !default;\n$indigo-600: shade-color($indigo, 20%) !default;\n$indigo-700: shade-color($indigo, 40%) !default;\n$indigo-800: shade-color($indigo, 60%) !default;\n$indigo-900: shade-color($indigo, 80%) !default;\n\n$purple-100: tint-color($purple, 80%) !default;\n$purple-200: tint-color($purple, 60%) !default;\n$purple-300: tint-color($purple, 40%) !default;\n$purple-400: tint-color($purple, 20%) !default;\n$purple-500: $purple !default;\n$purple-600: shade-color($purple, 20%) !default;\n$purple-700: shade-color($purple, 40%) !default;\n$purple-800: shade-color($purple, 60%) !default;\n$purple-900: shade-color($purple, 80%) !default;\n\n$pink-100: tint-color($pink, 80%) !default;\n$pink-200: tint-color($pink, 60%) !default;\n$pink-300: tint-color($pink, 40%) !default;\n$pink-400: tint-color($pink, 20%) !default;\n$pink-500: $pink !default;\n$pink-600: shade-color($pink, 20%) !default;\n$pink-700: shade-color($pink, 40%) !default;\n$pink-800: shade-color($pink, 60%) !default;\n$pink-900: shade-color($pink, 80%) !default;\n\n$red-100: tint-color($red, 80%) !default;\n$red-200: tint-color($red, 60%) !default;\n$red-300: tint-color($red, 40%) !default;\n$red-400: tint-color($red, 20%) !default;\n$red-500: $red !default;\n$red-600: shade-color($red, 20%) !default;\n$red-700: shade-color($red, 40%) !default;\n$red-800: shade-color($red, 60%) !default;\n$red-900: shade-color($red, 80%) !default;\n\n$orange-100: tint-color($orange, 80%) !default;\n$orange-200: tint-color($orange, 60%) !default;\n$orange-300: tint-color($orange, 40%) !default;\n$orange-400: tint-color($orange, 20%) !default;\n$orange-500: $orange !default;\n$orange-600: shade-color($orange, 20%) !default;\n$orange-700: shade-color($orange, 40%) !default;\n$orange-800: shade-color($orange, 60%) !default;\n$orange-900: shade-color($orange, 80%) !default;\n\n$yellow-100: tint-color($yellow, 80%) !default;\n$yellow-200: tint-color($yellow, 60%) !default;\n$yellow-300: tint-color($yellow, 40%) !default;\n$yellow-400: tint-color($yellow, 20%) !default;\n$yellow-500: $yellow !default;\n$yellow-600: shade-color($yellow, 20%) !default;\n$yellow-700: shade-color($yellow, 40%) !default;\n$yellow-800: shade-color($yellow, 60%) !default;\n$yellow-900: shade-color($yellow, 80%) !default;\n\n$green-100: tint-color($green, 80%) !default;\n$green-200: tint-color($green, 60%) !default;\n$green-300: tint-color($green, 40%) !default;\n$green-400: tint-color($green, 20%) !default;\n$green-500: $green !default;\n$green-600: shade-color($green, 20%) !default;\n$green-700: shade-color($green, 40%) !default;\n$green-800: shade-color($green, 60%) !default;\n$green-900: shade-color($green, 80%) !default;\n\n$teal-100: tint-color($teal, 80%) !default;\n$teal-200: tint-color($teal, 60%) !default;\n$teal-300: tint-color($teal, 40%) !default;\n$teal-400: tint-color($teal, 20%) !default;\n$teal-500: $teal !default;\n$teal-600: shade-color($teal, 20%) !default;\n$teal-700: shade-color($teal, 40%) !default;\n$teal-800: shade-color($teal, 60%) !default;\n$teal-900: shade-color($teal, 80%) !default;\n\n$cyan-100: tint-color($cyan, 80%) !default;\n$cyan-200: tint-color($cyan, 60%) !default;\n$cyan-300: tint-color($cyan, 40%) !default;\n$cyan-400: tint-color($cyan, 20%) !default;\n$cyan-500: $cyan !default;\n$cyan-600: shade-color($cyan, 20%) !default;\n$cyan-700: shade-color($cyan, 40%) !default;\n$cyan-800: shade-color($cyan, 60%) !default;\n$cyan-900: shade-color($cyan, 80%) !default;\n\n$blues: (\n \"blue-100\": $blue-100,\n \"blue-200\": $blue-200,\n \"blue-300\": $blue-300,\n \"blue-400\": $blue-400,\n \"blue-500\": $blue-500,\n \"blue-600\": $blue-600,\n \"blue-700\": $blue-700,\n \"blue-800\": $blue-800,\n \"blue-900\": $blue-900\n) !default;\n\n$indigos: (\n \"indigo-100\": $indigo-100,\n \"indigo-200\": $indigo-200,\n \"indigo-300\": $indigo-300,\n \"indigo-400\": $indigo-400,\n \"indigo-500\": $indigo-500,\n \"indigo-600\": $indigo-600,\n \"indigo-700\": $indigo-700,\n \"indigo-800\": $indigo-800,\n \"indigo-900\": $indigo-900\n) !default;\n\n$purples: (\n \"purple-100\": $purple-200,\n \"purple-200\": $purple-100,\n \"purple-300\": $purple-300,\n \"purple-400\": $purple-400,\n \"purple-500\": $purple-500,\n \"purple-600\": $purple-600,\n \"purple-700\": $purple-700,\n \"purple-800\": $purple-800,\n \"purple-900\": $purple-900\n) !default;\n\n$pinks: (\n \"pink-100\": $pink-100,\n \"pink-200\": $pink-200,\n \"pink-300\": $pink-300,\n \"pink-400\": $pink-400,\n \"pink-500\": $pink-500,\n \"pink-600\": $pink-600,\n \"pink-700\": $pink-700,\n \"pink-800\": $pink-800,\n \"pink-900\": $pink-900\n) !default;\n\n$reds: (\n \"red-100\": $red-100,\n \"red-200\": $red-200,\n \"red-300\": $red-300,\n \"red-400\": $red-400,\n \"red-500\": $red-500,\n \"red-600\": $red-600,\n \"red-700\": $red-700,\n \"red-800\": $red-800,\n \"red-900\": $red-900\n) !default;\n\n$oranges: (\n \"orange-100\": $orange-100,\n \"orange-200\": $orange-200,\n \"orange-300\": $orange-300,\n \"orange-400\": $orange-400,\n \"orange-500\": $orange-500,\n \"orange-600\": $orange-600,\n \"orange-700\": $orange-700,\n \"orange-800\": $orange-800,\n \"orange-900\": $orange-900\n) !default;\n\n$yellows: (\n \"yellow-100\": $yellow-100,\n \"yellow-200\": $yellow-200,\n \"yellow-300\": $yellow-300,\n \"yellow-400\": $yellow-400,\n \"yellow-500\": $yellow-500,\n \"yellow-600\": $yellow-600,\n \"yellow-700\": $yellow-700,\n \"yellow-800\": $yellow-800,\n \"yellow-900\": $yellow-900\n) !default;\n\n$greens: (\n \"green-100\": $green-100,\n \"green-200\": $green-200,\n \"green-300\": $green-300,\n \"green-400\": $green-400,\n \"green-500\": $green-500,\n \"green-600\": $green-600,\n \"green-700\": $green-700,\n \"green-800\": $green-800,\n \"green-900\": $green-900\n) !default;\n\n$teals: (\n \"teal-100\": $teal-100,\n \"teal-200\": $teal-200,\n \"teal-300\": $teal-300,\n \"teal-400\": $teal-400,\n \"teal-500\": $teal-500,\n \"teal-600\": $teal-600,\n \"teal-700\": $teal-700,\n \"teal-800\": $teal-800,\n \"teal-900\": $teal-900\n) !default;\n\n$cyans: (\n \"cyan-100\": $cyan-100,\n \"cyan-200\": $cyan-200,\n \"cyan-300\": $cyan-300,\n \"cyan-400\": $cyan-400,\n \"cyan-500\": $cyan-500,\n \"cyan-600\": $cyan-600,\n \"cyan-700\": $cyan-700,\n \"cyan-800\": $cyan-800,\n \"cyan-900\": $cyan-900\n) !default;\n// fusv-enable\n\n// Characters which are escaped by the escape-svg function\n$escaped-characters: (\n (\"<\", \"%3c\"),\n (\">\", \"%3e\"),\n (\"#\", \"%23\"),\n (\"(\", \"%28\"),\n (\")\", \"%29\"),\n) !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-reduced-motion: true !default;\n$enable-smooth-scroll: true !default;\n$enable-grid-classes: true !default;\n$enable-cssgrid: false !default;\n$enable-button-pointers: true !default;\n$enable-rfs: true !default;\n$enable-validation-icons: true !default;\n$enable-negative-margins: false !default;\n$enable-deprecation-messages: true !default;\n$enable-important-utilities: true !default;\n\n// Prefix for :root CSS variables\n\n$variable-prefix: bs- !default;\n\n// Gradient\n//\n// The gradient which is added to components if `$enable-gradients` is `true`\n// This gradient is also added to elements with `.bg-gradient`\n// scss-docs-start variable-gradient\n$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;\n// scss-docs-end variable-gradient\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// scss-docs-start spacer-variables-maps\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: $spacer * .25,\n 2: $spacer * .5,\n 3: $spacer,\n 4: $spacer * 1.5,\n 5: $spacer * 3,\n) !default;\n\n$negative-spacers: if($enable-negative-margins, negativify-map($spacers), null) !default;\n// scss-docs-end spacer-variables-maps\n\n// Position\n//\n// Define the edge positioning anchors of the position utilities.\n\n// scss-docs-start position-map\n$position-values: (\n 0: 0,\n 50: 50%,\n 100: 100%\n) !default;\n// scss-docs-end position-map\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n$body-text-align: null !default;\n\n// Utilities maps\n//\n// Extends the default `$theme-colors` maps to help create our utilities.\n\n// scss-docs-start utilities-colors\n$utilities-colors: map-merge(\n $theme-colors-rgb,\n (\n \"black\": to-rgb($black),\n \"white\": to-rgb($white),\n \"body\": to-rgb($body-color)\n )\n) !default;\n// scss-docs-end utilities-colors\n\n// scss-docs-start utilities-text-colors\n$utilities-text-colors: map-loop($utilities-colors, rgba-css-var, \"$key\", \"text\") !default;\n// scss-docs-end utilities-text-colors\n\n// scss-docs-start utilities-bg-colors\n$utilities-bg-colors: map-loop($utilities-colors, rgba-css-var, \"$key\", \"bg\") !default;\n// scss-docs-end utilities-bg-colors\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: $primary !default;\n$link-decoration: underline !default;\n$link-shade-percentage: 20% !default;\n$link-hover-color: shift-color($link-color, $link-shade-percentage) !default;\n$link-hover-decoration: null !default;\n\n$stretched-link-pseudo-element: after !default;\n$stretched-link-z-index: 1 !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n// scss-docs-start grid-breakpoints\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px,\n xxl: 1400px\n) !default;\n// scss-docs-end grid-breakpoints\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints, \"$grid-breakpoints\");\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n// scss-docs-start container-max-widths\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px,\n xxl: 1320px\n) !default;\n// scss-docs-end container-max-widths\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 1.5rem !default;\n$grid-row-columns: 6 !default;\n\n$gutters: $spacers !default;\n\n// Container padding\n\n$container-padding-x: $grid-gutter-width * .5 !default;\n\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n// scss-docs-start border-variables\n$border-width: 1px !default;\n$border-widths: (\n 1: 1px,\n 2: 2px,\n 3: 3px,\n 4: 4px,\n 5: 5px\n) !default;\n\n$border-color: $gray-300 !default;\n// scss-docs-end border-variables\n\n// scss-docs-start border-radius-variables\n$border-radius: .25rem !default;\n$border-radius-sm: .2rem !default;\n$border-radius-lg: .3rem !default;\n$border-radius-pill: 50rem !default;\n// scss-docs-end border-radius-variables\n\n// scss-docs-start box-shadow-variables\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;\n// scss-docs-end box-shadow-variables\n\n$component-active-color: $white !default;\n$component-active-bg: $primary !default;\n\n// scss-docs-start caret-variables\n$caret-width: .3em !default;\n$caret-vertical-align: $caret-width * .85 !default;\n$caret-spacing: $caret-width * .85 !default;\n// scss-docs-end caret-variables\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n// scss-docs-start collapse-transition\n$transition-collapse: height .35s ease !default;\n$transition-collapse-width: width .35s ease !default;\n// scss-docs-end collapse-transition\n\n// stylelint-disable function-disallowed-list\n// scss-docs-start aspect-ratios\n$aspect-ratios: (\n \"1x1\": 100%,\n \"4x3\": calc(3 / 4 * 100%),\n \"16x9\": calc(9 / 16 * 100%),\n \"21x9\": calc(9 / 21 * 100%)\n) !default;\n// scss-docs-end aspect-ratios\n// stylelint-enable function-disallowed-list\n\n// Typography\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// scss-docs-start font-variables\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n// stylelint-enable value-keyword-case\n$font-family-base: var(--#{$variable-prefix}font-sans-serif) !default;\n$font-family-code: var(--#{$variable-prefix}font-monospace) !default;\n\n// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins\n// $font-size-base affects the font size of the body text\n$font-size-root: null !default;\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-sm: $font-size-base * .875 !default;\n$font-size-lg: $font-size-base * 1.25 !default;\n\n$font-weight-lighter: lighter !default;\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-bold: 700 !default;\n$font-weight-bolder: bolder !default;\n\n$font-weight-base: $font-weight-normal !default;\n\n$line-height-base: 1.5 !default;\n$line-height-sm: 1.25 !default;\n$line-height-lg: 2 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n// scss-docs-end font-variables\n\n// scss-docs-start font-sizes\n$font-sizes: (\n 1: $h1-font-size,\n 2: $h2-font-size,\n 3: $h3-font-size,\n 4: $h4-font-size,\n 5: $h5-font-size,\n 6: $h6-font-size\n) !default;\n// scss-docs-end font-sizes\n\n// scss-docs-start headings-variables\n$headings-margin-bottom: $spacer * .5 !default;\n$headings-font-family: null !default;\n$headings-font-style: null !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: null !default;\n// scss-docs-end headings-variables\n\n// scss-docs-start display-headings\n$display-font-sizes: (\n 1: 5rem,\n 2: 4.5rem,\n 3: 4rem,\n 4: 3.5rem,\n 5: 3rem,\n 6: 2.5rem\n) !default;\n\n$display-font-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n// scss-docs-end display-headings\n\n// scss-docs-start type-variables\n$lead-font-size: $font-size-base * 1.25 !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: .875em !default;\n\n$sub-sup-font-size: .75em !default;\n\n$text-muted: $gray-600 !default;\n\n$initialism-font-size: $small-font-size !default;\n\n$blockquote-margin-y: $spacer !default;\n$blockquote-font-size: $font-size-base * 1.25 !default;\n$blockquote-footer-color: $gray-600 !default;\n$blockquote-footer-font-size: $small-font-size !default;\n\n$hr-margin-y: $spacer !default;\n$hr-color: inherit !default;\n$hr-height: $border-width !default;\n$hr-opacity: .25 !default;\n\n$legend-margin-bottom: .5rem !default;\n$legend-font-size: 1.5rem !default;\n$legend-font-weight: null !default;\n\n$mark-padding: .2em !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$nested-kbd-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-bg: #fcf8e3 !default;\n// scss-docs-end type-variables\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n// scss-docs-start table-variables\n$table-cell-padding-y: .5rem !default;\n$table-cell-padding-x: .5rem !default;\n$table-cell-padding-y-sm: .25rem !default;\n$table-cell-padding-x-sm: .25rem !default;\n\n$table-cell-vertical-align: top !default;\n\n$table-color: $body-color !default;\n$table-bg: transparent !default;\n$table-accent-bg: transparent !default;\n\n$table-th-font-weight: null !default;\n\n$table-striped-color: $table-color !default;\n$table-striped-bg-factor: .05 !default;\n$table-striped-bg: rgba($black, $table-striped-bg-factor) !default;\n\n$table-active-color: $table-color !default;\n$table-active-bg-factor: .1 !default;\n$table-active-bg: rgba($black, $table-active-bg-factor) !default;\n\n$table-hover-color: $table-color !default;\n$table-hover-bg-factor: .075 !default;\n$table-hover-bg: rgba($black, $table-hover-bg-factor) !default;\n\n$table-border-factor: .1 !default;\n$table-border-width: $border-width !default;\n$table-border-color: $border-color !default;\n\n$table-striped-order: odd !default;\n\n$table-group-separator-color: currentColor !default;\n\n$table-caption-color: $text-muted !default;\n\n$table-bg-scale: -80% !default;\n// scss-docs-end table-variables\n\n// scss-docs-start table-loop\n$table-variants: (\n \"primary\": shift-color($primary, $table-bg-scale),\n \"secondary\": shift-color($secondary, $table-bg-scale),\n \"success\": shift-color($success, $table-bg-scale),\n \"info\": shift-color($info, $table-bg-scale),\n \"warning\": shift-color($warning, $table-bg-scale),\n \"danger\": shift-color($danger, $table-bg-scale),\n \"light\": $light,\n \"dark\": $dark,\n) !default;\n// scss-docs-end table-loop\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n// scss-docs-start input-btn-variables\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-font-family: null !default;\n$input-btn-font-size: $font-size-base !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .25rem !default;\n$input-btn-focus-color-opacity: .25 !default;\n$input-btn-focus-color: rgba($component-active-bg, $input-btn-focus-color-opacity) !default;\n$input-btn-focus-blur: 0 !default;\n$input-btn-focus-box-shadow: 0 0 $input-btn-focus-blur $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-font-size-sm: $font-size-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-font-size-lg: $font-size-lg !default;\n\n$input-btn-border-width: $border-width !default;\n// scss-docs-end input-btn-variables\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n// scss-docs-start btn-variables\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-font-family: $input-btn-font-family !default;\n$btn-font-size: $input-btn-font-size !default;\n$btn-line-height: $input-btn-line-height !default;\n$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-font-size-sm: $input-btn-font-size-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-font-size-lg: $input-btn-font-size-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-color: $link-color !default;\n$btn-link-hover-color: $link-hover-color !default;\n$btn-link-disabled-color: $gray-600 !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$btn-hover-bg-shade-amount: 15% !default;\n$btn-hover-bg-tint-amount: 15% !default;\n$btn-hover-border-shade-amount: 20% !default;\n$btn-hover-border-tint-amount: 10% !default;\n$btn-active-bg-shade-amount: 20% !default;\n$btn-active-bg-tint-amount: 20% !default;\n$btn-active-border-shade-amount: 25% !default;\n$btn-active-border-tint-amount: 10% !default;\n// scss-docs-end btn-variables\n\n\n// Forms\n\n// scss-docs-start form-text-variables\n$form-text-margin-top: .25rem !default;\n$form-text-font-size: $small-font-size !default;\n$form-text-font-style: null !default;\n$form-text-font-weight: null !default;\n$form-text-color: $text-muted !default;\n// scss-docs-end form-text-variables\n\n// scss-docs-start form-label-variables\n$form-label-margin-bottom: .5rem !default;\n$form-label-font-size: null !default;\n$form-label-font-style: null !default;\n$form-label-font-weight: null !default;\n$form-label-color: null !default;\n// scss-docs-end form-label-variables\n\n// scss-docs-start form-input-variables\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-font-family: $input-btn-font-family !default;\n$input-font-size: $input-btn-font-size !default;\n$input-font-weight: $font-weight-base !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-font-size-sm: $input-btn-font-size-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-font-size-lg: $input-btn-font-size-lg !default;\n\n$input-bg: $body-bg !default;\n$input-disabled-bg: $gray-200 !default;\n$input-disabled-border-color: null !default;\n\n$input-color: $body-color !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: $box-shadow-inset !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-sm: $border-radius-sm !default;\n$input-border-radius-lg: $border-radius-lg !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: tint-color($component-active-bg, 50%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n$input-plaintext-color: $body-color !default;\n\n$input-height-border: $input-border-width * 2 !default;\n\n$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;\n$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;\n$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;\n\n$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;\n$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;\n$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-color-width: 3rem !default;\n// scss-docs-end form-input-variables\n\n// scss-docs-start form-check-variables\n$form-check-input-width: 1em !default;\n$form-check-min-height: $font-size-base * $line-height-base !default;\n$form-check-padding-start: $form-check-input-width + .5em !default;\n$form-check-margin-bottom: .125rem !default;\n$form-check-label-color: null !default;\n$form-check-label-cursor: null !default;\n$form-check-transition: null !default;\n\n$form-check-input-active-filter: brightness(90%) !default;\n\n$form-check-input-bg: $input-bg !default;\n$form-check-input-border: 1px solid rgba($black, .25) !default;\n$form-check-input-border-radius: .25em !default;\n$form-check-radio-border-radius: 50% !default;\n$form-check-input-focus-border: $input-focus-border-color !default;\n$form-check-input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$form-check-input-checked-color: $component-active-color !default;\n$form-check-input-checked-bg-color: $component-active-bg !default;\n$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;\n$form-check-input-checked-bg-image: url(\"data:image/svg+xml, \") !default;\n$form-check-radio-checked-bg-image: url(\"data:image/svg+xml, \") !default;\n\n$form-check-input-indeterminate-color: $component-active-color !default;\n$form-check-input-indeterminate-bg-color: $component-active-bg !default;\n$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;\n$form-check-input-indeterminate-bg-image: url(\"data:image/svg+xml, \") !default;\n\n$form-check-input-disabled-opacity: .5 !default;\n$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;\n$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;\n\n$form-check-inline-margin-end: 1rem !default;\n// scss-docs-end form-check-variables\n\n// scss-docs-start form-switch-variables\n$form-switch-color: rgba(0, 0, 0, .25) !default;\n$form-switch-width: 2em !default;\n$form-switch-padding-start: $form-switch-width + .5em !default;\n$form-switch-bg-image: url(\"data:image/svg+xml, \") !default;\n$form-switch-border-radius: $form-switch-width !default;\n$form-switch-transition: background-position .15s ease-in-out !default;\n\n$form-switch-focus-color: $input-focus-border-color !default;\n$form-switch-focus-bg-image: url(\"data:image/svg+xml, \") !default;\n\n$form-switch-checked-color: $component-active-color !default;\n$form-switch-checked-bg-image: url(\"data:image/svg+xml, \") !default;\n$form-switch-checked-bg-position: right center !default;\n// scss-docs-end form-switch-variables\n\n// scss-docs-start input-group-variables\n$input-group-addon-padding-y: $input-padding-y !default;\n$input-group-addon-padding-x: $input-padding-x !default;\n$input-group-addon-font-weight: $input-font-weight !default;\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n// scss-docs-end input-group-variables\n\n// scss-docs-start form-select-variables\n$form-select-padding-y: $input-padding-y !default;\n$form-select-padding-x: $input-padding-x !default;\n$form-select-font-family: $input-font-family !default;\n$form-select-font-size: $input-font-size !default;\n$form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image\n$form-select-font-weight: $input-font-weight !default;\n$form-select-line-height: $input-line-height !default;\n$form-select-color: $input-color !default;\n$form-select-bg: $input-bg !default;\n$form-select-disabled-color: null !default;\n$form-select-disabled-bg: $gray-200 !default;\n$form-select-disabled-border-color: $input-disabled-border-color !default;\n$form-select-bg-position: right $form-select-padding-x center !default;\n$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions\n$form-select-indicator-color: $gray-800 !default;\n$form-select-indicator: url(\"data:image/svg+xml, \") !default;\n\n$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;\n$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;\n$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;\n\n$form-select-border-width: $input-border-width !default;\n$form-select-border-color: $input-border-color !default;\n$form-select-border-radius: $border-radius !default;\n$form-select-box-shadow: $box-shadow-inset !default;\n\n$form-select-focus-border-color: $input-focus-border-color !default;\n$form-select-focus-width: $input-focus-width !default;\n$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;\n\n$form-select-padding-y-sm: $input-padding-y-sm !default;\n$form-select-padding-x-sm: $input-padding-x-sm !default;\n$form-select-font-size-sm: $input-font-size-sm !default;\n\n$form-select-padding-y-lg: $input-padding-y-lg !default;\n$form-select-padding-x-lg: $input-padding-x-lg !default;\n$form-select-font-size-lg: $input-font-size-lg !default;\n\n$form-select-transition: $input-transition !default;\n// scss-docs-end form-select-variables\n\n// scss-docs-start form-range-variables\n$form-range-track-width: 100% !default;\n$form-range-track-height: .5rem !default;\n$form-range-track-cursor: pointer !default;\n$form-range-track-bg: $gray-300 !default;\n$form-range-track-border-radius: 1rem !default;\n$form-range-track-box-shadow: $box-shadow-inset !default;\n\n$form-range-thumb-width: 1rem !default;\n$form-range-thumb-height: $form-range-thumb-width !default;\n$form-range-thumb-bg: $component-active-bg !default;\n$form-range-thumb-border: 0 !default;\n$form-range-thumb-border-radius: 1rem !default;\n$form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;\n$form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge\n$form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;\n$form-range-thumb-disabled-bg: $gray-500 !default;\n$form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n// scss-docs-end form-range-variables\n\n// scss-docs-start form-file-variables\n$form-file-button-color: $input-color !default;\n$form-file-button-bg: $input-group-addon-bg !default;\n$form-file-button-hover-bg: shade-color($form-file-button-bg, 5%) !default;\n// scss-docs-end form-file-variables\n\n// scss-docs-start form-floating-variables\n$form-floating-height: add(3.5rem, $input-height-border) !default;\n$form-floating-line-height: 1.25 !default;\n$form-floating-padding-x: $input-padding-x !default;\n$form-floating-padding-y: 1rem !default;\n$form-floating-input-padding-t: 1.625rem !default;\n$form-floating-input-padding-b: .625rem !default;\n$form-floating-label-opacity: .65 !default;\n$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;\n$form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;\n// scss-docs-end form-floating-variables\n\n// Form validation\n\n// scss-docs-start form-feedback-variables\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $form-text-font-size !default;\n$form-feedback-font-style: $form-text-font-style !default;\n$form-feedback-valid-color: $success !default;\n$form-feedback-invalid-color: $danger !default;\n\n$form-feedback-icon-valid-color: $form-feedback-valid-color !default;\n$form-feedback-icon-valid: url(\"data:image/svg+xml, \") !default;\n$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;\n$form-feedback-icon-invalid: url(\"data:image/svg+xml, \") !default;\n// scss-docs-end form-feedback-variables\n\n// scss-docs-start form-validation-states\n$form-validation-states: (\n \"valid\": (\n \"color\": $form-feedback-valid-color,\n \"icon\": $form-feedback-icon-valid\n ),\n \"invalid\": (\n \"color\": $form-feedback-invalid-color,\n \"icon\": $form-feedback-icon-invalid\n )\n) !default;\n// scss-docs-end form-validation-states\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n// scss-docs-start zindex-stack\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-offcanvas-backdrop: 1040 !default;\n$zindex-offcanvas: 1045 !default;\n$zindex-modal-backdrop: 1050 !default;\n$zindex-modal: 1055 !default;\n$zindex-popover: 1070 !default;\n$zindex-tooltip: 1080 !default;\n// scss-docs-end zindex-stack\n\n\n// Navs\n\n// scss-docs-start nav-variables\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-font-size: null !default;\n$nav-link-font-weight: null !default;\n$nav-link-color: $link-color !default;\n$nav-link-hover-color: $link-hover-color !default;\n$nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n// scss-docs-end nav-variables\n\n\n// Navbar\n\n// scss-docs-start navbar-variables\n$navbar-padding-y: $spacer * .5 !default;\n$navbar-padding-x: null !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;\n$navbar-brand-margin-end: 1rem !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n$navbar-toggler-focus-width: $btn-focus-width !default;\n$navbar-toggler-transition: box-shadow .15s ease-in-out !default;\n// scss-docs-end navbar-variables\n\n// scss-docs-start navbar-theme-variables\n$navbar-dark-color: rgba($white, .55) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: url(\"data:image/svg+xml, \") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n\n$navbar-light-color: rgba($black, .55) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: url(\"data:image/svg+xml, \") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n$navbar-light-brand-color: $navbar-light-active-color !default;\n$navbar-light-brand-hover-color: $navbar-light-active-color !default;\n$navbar-dark-brand-color: $navbar-dark-active-color !default;\n$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;\n// scss-docs-end navbar-theme-variables\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n// scss-docs-start dropdown-variables\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-x: 0 !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-font-size: $font-size-base !default;\n$dropdown-color: $body-color !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: rgba($black, .15) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;\n$dropdown-divider-bg: $dropdown-border-color !default;\n$dropdown-divider-margin-y: $spacer * .5 !default;\n$dropdown-box-shadow: $box-shadow !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: shade-color($gray-900, 10%) !default;\n$dropdown-link-hover-bg: $gray-200 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-500 !default;\n\n$dropdown-item-padding-y: $spacer * .25 !default;\n$dropdown-item-padding-x: $spacer !default;\n\n$dropdown-header-color: $gray-600 !default;\n$dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default;\n// scss-docs-end dropdown-variables\n\n// scss-docs-start dropdown-dark-variables\n$dropdown-dark-color: $gray-300 !default;\n$dropdown-dark-bg: $gray-800 !default;\n$dropdown-dark-border-color: $dropdown-border-color !default;\n$dropdown-dark-divider-bg: $dropdown-divider-bg !default;\n$dropdown-dark-box-shadow: null !default;\n$dropdown-dark-link-color: $dropdown-dark-color !default;\n$dropdown-dark-link-hover-color: $white !default;\n$dropdown-dark-link-hover-bg: rgba($white, .15) !default;\n$dropdown-dark-link-active-color: $dropdown-link-active-color !default;\n$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;\n$dropdown-dark-link-disabled-color: $gray-500 !default;\n$dropdown-dark-header-color: $gray-500 !default;\n// scss-docs-end dropdown-dark-variables\n\n\n// Pagination\n\n// scss-docs-start pagination-variables\n$pagination-padding-y: .375rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n\n$pagination-color: $link-color !default;\n$pagination-bg: $white !default;\n$pagination-border-width: $border-width !default;\n$pagination-border-radius: $border-radius !default;\n$pagination-margin-start: -$pagination-border-width !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-focus-color: $link-hover-color !default;\n$pagination-focus-bg: $gray-200 !default;\n$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: $link-hover-color !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $pagination-active-bg !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n$pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$pagination-border-radius-sm: $border-radius-sm !default;\n$pagination-border-radius-lg: $border-radius-lg !default;\n// scss-docs-end pagination-variables\n\n\n// Placeholders\n\n// scss-docs-start placeholders\n$placeholder-opacity-max: .5 !default;\n$placeholder-opacity-min: .2 !default;\n// scss-docs-end placeholders\n\n// Cards\n\n// scss-docs-start card-variables\n$card-spacer-y: $spacer !default;\n$card-spacer-x: $spacer !default;\n$card-title-spacer-y: $spacer * .5 !default;\n$card-border-width: $border-width !default;\n$card-border-color: rgba($black, .125) !default;\n$card-border-radius: $border-radius !default;\n$card-box-shadow: null !default;\n$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;\n$card-cap-padding-y: $card-spacer-y * .5 !default;\n$card-cap-padding-x: $card-spacer-x !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-cap-color: null !default;\n$card-height: null !default;\n$card-color: null !default;\n$card-bg: $white !default;\n$card-img-overlay-padding: $spacer !default;\n$card-group-margin: $grid-gutter-width * .5 !default;\n// scss-docs-end card-variables\n\n// Accordion\n\n// scss-docs-start accordion-variables\n$accordion-padding-y: 1rem !default;\n$accordion-padding-x: 1.25rem !default;\n$accordion-color: $body-color !default;\n$accordion-bg: $body-bg !default;\n$accordion-border-width: $border-width !default;\n$accordion-border-color: rgba($black, .125) !default;\n$accordion-border-radius: $border-radius !default;\n$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;\n\n$accordion-body-padding-y: $accordion-padding-y !default;\n$accordion-body-padding-x: $accordion-padding-x !default;\n\n$accordion-button-padding-y: $accordion-padding-y !default;\n$accordion-button-padding-x: $accordion-padding-x !default;\n$accordion-button-color: $accordion-color !default;\n$accordion-button-bg: $accordion-bg !default;\n$accordion-transition: $btn-transition, border-radius .15s ease !default;\n$accordion-button-active-bg: tint-color($component-active-bg, 90%) !default;\n$accordion-button-active-color: shade-color($primary, 10%) !default;\n\n$accordion-button-focus-border-color: $input-focus-border-color !default;\n$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;\n\n$accordion-icon-width: 1.25rem !default;\n$accordion-icon-color: $accordion-button-color !default;\n$accordion-icon-active-color: $accordion-button-active-color !default;\n$accordion-icon-transition: transform .2s ease-in-out !default;\n$accordion-icon-transform: rotate(-180deg) !default;\n\n$accordion-button-icon: url(\"data:image/svg+xml, \") !default;\n$accordion-button-active-icon: url(\"data:image/svg+xml, \") !default;\n// scss-docs-end accordion-variables\n\n// Tooltips\n\n// scss-docs-start tooltip-variables\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-border-radius: $border-radius !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: $spacer * .25 !default;\n$tooltip-padding-x: $spacer * .5 !default;\n$tooltip-margin: 0 !default;\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n$tooltip-arrow-color: $tooltip-bg !default;\n// scss-docs-end tooltip-variables\n\n// Form tooltips must come after regular tooltips\n// scss-docs-start tooltip-feedback-variables\n$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;\n$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;\n$form-feedback-tooltip-font-size: $tooltip-font-size !default;\n$form-feedback-tooltip-line-height: null !default;\n$form-feedback-tooltip-opacity: $tooltip-opacity !default;\n$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;\n// scss-docs-end tooltip-feedback-variables\n\n\n// Popovers\n\n// scss-docs-start popover-variables\n$popover-font-size: $font-size-sm !default;\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: rgba($black, .2) !default;\n$popover-border-radius: $border-radius-lg !default;\n$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;\n$popover-box-shadow: $box-shadow !default;\n\n$popover-header-bg: shade-color($popover-bg, 6%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: $spacer !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $spacer !default;\n$popover-body-padding-x: $spacer !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n$popover-arrow-color: $popover-bg !default;\n\n$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;\n// scss-docs-end popover-variables\n\n\n// Toasts\n\n// scss-docs-start toast-variables\n$toast-max-width: 350px !default;\n$toast-padding-x: .75rem !default;\n$toast-padding-y: .5rem !default;\n$toast-font-size: .875rem !default;\n$toast-color: null !default;\n$toast-background-color: rgba($white, .85) !default;\n$toast-border-width: 1px !default;\n$toast-border-color: rgba(0, 0, 0, .1) !default;\n$toast-border-radius: $border-radius !default;\n$toast-box-shadow: $box-shadow !default;\n$toast-spacing: $container-padding-x !default;\n\n$toast-header-color: $gray-600 !default;\n$toast-header-background-color: rgba($white, .85) !default;\n$toast-header-border-color: rgba(0, 0, 0, .05) !default;\n// scss-docs-end toast-variables\n\n\n// Badges\n\n// scss-docs-start badge-variables\n$badge-font-size: .75em !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-color: $white !default;\n$badge-padding-y: .35em !default;\n$badge-padding-x: .65em !default;\n$badge-border-radius: $border-radius !default;\n// scss-docs-end badge-variables\n\n\n// Modals\n\n// scss-docs-start modal-variables\n$modal-inner-padding: $spacer !default;\n\n$modal-footer-margin-between: .5rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-color: null !default;\n$modal-content-bg: $white !default;\n$modal-content-border-color: rgba($black, .2) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-border-radius: $border-radius-lg !default;\n$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;\n$modal-content-box-shadow-xs: $box-shadow-sm !default;\n$modal-content-box-shadow-sm-up: $box-shadow !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n$modal-header-border-color: $border-color !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n$modal-header-padding-y: $modal-inner-padding !default;\n$modal-header-padding-x: $modal-inner-padding !default;\n$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility\n\n$modal-sm: 300px !default;\n$modal-md: 500px !default;\n$modal-lg: 800px !default;\n$modal-xl: 1140px !default;\n\n$modal-fade-transform: translate(0, -50px) !default;\n$modal-show-transform: none !default;\n$modal-transition: transform .3s ease-out !default;\n$modal-scale-transform: scale(1.02) !default;\n// scss-docs-end modal-variables\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n// scss-docs-start alert-variables\n$alert-padding-y: $spacer !default;\n$alert-padding-x: $spacer !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n$alert-bg-scale: -80% !default;\n$alert-border-scale: -70% !default;\n$alert-color-scale: 40% !default;\n$alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side\n// scss-docs-end alert-variables\n\n\n// Progress bars\n\n// scss-docs-start progress-variables\n$progress-height: 1rem !default;\n$progress-font-size: $font-size-base * .75 !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: $box-shadow-inset !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: $primary !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n// scss-docs-end progress-variables\n\n\n// List group\n\n// scss-docs-start list-group-variables\n$list-group-color: $gray-900 !default;\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: $spacer * .5 !default;\n$list-group-item-padding-x: $spacer !default;\n$list-group-item-bg-scale: -80% !default;\n$list-group-item-color-scale: 40% !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n// scss-docs-end list-group-variables\n\n\n// Image thumbnails\n\n// scss-docs-start thumbnail-variables\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: $gray-300 !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: $box-shadow-sm !default;\n// scss-docs-end thumbnail-variables\n\n\n// Figures\n\n// scss-docs-start figure-variables\n$figure-caption-font-size: $small-font-size !default;\n$figure-caption-color: $gray-600 !default;\n// scss-docs-end figure-variables\n\n\n// Breadcrumbs\n\n// scss-docs-start breadcrumb-variables\n$breadcrumb-font-size: null !default;\n$breadcrumb-padding-y: 0 !default;\n$breadcrumb-padding-x: 0 !default;\n$breadcrumb-item-padding-x: .5rem !default;\n$breadcrumb-margin-bottom: 1rem !default;\n$breadcrumb-bg: null !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: quote(\"/\") !default;\n$breadcrumb-divider-flipped: $breadcrumb-divider !default;\n$breadcrumb-border-radius: null !default;\n// scss-docs-end breadcrumb-variables\n\n// Carousel\n\n// scss-docs-start carousel-variables\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n$carousel-control-hover-opacity: .9 !default;\n$carousel-control-transition: opacity .15s ease !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-hit-area-height: 10px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-opacity: .5 !default;\n$carousel-indicator-active-bg: $white !default;\n$carousel-indicator-active-opacity: 1 !default;\n$carousel-indicator-transition: opacity .6s ease !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n$carousel-caption-padding-y: 1.25rem !default;\n$carousel-caption-spacer: 1.25rem !default;\n\n$carousel-control-icon-width: 2rem !default;\n\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml, \") !default;\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml, \") !default;\n\n$carousel-transition-duration: .6s !default;\n$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n\n$carousel-dark-indicator-active-bg: $black !default;\n$carousel-dark-caption-color: $black !default;\n$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;\n// scss-docs-end carousel-variables\n\n\n// Spinners\n\n// scss-docs-start spinner-variables\n$spinner-width: 2rem !default;\n$spinner-height: $spinner-width !default;\n$spinner-vertical-align: -.125em !default;\n$spinner-border-width: .25em !default;\n$spinner-animation-speed: .75s !default;\n\n$spinner-width-sm: 1rem !default;\n$spinner-height-sm: $spinner-width-sm !default;\n$spinner-border-width-sm: .2em !default;\n// scss-docs-end spinner-variables\n\n\n// Close\n\n// scss-docs-start close-variables\n$btn-close-width: 1em !default;\n$btn-close-height: $btn-close-width !default;\n$btn-close-padding-x: .25em !default;\n$btn-close-padding-y: $btn-close-padding-x !default;\n$btn-close-color: $black !default;\n$btn-close-bg: url(\"data:image/svg+xml, \") !default;\n$btn-close-focus-shadow: $input-btn-focus-box-shadow !default;\n$btn-close-opacity: .5 !default;\n$btn-close-hover-opacity: .75 !default;\n$btn-close-focus-opacity: 1 !default;\n$btn-close-disabled-opacity: .25 !default;\n$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;\n// scss-docs-end close-variables\n\n\n// Offcanvas\n\n// scss-docs-start offcanvas-variables\n$offcanvas-padding-y: $modal-inner-padding !default;\n$offcanvas-padding-x: $modal-inner-padding !default;\n$offcanvas-horizontal-width: 400px !default;\n$offcanvas-vertical-height: 30vh !default;\n$offcanvas-transition-duration: .3s !default;\n$offcanvas-border-color: $modal-content-border-color !default;\n$offcanvas-border-width: $modal-content-border-width !default;\n$offcanvas-title-line-height: $modal-title-line-height !default;\n$offcanvas-bg-color: $modal-content-bg !default;\n$offcanvas-color: $modal-content-color !default;\n$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;\n$offcanvas-backdrop-bg: $modal-backdrop-bg !default;\n$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;\n// scss-docs-end offcanvas-variables\n\n// Code\n\n$code-font-size: $small-font-size !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .2rem !default;\n$kbd-padding-x: .4rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: $white !default;\n$kbd-bg: $gray-900 !default;\n\n$pre-color: null !default;\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$variable-prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$variable-prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$variable-prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$variable-prefix}gutter-x: #{$gutter};\n --#{$variable-prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--#{$variable-prefix}gutter-y) * -1); // stylelint-disable-line function-disallowed-list\n margin-right: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n margin-left: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready($gutter: $grid-gutter-width) {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$variable-prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// numberof columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (eg. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $value in $is-local-vars {\n --#{$variable-prefix}#{$local-var}: #{$value};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]}
\ No newline at end of file
diff --git a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css b/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css
deleted file mode 100644
index d3dfc1b..0000000
--- a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*!
- * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)
- * Copyright 2011-2021 The Bootstrap Authors
- * Copyright 2011-2021 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
- */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-left:var(--bs-gutter-x,.75rem);padding-right:var(--bs-gutter-x,.75rem);margin-left:auto;margin-right:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-left:calc(var(--bs-gutter-x) * -.5);margin-right:calc(var(--bs-gutter-x) * -.5)}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
-/*# sourceMappingURL=bootstrap-grid.rtl.min.css.map */
\ No newline at end of file
diff --git a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map b/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map
deleted file mode 100644
index 86d302a..0000000
--- a/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../scss/bootstrap-grid.scss","../../scss/_containers.scss","dist/css/bootstrap-grid.rtl.css","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AAAA;;;;;ACME,WCCF,iBAGA,cACA,cACA,cAHA,cADA,eCLE,MAAA,KACA,aAAA,0BACA,cAAA,0BACA,YAAA,KACA,aAAA,KCwDE,yBH5CE,WAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cAAA,cACE,UAAA,OG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QIfN,KCAA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KACA,WAAA,8BACA,YAAA,+BACA,aAAA,+BDHE,OCQF,WAAA,WAIA,YAAA,EACA,MAAA,KACA,UAAA,KACA,aAAA,8BACA,cAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,aAAA,YAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,IAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,IAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,IAwDU,WAxDV,aAAA,aAwDU,WAxDV,aAAA,aAmEM,KJoGR,MIlGU,cAAA,EAGF,KJoGR,MIlGU,cAAA,EAPF,KJ8GR,MI5GU,cAAA,QAGF,KJ8GR,MI5GU,cAAA,QAPF,KJwHR,MItHU,cAAA,OAGF,KJwHR,MItHU,cAAA,OAPF,KJkIR,MIhIU,cAAA,KAGF,KJkIR,MIhIU,cAAA,KAPF,KJ4IR,MI1IU,cAAA,OAGF,KJ4IR,MI1IU,cAAA,OAPF,KJsJR,MIpJU,cAAA,KAGF,KJsJR,MIpJU,cAAA,KFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJyTR,SIvTU,cAAA,EAGF,QJyTR,SIvTU,cAAA,EAPF,QJmUR,SIjUU,cAAA,QAGF,QJmUR,SIjUU,cAAA,QAPF,QJ6UR,SI3UU,cAAA,OAGF,QJ6UR,SI3UU,cAAA,OAPF,QJuVR,SIrVU,cAAA,KAGF,QJuVR,SIrVU,cAAA,KAPF,QJiWR,SI/VU,cAAA,OAGF,QJiWR,SI/VU,cAAA,OAPF,QJ2WR,SIzWU,cAAA,KAGF,QJ2WR,SIzWU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJ8gBR,SI5gBU,cAAA,EAGF,QJ8gBR,SI5gBU,cAAA,EAPF,QJwhBR,SIthBU,cAAA,QAGF,QJwhBR,SIthBU,cAAA,QAPF,QJkiBR,SIhiBU,cAAA,OAGF,QJkiBR,SIhiBU,cAAA,OAPF,QJ4iBR,SI1iBU,cAAA,KAGF,QJ4iBR,SI1iBU,cAAA,KAPF,QJsjBR,SIpjBU,cAAA,OAGF,QJsjBR,SIpjBU,cAAA,OAPF,QJgkBR,SI9jBU,cAAA,KAGF,QJgkBR,SI9jBU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJmuBR,SIjuBU,cAAA,EAGF,QJmuBR,SIjuBU,cAAA,EAPF,QJ6uBR,SI3uBU,cAAA,QAGF,QJ6uBR,SI3uBU,cAAA,QAPF,QJuvBR,SIrvBU,cAAA,OAGF,QJuvBR,SIrvBU,cAAA,OAPF,QJiwBR,SI/vBU,cAAA,KAGF,QJiwBR,SI/vBU,cAAA,KAPF,QJ2wBR,SIzwBU,cAAA,OAGF,QJ2wBR,SIzwBU,cAAA,OAPF,QJqxBR,SInxBU,cAAA,KAGF,QJqxBR,SInxBU,cAAA,MFzDN,0BESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJw7BR,SIt7BU,cAAA,EAGF,QJw7BR,SIt7BU,cAAA,EAPF,QJk8BR,SIh8BU,cAAA,QAGF,QJk8BR,SIh8BU,cAAA,QAPF,QJ48BR,SI18BU,cAAA,OAGF,QJ48BR,SI18BU,cAAA,OAPF,QJs9BR,SIp9BU,cAAA,KAGF,QJs9BR,SIp9BU,cAAA,KAPF,QJg+BR,SI99BU,cAAA,OAGF,QJg+BR,SI99BU,cAAA,OAPF,QJ0+BR,SIx+BU,cAAA,KAGF,QJ0+BR,SIx+BU,cAAA,MFzDN,0BESE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,aAAA,EAwDU,cAxDV,aAAA,YAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,IAwDU,eAxDV,aAAA,aAwDU,eAxDV,aAAA,aAmEM,SJ6oCR,UI3oCU,cAAA,EAGF,SJ6oCR,UI3oCU,cAAA,EAPF,SJupCR,UIrpCU,cAAA,QAGF,SJupCR,UIrpCU,cAAA,QAPF,SJiqCR,UI/pCU,cAAA,OAGF,SJiqCR,UI/pCU,cAAA,OAPF,SJ2qCR,UIzqCU,cAAA,KAGF,SJ2qCR,UIzqCU,cAAA,KAPF,SJqrCR,UInrCU,cAAA,OAGF,SJqrCR,UInrCU,cAAA,OAPF,SJ+rCR,UI7rCU,cAAA,KAGF,SJ+rCR,UI7rCU,cAAA,MCzDF,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,YAAA,YAAA,aAAA,YAPJ,MAOI,YAAA,iBAAA,aAAA,iBAPJ,MAOI,YAAA,gBAAA,aAAA,gBAPJ,MAOI,YAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,iBAAA,aAAA,iBAPJ,MAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,aAAA,YAAA,cAAA,YAPJ,MAOI,aAAA,iBAAA,cAAA,iBAPJ,MAOI,aAAA,gBAAA,cAAA,gBAPJ,MAOI,aAAA,eAAA,cAAA,eAPJ,MAOI,aAAA,iBAAA,cAAA,iBAPJ,MAOI,aAAA,eAAA,cAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eHPR,yBGAI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHPR,yBGAI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHPR,yBGAI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHPR,0BGAI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHPR,0BGAI,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,YAAA,YAAA,aAAA,YAPJ,UAOI,YAAA,iBAAA,aAAA,iBAPJ,UAOI,YAAA,gBAAA,aAAA,gBAPJ,UAOI,YAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,iBAAA,aAAA,iBAPJ,UAOI,YAAA,eAAA,aAAA,eAPJ,aAOI,YAAA,eAAA,aAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,aAAA,YAAA,cAAA,YAPJ,UAOI,aAAA,iBAAA,cAAA,iBAPJ,UAOI,aAAA,gBAAA,cAAA,gBAPJ,UAOI,aAAA,eAAA,cAAA,eAPJ,UAOI,aAAA,iBAAA,cAAA,iBAPJ,UAOI,aAAA,eAAA,cAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBChCZ,aDyBQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["/*!\n * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n$include-column-box-sizing: true !default;\n\n@import \"functions\";\n@import \"variables\";\n\n@import \"mixins/lists\";\n@import \"mixins/breakpoints\";\n@import \"mixins/container\";\n@import \"mixins/grid\";\n@import \"mixins/utilities\";\n\n@import \"vendor/rfs\";\n\n@import \"containers\";\n@import \"grid\";\n\n@import \"utilities\";\n// Only use the utilities we need\n// stylelint-disable-next-line scss/dollar-variable-default\n$utilities: map-get-multiple(\n $utilities,\n (\n \"display\",\n \"order\",\n \"flex\",\n \"flex-direction\",\n \"flex-grow\",\n \"flex-shrink\",\n \"flex-wrap\",\n \"justify-content\",\n \"align-items\",\n \"align-content\",\n \"align-self\",\n \"margin\",\n \"margin-x\",\n \"margin-y\",\n \"margin-top\",\n \"margin-end\",\n \"margin-bottom\",\n \"margin-start\",\n \"negative-margin\",\n \"negative-margin-x\",\n \"negative-margin-y\",\n \"negative-margin-top\",\n \"negative-margin-end\",\n \"negative-margin-bottom\",\n \"negative-margin-start\",\n \"padding\",\n \"padding-x\",\n \"padding-y\",\n \"padding-top\",\n \"padding-end\",\n \"padding-bottom\",\n \"padding-start\",\n )\n);\n\n@import \"utilities/api\";\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","/*!\n * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n width: 100%;\n padding-left: var(--bs-gutter-x, 0.75rem);\n padding-right: var(--bs-gutter-x, 0.75rem);\n margin-left: auto;\n margin-right: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--bs-gutter-y) * -1);\n margin-left: calc(var(--bs-gutter-x) * -.5);\n margin-right: calc(var(--bs-gutter-x) * -.5);\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-left: calc(var(--bs-gutter-x) * .5);\n padding-right: calc(var(--bs-gutter-x) * .5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-right: 8.33333333%;\n}\n\n.offset-2 {\n margin-right: 16.66666667%;\n}\n\n.offset-3 {\n margin-right: 25%;\n}\n\n.offset-4 {\n margin-right: 33.33333333%;\n}\n\n.offset-5 {\n margin-right: 41.66666667%;\n}\n\n.offset-6 {\n margin-right: 50%;\n}\n\n.offset-7 {\n margin-right: 58.33333333%;\n}\n\n.offset-8 {\n margin-right: 66.66666667%;\n}\n\n.offset-9 {\n margin-right: 75%;\n}\n\n.offset-10 {\n margin-right: 83.33333333%;\n}\n\n.offset-11 {\n margin-right: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-sm-0 {\n margin-right: 0;\n }\n\n .offset-sm-1 {\n margin-right: 8.33333333%;\n }\n\n .offset-sm-2 {\n margin-right: 16.66666667%;\n }\n\n .offset-sm-3 {\n margin-right: 25%;\n }\n\n .offset-sm-4 {\n margin-right: 33.33333333%;\n }\n\n .offset-sm-5 {\n margin-right: 41.66666667%;\n }\n\n .offset-sm-6 {\n margin-right: 50%;\n }\n\n .offset-sm-7 {\n margin-right: 58.33333333%;\n }\n\n .offset-sm-8 {\n margin-right: 66.66666667%;\n }\n\n .offset-sm-9 {\n margin-right: 75%;\n }\n\n .offset-sm-10 {\n margin-right: 83.33333333%;\n }\n\n .offset-sm-11 {\n margin-right: 91.66666667%;\n }\n\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-md-0 {\n margin-right: 0;\n }\n\n .offset-md-1 {\n margin-right: 8.33333333%;\n }\n\n .offset-md-2 {\n margin-right: 16.66666667%;\n }\n\n .offset-md-3 {\n margin-right: 25%;\n }\n\n .offset-md-4 {\n margin-right: 33.33333333%;\n }\n\n .offset-md-5 {\n margin-right: 41.66666667%;\n }\n\n .offset-md-6 {\n margin-right: 50%;\n }\n\n .offset-md-7 {\n margin-right: 58.33333333%;\n }\n\n .offset-md-8 {\n margin-right: 66.66666667%;\n }\n\n .offset-md-9 {\n margin-right: 75%;\n }\n\n .offset-md-10 {\n margin-right: 83.33333333%;\n }\n\n .offset-md-11 {\n margin-right: 91.66666667%;\n }\n\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-lg-0 {\n margin-right: 0;\n }\n\n .offset-lg-1 {\n margin-right: 8.33333333%;\n }\n\n .offset-lg-2 {\n margin-right: 16.66666667%;\n }\n\n .offset-lg-3 {\n margin-right: 25%;\n }\n\n .offset-lg-4 {\n margin-right: 33.33333333%;\n }\n\n .offset-lg-5 {\n margin-right: 41.66666667%;\n }\n\n .offset-lg-6 {\n margin-right: 50%;\n }\n\n .offset-lg-7 {\n margin-right: 58.33333333%;\n }\n\n .offset-lg-8 {\n margin-right: 66.66666667%;\n }\n\n .offset-lg-9 {\n margin-right: 75%;\n }\n\n .offset-lg-10 {\n margin-right: 83.33333333%;\n }\n\n .offset-lg-11 {\n margin-right: 91.66666667%;\n }\n\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xl-0 {\n margin-right: 0;\n }\n\n .offset-xl-1 {\n margin-right: 8.33333333%;\n }\n\n .offset-xl-2 {\n margin-right: 16.66666667%;\n }\n\n .offset-xl-3 {\n margin-right: 25%;\n }\n\n .offset-xl-4 {\n margin-right: 33.33333333%;\n }\n\n .offset-xl-5 {\n margin-right: 41.66666667%;\n }\n\n .offset-xl-6 {\n margin-right: 50%;\n }\n\n .offset-xl-7 {\n margin-right: 58.33333333%;\n }\n\n .offset-xl-8 {\n margin-right: 66.66666667%;\n }\n\n .offset-xl-9 {\n margin-right: 75%;\n }\n\n .offset-xl-10 {\n margin-right: 83.33333333%;\n }\n\n .offset-xl-11 {\n margin-right: 91.66666667%;\n }\n\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xxl-0 {\n margin-right: 0;\n }\n\n .offset-xxl-1 {\n margin-right: 8.33333333%;\n }\n\n .offset-xxl-2 {\n margin-right: 16.66666667%;\n }\n\n .offset-xxl-3 {\n margin-right: 25%;\n }\n\n .offset-xxl-4 {\n margin-right: 33.33333333%;\n }\n\n .offset-xxl-5 {\n margin-right: 41.66666667%;\n }\n\n .offset-xxl-6 {\n margin-right: 50%;\n }\n\n .offset-xxl-7 {\n margin-right: 58.33333333%;\n }\n\n .offset-xxl-8 {\n margin-right: 66.66666667%;\n }\n\n .offset-xxl-9 {\n margin-right: 75%;\n }\n\n .offset-xxl-10 {\n margin-right: 83.33333333%;\n }\n\n .offset-xxl-11 {\n margin-right: 91.66666667%;\n }\n\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n}\n\n.mx-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n}\n\n.mx-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n}\n\n.mx-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n}\n\n.mx-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n}\n\n.mx-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n}\n\n.mx-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-left: 0 !important;\n}\n\n.me-1 {\n margin-left: 0.25rem !important;\n}\n\n.me-2 {\n margin-left: 0.5rem !important;\n}\n\n.me-3 {\n margin-left: 1rem !important;\n}\n\n.me-4 {\n margin-left: 1.5rem !important;\n}\n\n.me-5 {\n margin-left: 3rem !important;\n}\n\n.me-auto {\n margin-left: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-right: 0 !important;\n}\n\n.ms-1 {\n margin-right: 0.25rem !important;\n}\n\n.ms-2 {\n margin-right: 0.5rem !important;\n}\n\n.ms-3 {\n margin-right: 1rem !important;\n}\n\n.ms-4 {\n margin-right: 1.5rem !important;\n}\n\n.ms-5 {\n margin-right: 3rem !important;\n}\n\n.ms-auto {\n margin-right: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n}\n\n.px-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n}\n\n.px-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n}\n\n.px-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n}\n\n.px-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n}\n\n.px-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-left: 0 !important;\n}\n\n.pe-1 {\n padding-left: 0.25rem !important;\n}\n\n.pe-2 {\n padding-left: 0.5rem !important;\n}\n\n.pe-3 {\n padding-left: 1rem !important;\n}\n\n.pe-4 {\n padding-left: 1.5rem !important;\n}\n\n.pe-5 {\n padding-left: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-right: 0 !important;\n}\n\n.ps-1 {\n padding-right: 0.25rem !important;\n}\n\n.ps-2 {\n padding-right: 0.5rem !important;\n}\n\n.ps-3 {\n padding-right: 1rem !important;\n}\n\n.ps-4 {\n padding-right: 1.5rem !important;\n}\n\n.ps-5 {\n padding-right: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n\n .d-sm-inline-block {\n display: inline-block !important;\n }\n\n .d-sm-block {\n display: block !important;\n }\n\n .d-sm-grid {\n display: grid !important;\n }\n\n .d-sm-table {\n display: table !important;\n }\n\n .d-sm-table-row {\n display: table-row !important;\n }\n\n .d-sm-table-cell {\n display: table-cell !important;\n }\n\n .d-sm-flex {\n display: flex !important;\n }\n\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n\n .d-sm-none {\n display: none !important;\n }\n\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-sm-row {\n flex-direction: row !important;\n }\n\n .flex-sm-column {\n flex-direction: column !important;\n }\n\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-sm-center {\n justify-content: center !important;\n }\n\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n\n .align-items-sm-center {\n align-items: center !important;\n }\n\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n\n .align-content-sm-center {\n align-content: center !important;\n }\n\n .align-content-sm-between {\n align-content: space-between !important;\n }\n\n .align-content-sm-around {\n align-content: space-around !important;\n }\n\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n\n .align-self-sm-auto {\n align-self: auto !important;\n }\n\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n\n .align-self-sm-center {\n align-self: center !important;\n }\n\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n\n .order-sm-first {\n order: -1 !important;\n }\n\n .order-sm-0 {\n order: 0 !important;\n }\n\n .order-sm-1 {\n order: 1 !important;\n }\n\n .order-sm-2 {\n order: 2 !important;\n }\n\n .order-sm-3 {\n order: 3 !important;\n }\n\n .order-sm-4 {\n order: 4 !important;\n }\n\n .order-sm-5 {\n order: 5 !important;\n }\n\n .order-sm-last {\n order: 6 !important;\n }\n\n .m-sm-0 {\n margin: 0 !important;\n }\n\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n\n .m-sm-3 {\n margin: 1rem !important;\n }\n\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n\n .m-sm-5 {\n margin: 3rem !important;\n }\n\n .m-sm-auto {\n margin: auto !important;\n }\n\n .mx-sm-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n\n .mx-sm-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n\n .mx-sm-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n\n .mx-sm-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n\n .mt-sm-auto {\n margin-top: auto !important;\n }\n\n .me-sm-0 {\n margin-left: 0 !important;\n }\n\n .me-sm-1 {\n margin-left: 0.25rem !important;\n }\n\n .me-sm-2 {\n margin-left: 0.5rem !important;\n }\n\n .me-sm-3 {\n margin-left: 1rem !important;\n }\n\n .me-sm-4 {\n margin-left: 1.5rem !important;\n }\n\n .me-sm-5 {\n margin-left: 3rem !important;\n }\n\n .me-sm-auto {\n margin-left: auto !important;\n }\n\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n\n .ms-sm-0 {\n margin-right: 0 !important;\n }\n\n .ms-sm-1 {\n margin-right: 0.25rem !important;\n }\n\n .ms-sm-2 {\n margin-right: 0.5rem !important;\n }\n\n .ms-sm-3 {\n margin-right: 1rem !important;\n }\n\n .ms-sm-4 {\n margin-right: 1.5rem !important;\n }\n\n .ms-sm-5 {\n margin-right: 3rem !important;\n }\n\n .ms-sm-auto {\n margin-right: auto !important;\n }\n\n .p-sm-0 {\n padding: 0 !important;\n }\n\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n\n .p-sm-3 {\n padding: 1rem !important;\n }\n\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n\n .p-sm-5 {\n padding: 3rem !important;\n }\n\n .px-sm-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n\n .px-sm-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n\n .px-sm-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n\n .px-sm-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n\n .px-sm-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n\n .px-sm-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n\n .pe-sm-0 {\n padding-left: 0 !important;\n }\n\n .pe-sm-1 {\n padding-left: 0.25rem !important;\n }\n\n .pe-sm-2 {\n padding-left: 0.5rem !important;\n }\n\n .pe-sm-3 {\n padding-left: 1rem !important;\n }\n\n .pe-sm-4 {\n padding-left: 1.5rem !important;\n }\n\n .pe-sm-5 {\n padding-left: 3rem !important;\n }\n\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-sm-0 {\n padding-right: 0 !important;\n }\n\n .ps-sm-1 {\n padding-right: 0.25rem !important;\n }\n\n .ps-sm-2 {\n padding-right: 0.5rem !important;\n }\n\n .ps-sm-3 {\n padding-right: 1rem !important;\n }\n\n .ps-sm-4 {\n padding-right: 1.5rem !important;\n }\n\n .ps-sm-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n\n .d-md-inline-block {\n display: inline-block !important;\n }\n\n .d-md-block {\n display: block !important;\n }\n\n .d-md-grid {\n display: grid !important;\n }\n\n .d-md-table {\n display: table !important;\n }\n\n .d-md-table-row {\n display: table-row !important;\n }\n\n .d-md-table-cell {\n display: table-cell !important;\n }\n\n .d-md-flex {\n display: flex !important;\n }\n\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n\n .d-md-none {\n display: none !important;\n }\n\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-md-row {\n flex-direction: row !important;\n }\n\n .flex-md-column {\n flex-direction: column !important;\n }\n\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-md-center {\n justify-content: center !important;\n }\n\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-md-start {\n align-items: flex-start !important;\n }\n\n .align-items-md-end {\n align-items: flex-end !important;\n }\n\n .align-items-md-center {\n align-items: center !important;\n }\n\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n\n .align-content-md-start {\n align-content: flex-start !important;\n }\n\n .align-content-md-end {\n align-content: flex-end !important;\n }\n\n .align-content-md-center {\n align-content: center !important;\n }\n\n .align-content-md-between {\n align-content: space-between !important;\n }\n\n .align-content-md-around {\n align-content: space-around !important;\n }\n\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n\n .align-self-md-auto {\n align-self: auto !important;\n }\n\n .align-self-md-start {\n align-self: flex-start !important;\n }\n\n .align-self-md-end {\n align-self: flex-end !important;\n }\n\n .align-self-md-center {\n align-self: center !important;\n }\n\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n\n .order-md-first {\n order: -1 !important;\n }\n\n .order-md-0 {\n order: 0 !important;\n }\n\n .order-md-1 {\n order: 1 !important;\n }\n\n .order-md-2 {\n order: 2 !important;\n }\n\n .order-md-3 {\n order: 3 !important;\n }\n\n .order-md-4 {\n order: 4 !important;\n }\n\n .order-md-5 {\n order: 5 !important;\n }\n\n .order-md-last {\n order: 6 !important;\n }\n\n .m-md-0 {\n margin: 0 !important;\n }\n\n .m-md-1 {\n margin: 0.25rem !important;\n }\n\n .m-md-2 {\n margin: 0.5rem !important;\n }\n\n .m-md-3 {\n margin: 1rem !important;\n }\n\n .m-md-4 {\n margin: 1.5rem !important;\n }\n\n .m-md-5 {\n margin: 3rem !important;\n }\n\n .m-md-auto {\n margin: auto !important;\n }\n\n .mx-md-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n\n .mx-md-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n\n .mx-md-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n\n .mx-md-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n\n .mx-md-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n\n .mx-md-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n\n .mx-md-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-md-0 {\n margin-top: 0 !important;\n }\n\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n\n .mt-md-auto {\n margin-top: auto !important;\n }\n\n .me-md-0 {\n margin-left: 0 !important;\n }\n\n .me-md-1 {\n margin-left: 0.25rem !important;\n }\n\n .me-md-2 {\n margin-left: 0.5rem !important;\n }\n\n .me-md-3 {\n margin-left: 1rem !important;\n }\n\n .me-md-4 {\n margin-left: 1.5rem !important;\n }\n\n .me-md-5 {\n margin-left: 3rem !important;\n }\n\n .me-md-auto {\n margin-left: auto !important;\n }\n\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n\n .ms-md-0 {\n margin-right: 0 !important;\n }\n\n .ms-md-1 {\n margin-right: 0.25rem !important;\n }\n\n .ms-md-2 {\n margin-right: 0.5rem !important;\n }\n\n .ms-md-3 {\n margin-right: 1rem !important;\n }\n\n .ms-md-4 {\n margin-right: 1.5rem !important;\n }\n\n .ms-md-5 {\n margin-right: 3rem !important;\n }\n\n .ms-md-auto {\n margin-right: auto !important;\n }\n\n .p-md-0 {\n padding: 0 !important;\n }\n\n .p-md-1 {\n padding: 0.25rem !important;\n }\n\n .p-md-2 {\n padding: 0.5rem !important;\n }\n\n .p-md-3 {\n padding: 1rem !important;\n }\n\n .p-md-4 {\n padding: 1.5rem !important;\n }\n\n .p-md-5 {\n padding: 3rem !important;\n }\n\n .px-md-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n\n .px-md-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n\n .px-md-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n\n .px-md-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n\n .px-md-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n\n .px-md-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-md-0 {\n padding-top: 0 !important;\n }\n\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n\n .pe-md-0 {\n padding-left: 0 !important;\n }\n\n .pe-md-1 {\n padding-left: 0.25rem !important;\n }\n\n .pe-md-2 {\n padding-left: 0.5rem !important;\n }\n\n .pe-md-3 {\n padding-left: 1rem !important;\n }\n\n .pe-md-4 {\n padding-left: 1.5rem !important;\n }\n\n .pe-md-5 {\n padding-left: 3rem !important;\n }\n\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-md-0 {\n padding-right: 0 !important;\n }\n\n .ps-md-1 {\n padding-right: 0.25rem !important;\n }\n\n .ps-md-2 {\n padding-right: 0.5rem !important;\n }\n\n .ps-md-3 {\n padding-right: 1rem !important;\n }\n\n .ps-md-4 {\n padding-right: 1.5rem !important;\n }\n\n .ps-md-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n\n .d-lg-inline-block {\n display: inline-block !important;\n }\n\n .d-lg-block {\n display: block !important;\n }\n\n .d-lg-grid {\n display: grid !important;\n }\n\n .d-lg-table {\n display: table !important;\n }\n\n .d-lg-table-row {\n display: table-row !important;\n }\n\n .d-lg-table-cell {\n display: table-cell !important;\n }\n\n .d-lg-flex {\n display: flex !important;\n }\n\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n\n .d-lg-none {\n display: none !important;\n }\n\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-lg-row {\n flex-direction: row !important;\n }\n\n .flex-lg-column {\n flex-direction: column !important;\n }\n\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-lg-center {\n justify-content: center !important;\n }\n\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n\n .align-items-lg-center {\n align-items: center !important;\n }\n\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n\n .align-content-lg-center {\n align-content: center !important;\n }\n\n .align-content-lg-between {\n align-content: space-between !important;\n }\n\n .align-content-lg-around {\n align-content: space-around !important;\n }\n\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n\n .align-self-lg-auto {\n align-self: auto !important;\n }\n\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n\n .align-self-lg-center {\n align-self: center !important;\n }\n\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n\n .order-lg-first {\n order: -1 !important;\n }\n\n .order-lg-0 {\n order: 0 !important;\n }\n\n .order-lg-1 {\n order: 1 !important;\n }\n\n .order-lg-2 {\n order: 2 !important;\n }\n\n .order-lg-3 {\n order: 3 !important;\n }\n\n .order-lg-4 {\n order: 4 !important;\n }\n\n .order-lg-5 {\n order: 5 !important;\n }\n\n .order-lg-last {\n order: 6 !important;\n }\n\n .m-lg-0 {\n margin: 0 !important;\n }\n\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n\n .m-lg-3 {\n margin: 1rem !important;\n }\n\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n\n .m-lg-5 {\n margin: 3rem !important;\n }\n\n .m-lg-auto {\n margin: auto !important;\n }\n\n .mx-lg-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n\n .mx-lg-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n\n .mx-lg-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n\n .mx-lg-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n\n .mt-lg-auto {\n margin-top: auto !important;\n }\n\n .me-lg-0 {\n margin-left: 0 !important;\n }\n\n .me-lg-1 {\n margin-left: 0.25rem !important;\n }\n\n .me-lg-2 {\n margin-left: 0.5rem !important;\n }\n\n .me-lg-3 {\n margin-left: 1rem !important;\n }\n\n .me-lg-4 {\n margin-left: 1.5rem !important;\n }\n\n .me-lg-5 {\n margin-left: 3rem !important;\n }\n\n .me-lg-auto {\n margin-left: auto !important;\n }\n\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n\n .ms-lg-0 {\n margin-right: 0 !important;\n }\n\n .ms-lg-1 {\n margin-right: 0.25rem !important;\n }\n\n .ms-lg-2 {\n margin-right: 0.5rem !important;\n }\n\n .ms-lg-3 {\n margin-right: 1rem !important;\n }\n\n .ms-lg-4 {\n margin-right: 1.5rem !important;\n }\n\n .ms-lg-5 {\n margin-right: 3rem !important;\n }\n\n .ms-lg-auto {\n margin-right: auto !important;\n }\n\n .p-lg-0 {\n padding: 0 !important;\n }\n\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n\n .p-lg-3 {\n padding: 1rem !important;\n }\n\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n\n .p-lg-5 {\n padding: 3rem !important;\n }\n\n .px-lg-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n\n .px-lg-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n\n .px-lg-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n\n .px-lg-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n\n .px-lg-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n\n .px-lg-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n\n .pe-lg-0 {\n padding-left: 0 !important;\n }\n\n .pe-lg-1 {\n padding-left: 0.25rem !important;\n }\n\n .pe-lg-2 {\n padding-left: 0.5rem !important;\n }\n\n .pe-lg-3 {\n padding-left: 1rem !important;\n }\n\n .pe-lg-4 {\n padding-left: 1.5rem !important;\n }\n\n .pe-lg-5 {\n padding-left: 3rem !important;\n }\n\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-lg-0 {\n padding-right: 0 !important;\n }\n\n .ps-lg-1 {\n padding-right: 0.25rem !important;\n }\n\n .ps-lg-2 {\n padding-right: 0.5rem !important;\n }\n\n .ps-lg-3 {\n padding-right: 1rem !important;\n }\n\n .ps-lg-4 {\n padding-right: 1.5rem !important;\n }\n\n .ps-lg-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n\n .d-xl-inline-block {\n display: inline-block !important;\n }\n\n .d-xl-block {\n display: block !important;\n }\n\n .d-xl-grid {\n display: grid !important;\n }\n\n .d-xl-table {\n display: table !important;\n }\n\n .d-xl-table-row {\n display: table-row !important;\n }\n\n .d-xl-table-cell {\n display: table-cell !important;\n }\n\n .d-xl-flex {\n display: flex !important;\n }\n\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xl-none {\n display: none !important;\n }\n\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xl-row {\n flex-direction: row !important;\n }\n\n .flex-xl-column {\n flex-direction: column !important;\n }\n\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xl-center {\n justify-content: center !important;\n }\n\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xl-center {\n align-items: center !important;\n }\n\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xl-center {\n align-content: center !important;\n }\n\n .align-content-xl-between {\n align-content: space-between !important;\n }\n\n .align-content-xl-around {\n align-content: space-around !important;\n }\n\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xl-auto {\n align-self: auto !important;\n }\n\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xl-center {\n align-self: center !important;\n }\n\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n\n .order-xl-first {\n order: -1 !important;\n }\n\n .order-xl-0 {\n order: 0 !important;\n }\n\n .order-xl-1 {\n order: 1 !important;\n }\n\n .order-xl-2 {\n order: 2 !important;\n }\n\n .order-xl-3 {\n order: 3 !important;\n }\n\n .order-xl-4 {\n order: 4 !important;\n }\n\n .order-xl-5 {\n order: 5 !important;\n }\n\n .order-xl-last {\n order: 6 !important;\n }\n\n .m-xl-0 {\n margin: 0 !important;\n }\n\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xl-3 {\n margin: 1rem !important;\n }\n\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xl-5 {\n margin: 3rem !important;\n }\n\n .m-xl-auto {\n margin: auto !important;\n }\n\n .mx-xl-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n\n .mx-xl-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n\n .mx-xl-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n\n .mx-xl-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xl-auto {\n margin-top: auto !important;\n }\n\n .me-xl-0 {\n margin-left: 0 !important;\n }\n\n .me-xl-1 {\n margin-left: 0.25rem !important;\n }\n\n .me-xl-2 {\n margin-left: 0.5rem !important;\n }\n\n .me-xl-3 {\n margin-left: 1rem !important;\n }\n\n .me-xl-4 {\n margin-left: 1.5rem !important;\n }\n\n .me-xl-5 {\n margin-left: 3rem !important;\n }\n\n .me-xl-auto {\n margin-left: auto !important;\n }\n\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xl-0 {\n margin-right: 0 !important;\n }\n\n .ms-xl-1 {\n margin-right: 0.25rem !important;\n }\n\n .ms-xl-2 {\n margin-right: 0.5rem !important;\n }\n\n .ms-xl-3 {\n margin-right: 1rem !important;\n }\n\n .ms-xl-4 {\n margin-right: 1.5rem !important;\n }\n\n .ms-xl-5 {\n margin-right: 3rem !important;\n }\n\n .ms-xl-auto {\n margin-right: auto !important;\n }\n\n .p-xl-0 {\n padding: 0 !important;\n }\n\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xl-3 {\n padding: 1rem !important;\n }\n\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xl-5 {\n padding: 3rem !important;\n }\n\n .px-xl-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n\n .px-xl-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n\n .px-xl-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n\n .px-xl-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n\n .px-xl-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n\n .px-xl-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xl-0 {\n padding-left: 0 !important;\n }\n\n .pe-xl-1 {\n padding-left: 0.25rem !important;\n }\n\n .pe-xl-2 {\n padding-left: 0.5rem !important;\n }\n\n .pe-xl-3 {\n padding-left: 1rem !important;\n }\n\n .pe-xl-4 {\n padding-left: 1.5rem !important;\n }\n\n .pe-xl-5 {\n padding-left: 3rem !important;\n }\n\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xl-0 {\n padding-right: 0 !important;\n }\n\n .ps-xl-1 {\n padding-right: 0.25rem !important;\n }\n\n .ps-xl-2 {\n padding-right: 0.5rem !important;\n }\n\n .ps-xl-3 {\n padding-right: 1rem !important;\n }\n\n .ps-xl-4 {\n padding-right: 1.5rem !important;\n }\n\n .ps-xl-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n\n .d-xxl-block {\n display: block !important;\n }\n\n .d-xxl-grid {\n display: grid !important;\n }\n\n .d-xxl-table {\n display: table !important;\n }\n\n .d-xxl-table-row {\n display: table-row !important;\n }\n\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n\n .d-xxl-flex {\n display: flex !important;\n }\n\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xxl-none {\n display: none !important;\n }\n\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xxl-row {\n flex-direction: row !important;\n }\n\n .flex-xxl-column {\n flex-direction: column !important;\n }\n\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xxl-center {\n align-items: center !important;\n }\n\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xxl-center {\n align-content: center !important;\n }\n\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xxl-center {\n align-self: center !important;\n }\n\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n\n .order-xxl-first {\n order: -1 !important;\n }\n\n .order-xxl-0 {\n order: 0 !important;\n }\n\n .order-xxl-1 {\n order: 1 !important;\n }\n\n .order-xxl-2 {\n order: 2 !important;\n }\n\n .order-xxl-3 {\n order: 3 !important;\n }\n\n .order-xxl-4 {\n order: 4 !important;\n }\n\n .order-xxl-5 {\n order: 5 !important;\n }\n\n .order-xxl-last {\n order: 6 !important;\n }\n\n .m-xxl-0 {\n margin: 0 !important;\n }\n\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xxl-3 {\n margin: 1rem !important;\n }\n\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xxl-5 {\n margin: 3rem !important;\n }\n\n .m-xxl-auto {\n margin: auto !important;\n }\n\n .mx-xxl-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n\n .mx-xxl-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n\n .mx-xxl-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n\n .mx-xxl-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n\n .mx-xxl-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n\n .mx-xxl-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n\n .mx-xxl-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n\n .me-xxl-0 {\n margin-left: 0 !important;\n }\n\n .me-xxl-1 {\n margin-left: 0.25rem !important;\n }\n\n .me-xxl-2 {\n margin-left: 0.5rem !important;\n }\n\n .me-xxl-3 {\n margin-left: 1rem !important;\n }\n\n .me-xxl-4 {\n margin-left: 1.5rem !important;\n }\n\n .me-xxl-5 {\n margin-left: 3rem !important;\n }\n\n .me-xxl-auto {\n margin-left: auto !important;\n }\n\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xxl-0 {\n margin-right: 0 !important;\n }\n\n .ms-xxl-1 {\n margin-right: 0.25rem !important;\n }\n\n .ms-xxl-2 {\n margin-right: 0.5rem !important;\n }\n\n .ms-xxl-3 {\n margin-right: 1rem !important;\n }\n\n .ms-xxl-4 {\n margin-right: 1.5rem !important;\n }\n\n .ms-xxl-5 {\n margin-right: 3rem !important;\n }\n\n .ms-xxl-auto {\n margin-right: auto !important;\n }\n\n .p-xxl-0 {\n padding: 0 !important;\n }\n\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xxl-3 {\n padding: 1rem !important;\n }\n\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xxl-5 {\n padding: 3rem !important;\n }\n\n .px-xxl-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n\n .px-xxl-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n\n .px-xxl-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n\n .px-xxl-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n\n .px-xxl-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n\n .px-xxl-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xxl-0 {\n padding-left: 0 !important;\n }\n\n .pe-xxl-1 {\n padding-left: 0.25rem !important;\n }\n\n .pe-xxl-2 {\n padding-left: 0.5rem !important;\n }\n\n .pe-xxl-3 {\n padding-left: 1rem !important;\n }\n\n .pe-xxl-4 {\n padding-left: 1.5rem !important;\n }\n\n .pe-xxl-5 {\n padding-left: 3rem !important;\n }\n\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xxl-0 {\n padding-right: 0 !important;\n }\n\n .ps-xxl-1 {\n padding-right: 0.25rem !important;\n }\n\n .ps-xxl-2 {\n padding-right: 0.5rem !important;\n }\n\n .ps-xxl-3 {\n padding-right: 1rem !important;\n }\n\n .ps-xxl-4 {\n padding-right: 1.5rem !important;\n }\n\n .ps-xxl-5 {\n padding-right: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n\n .d-print-inline-block {\n display: inline-block !important;\n }\n\n .d-print-block {\n display: block !important;\n }\n\n .d-print-grid {\n display: grid !important;\n }\n\n .d-print-table {\n display: table !important;\n }\n\n .d-print-table-row {\n display: table-row !important;\n }\n\n .d-print-table-cell {\n display: table-cell !important;\n }\n\n .d-print-flex {\n display: flex !important;\n }\n\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n\n .d-print-none {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap-grid.rtl.css.map */","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n width: 100%;\n padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter});\n padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter});\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$variable-prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$variable-prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$variable-prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$variable-prefix}gutter-x: #{$gutter};\n --#{$variable-prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--#{$variable-prefix}gutter-y) * -1); // stylelint-disable-line function-disallowed-list\n margin-right: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n margin-left: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready($gutter: $grid-gutter-width) {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$variable-prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// numberof columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (eg. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $value in $is-local-vars {\n --#{$variable-prefix}#{$local-var}: #{$value};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]}
\ No newline at end of file
diff --git a/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map b/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map
deleted file mode 100644
index c06c13a..0000000
--- a/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../scss/bootstrap-reboot.scss","../../scss/_reboot.scss","bootstrap-reboot.css","../../scss/vendor/_rfs.scss","../../scss/_variables.scss","../../scss/mixins/_border-radius.scss"],"names":[],"mappings":"AAAA;;;;;;EAAA;ACeA;;;EAGE,sBAAA;ACPF;;ADsBI;EANJ;IAOM,uBAAA;EClBJ;AACF;;AD+BA;EACE,SAAA;EACA,uCAAA;EEmPI,mCALI;EF5OR,uCAAA;EACA,uCAAA;EACA,2BAAA;EACA,qCAAA;EACA,mCAAA;EACA,8BAAA;EACA,6CAAA;AC5BF;;ADsCA;EACE,cAAA;EACA,cGqkB4B;EHpkB5B,8BAAA;EACA,SAAA;EACA,aGokB4B;AFvmB9B;;ADsCA;EACE,WG8a4B;AFjd9B;;AD6CA;EACE,aAAA;EACA,qBG0gB4B;EHvgB5B,gBG0gB4B;EHzgB5B,gBG0gB4B;AFtjB9B;;ADgDA;EEwMQ,iCAAA;ADpPR;ACkFI;EFtCJ;IE+MQ,iBAAA;EDvPN;AACF;;AD4CA;EEmMQ,iCAAA;AD3OR;ACyEI;EFjCJ;IE0MQ,eAAA;ED9ON;AACF;;ADwCA;EE8LQ,+BAAA;ADlOR;ACgEI;EF5BJ;IEqMQ,kBAAA;EDrON;AACF;;ADoCA;EEyLQ,iCAAA;ADzNR;ACuDI;EFvBJ;IEgMQ,iBAAA;ED5NN;AACF;;ADgCA;EEgLM,kBALI;ADvMV;;ADiCA;EE2KM,eALI;ADnMV;;ADwCA;EACE,aAAA;EACA,mBGwT0B;AF7V5B;;ADgDA;;EAEE,yCAAA;EAAA,iCAAA;EACA,YAAA;EACA,sCAAA;EAAA,8BAAA;AC7CF;;ADmDA;EACE,mBAAA;EACA,kBAAA;EACA,oBAAA;AChDF;;ADsDA;;EAEE,kBAAA;ACnDF;;ADsDA;;;EAGE,aAAA;EACA,mBAAA;ACnDF;;ADsDA;;;;EAIE,gBAAA;ACnDF;;ADsDA;EACE,gBG6Y4B;AFhc9B;;ADwDA;EACE,qBAAA;EACA,cAAA;ACrDF;;AD2DA;EACE,gBAAA;ACxDF;;ADgEA;;EAEE,mBGsX4B;AFnb9B;;ADqEA;EE4EM,kBALI;ADxIV;;ADwEA;EACE,cGkb4B;EHjb5B,yBGyb4B;AF9f9B;;AD8EA;;EAEE,kBAAA;EEwDI,iBALI;EFjDR,cAAA;EACA,wBAAA;AC3EF;;AD8EA;EAAM,eAAA;AC1EN;;AD2EA;EAAM,WAAA;ACvEN;;AD4EA;EACE,cGpNQ;EHqNR,0BGwLwC;AFjQ1C;AD2EE;EACE,cGuLsC;AFhQ1C;;ADoFE;EAEE,cAAA;EACA,qBAAA;AClFJ;;ADyFA;;;;EAIE,iGGgS4B;EDlRxB,cALI;EFPR,+BAAA;EACA,2BAAA;ACtFF;;AD6FA;EACE,cAAA;EACA,aAAA;EACA,mBAAA;EACA,cAAA;EEAI,kBALI;ADpFV;AD8FE;EELI,kBALI;EFYN,cAAA;EACA,kBAAA;AC5FJ;;ADgGA;EEZM,kBALI;EFmBR,cG1QQ;EH2QR,qBAAA;AC7FF;ADgGE;EACE,cAAA;AC9FJ;;ADkGA;EACE,sBAAA;EExBI,kBALI;EF+BR,WGvTS;EHwTT,yBG/SS;ECEP,qBAAA;AH+MJ;ADiGE;EACE,UAAA;EE/BE,cALI;EFsCN,gBGgQ0B;AF/V9B;;ADwGA;EACE,gBAAA;ACrGF;;AD2GA;;EAEE,sBAAA;ACxGF;;ADgHA;EACE,oBAAA;EACA,yBAAA;AC7GF;;ADgHA;EACE,mBG8T4B;EH7T5B,sBG6T4B;EH5T5B,cG1VS;EH2VT,gBAAA;AC7GF;;ADoHA;EAEE,mBAAA;EACA,gCAAA;AClHF;;ADqHA;;;;;;EAME,qBAAA;EACA,mBAAA;EACA,eAAA;AClHF;;AD0HA;EACE,qBAAA;ACvHF;;AD6HA;EAEE,gBAAA;AC3HF;;ADmIA;EACE,UAAA;AChIF;;ADqIA;;;;;EAKE,SAAA;EACA,oBAAA;EE9HI,kBALI;EFqIR,oBAAA;AClIF;;ADsIA;;EAEE,oBAAA;ACnIF;;ADwIA;EACE,eAAA;ACrIF;;ADwIA;EAGE,iBAAA;ACvIF;AD0IE;EACE,UAAA;ACxIJ;;AD+IA;EACE,aAAA;AC5IF;;ADoJA;;;;EAIE,0BAAA;ACjJF;ADoJI;;;;EACE,eAAA;AC/IN;;ADsJA;EACE,UAAA;EACA,kBAAA;ACnJF;;ADwJA;EACE,gBAAA;ACrJF;;AD+JA;EACE,YAAA;EACA,UAAA;EACA,SAAA;EACA,SAAA;AC5JF;;ADoKA;EACE,WAAA;EACA,WAAA;EACA,UAAA;EACA,qBGmJ4B;EDtWtB,iCAAA;EFsNN,oBAAA;AClKF;ACtNI;EFiXJ;IExMQ,iBAAA;EDiDN;AACF;AD+JE;EACE,WAAA;AC7JJ;;ADoKA;;;;;;;EAOE,UAAA;ACjKF;;ADoKA;EACE,YAAA;ACjKF;;AD0KA;EACE,oBAAA;EACA,6BAAA;ACvKF;;AD+KA;;;;;;;CAAA;AAWA;EACE,wBAAA;AC/KF;;ADoLA;EACE,UAAA;ACjLF;;ADuLA;EACE,aAAA;ACpLF;;AD0LA;EACE,aAAA;EACA,0BAAA;ACvLF;;AD4LA;EACE,qBAAA;ACzLF;;AD8LA;EACE,SAAA;AC3LF;;ADkMA;EACE,kBAAA;EACA,eAAA;AC/LF;;ADuMA;EACE,wBAAA;ACpMF;;AD4MA;EACE,wBAAA;ACzMF","file":"bootstrap-reboot.css","sourcesContent":["/*!\n * Bootstrap Reboot v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n\n@import \"functions\";\n@import \"variables\";\n// Prevent the usage of custom properties since we don't add them to `:root` in reboot\n$font-family-base: $font-family-sans-serif; // stylelint-disable-line scss/dollar-variable-default\n$font-family-code: $font-family-monospace; // stylelint-disable-line scss/dollar-variable-default\n@import \"mixins\";\n@import \"reboot\";\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n font-size: var(--#{$variable-prefix}-root-font-size);\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$variable-prefix}body-font-family);\n @include font-size(var(--#{$variable-prefix}body-font-size));\n font-weight: var(--#{$variable-prefix}body-font-weight);\n line-height: var(--#{$variable-prefix}body-line-height);\n color: var(--#{$variable-prefix}body-color);\n text-align: var(--#{$variable-prefix}body-text-align);\n background-color: var(--#{$variable-prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, ``-`` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on ` `s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `
` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`` buttons\n//\n// Details at https://github.com/twbs/bootstrap/pull/30562\n[role=\"button\"] {\n cursor: pointer;\n}\n\nselect {\n // Remove the inheritance of word-wrap in Safari.\n // See https://github.com/twbs/bootstrap/issues/24990\n word-wrap: normal;\n\n // Undo the opacity change from Chrome\n &:disabled {\n opacity: 1;\n }\n}\n\n// Remove the dropdown arrow in Chrome from inputs built with datalists.\n// See https://stackoverflow.com/a/54997118\n\n[list]::-webkit-calendar-picker-indicator {\n display: none;\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\n// 3. Opinionated: add \"hand\" cursor to non-disabled button elements.\n\nbutton,\n[type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n\n @if $enable-button-pointers {\n &:not(:disabled) {\n cursor: pointer; // 3\n }\n }\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\n// 1. Textareas should really only resize vertically so they don't break their (horizontal) containers.\n\ntextarea {\n resize: vertical; // 1\n}\n\n// 1. Browsers set a default `min-width: min-content;` on fieldsets,\n// unlike e.g. `